Views
No views yet
| File Name | Size | Description | Upload Status |
|---|---|---|---|
.gitattributes | 2.42 kB | Specifies file tracking rules (e.g., LFS). | Uploaded |
Modelfile | 1.69 kB | Metadata or additional information file. | Uploaded |
README.md | 158 Bytes | Basic project description or instructions. | Updated |
acrux-500m-o1-journey-f16.gguf | 994 MB | Base FP16 model file in GGUF format. | Uploaded (LFS) |
acrux-500m-o1-journey-q2_k.gguf | 339 MB | Quantized model (Q2_K) for efficient usage. | Uploaded (LFS) |
acrux-500m-o1-journey-q3_k_l.gguf | 369 MB | Quantized model (Q3_K_L). | Uploaded (LFS) |
acrux-500m-o1-journey-q3_k_m.gguf | 355 MB | Quantized model (Q3_K_M). | Uploaded (LFS) |
acrux-500m-o1-journey-q3_k_s.gguf | 338 MB | Quantized model (Q3_K_S). | Uploaded (LFS) |
acrux-500m-o1-journey-q4_0.gguf | 352 MB | Quantized model (Q4_0). | Uploaded (LFS) |
acrux-500m-o1-journey-q4_k_m.gguf | 398 MB | Quantized model (Q4_K_M). | Uploaded (LFS) |
acrux-500m-o1-journey-q4_k_s.gguf | 385 MB | Quantized model (Q4_K_S). | Uploaded (LFS) |
acrux-500m-o1-journey-q5_0.gguf | 397 MB | Quantized model (Q5_0). | Uploaded (LFS) |
acrux-500m-o1-journey-q5_k_m.gguf | 420 MB | Quantized model (Q5_K_M). | Uploaded (LFS) |
acrux-500m-o1-journey-q5_k_s.gguf | 413 MB | Quantized model (Q5_K_S). | Uploaded (LFS) |
acrux-500m-o1-journey-q6_k.gguf | 506 MB | Quantized model (Q6_K). | Uploaded (LFS) |
acrux-500m-o1-journey-q8_0.gguf | 531 MB | Quantized model (Q8_0). | Uploaded (LFS) |
config.json | 29 Bytes | Basic configuration file for the model. | Uploaded |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "prithivMLmods/Acrux-500M-o1-Journey"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name)1input_text = "Explain the concept of machine learning in simple terms."
2inputs = tokenizer(input_text, return_tensors="pt")
3outputs = model.generate(**inputs, max_length=100, temperature=0.7)
4print(tokenizer.decode(outputs[0], skip_special_tokens=True))generation_config.json for better control of output, such as:temperature for randomness.top_p for sampling diversity.max_length for output size.metallama.FROM line that specifies the base model file you want to use. For instance:FROM Llama-3.2-1B.F16.ggufollama create metallama -f ./metallamaollama listmetallama appears in the list of models.ollama run metallamaD:\>ollama run metallama1>>> write a mini passage about space x
2Space X, the private aerospace company founded by Elon Musk, is revolutionizing the field of space exploration.
3With its ambitious goals to make humanity a multi-planetary species and establish a sustainable human presence in
4the cosmos, Space X has become a leading player in the industry. The company's spacecraft, like the Falcon 9, have
5demonstrated remarkable capabilities, allowing for the transport of crews and cargo into space with unprecedented
6efficiency. As technology continues to advance, the possibility of establishing permanent colonies on Mars becomes
7increasingly feasible, thanks in part to the success of reusable rockets that can launch multiple times without
8sustaining significant damage. The journey towards becoming a multi-planetary species is underway, and Space X
9plays a pivotal role in pushing the boundaries of human exploration and settlement.