CoolFace
Modelpublic

prithivMLmods/Acrux-500M-o1-Journey

sourceHugging Facecreativeml-openrail-mupdated 2y agoView on Hugging Face
2likes27downloads
Model Card

Acrux-500M-o1-Journey Model Files

The Acrux-500M-o1-Journey is a lightweight, instruction-tuned language model fine-tuned from the Qwen2.5-0.5B-Instruct base model. With a size of 500 million parameters, it is designed for cost-effective deployment and fast text generation while maintaining quality performance for instruction-following tasks.

**File Name****Size****Description****Upload Status**
.gitattributes1.57 kBGit attributes for managing LFS files.Uploaded
README.md195 BytesModel overview or documentation.Updated
added_tokens.json657 BytesCustom tokens for the tokenizer.Uploaded
config.json859 BytesModel configuration file.Uploaded
generation_config.json280 BytesConfiguration for text generation.Uploaded
merges.txt1.82 MBMerge rules for byte-pair encoding (BPE).Uploaded
pytorch_model.bin988 MBModel weights (PyTorch format).Uploaded (LFS)
special_tokens_map.json644 BytesMapping for special tokens.Uploaded
tokenizer.json11.4 MBFull tokenizer configuration.Uploaded (LFS)
tokenizer_config.json7.73 kBAdditional tokenizer settings.Uploaded
vocab.json2.78 MBVocabulary for the tokenizer.Uploaded

Key Features:

  1. 1.Compact Size with Efficient Performance: The smaller parameter count (500M) ensures faster inference and reduced hardware requirements.
  1. 1.Instruction Optimization: Fine-tuned to follow prompts effectively, making it suitable for interactive applications and prompt-based tasks.
  1. 1.Domain-Specific Training: Trained on the GAIR/o1-journey dataset, providing tailored capabilities for specific use cases.

Training Details:


Capabilities:

  1. 1.Instruction Following:
  2. 2.Generates accurate and coherent responses to user instructions.
  3. 3.Handles summarization, question-answering, and conversational tasks.
  1. 1.Fast Inference:
  2. 2.Ideal for real-time applications due to reduced latency from its smaller size.
  1. 1.Interactive AI Development:
  2. 2.Suitable for chatbots, virtual assistants, and instructional interfaces.

Usage Instructions:

  1. 1.Setup: Download all model files, ensuring compatibility with the Hugging Face Transformers library.
  1. 1.Loading the Model:
python
   from transformers import AutoModelForCausalLM, AutoTokenizer
   
   model_name = "prithivMLmods/Acrux-500M-o1-Journey"
   tokenizer = AutoTokenizer.from_pretrained(model_name)
   model = AutoModelForCausalLM.from_pretrained(model_name)
  1. 1.Sample Generate Text:
python
   input_text = "Explain the concept of machine learning in simple terms."
   inputs = tokenizer(input_text, return_tensors="pt")
   outputs = model.generate(**inputs, max_length=100, temperature=0.7)
   print(tokenizer.decode(outputs[0], skip_special_tokens=True))
  1. 1.Optimize Generation: Adjust parameters in generation_config.json for better control of output, such as:
  2. 2.temperature for randomness.
  3. 3.top_p for sampling diversity.
  4. 4.max_length for output size. ---