title | emoji | colorFrom | colorTo | sdk | sdk_version | app_file | pinned | license | short_description |
---|---|---|---|---|---|---|---|---|---|
Llama 3.2 1B GGUF |
🦙 |
pink |
indigo |
gradio |
4.44.1 |
app.py |
true |
creativeml-openrail-m |
Llama-3.2-1B-GGUF |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
- Developed by: prithivMLmods
- License: apache-2.0
- Finetuned from model : unsloth/llama-3.2-1b-instruct-bnb-4bit
To get started, download Ollama from https://ollama.com/download and install it on your Windows or Mac system.
- Name your model file appropriately, for example,
metallama
.
-
Include a
FROM
line with the base model file. For instance:FROM Llama-3.2-1B.F16.gguf
-
Make sure the model file is in the same directory as your script.
-
Use the following command in your terminal to create and patch your model:
ollama create metallama -f ./metallama
-
Upon success, a confirmation message will appear.
-
To verify that the model was created successfully, run:
ollama list
Ensure that
metallama
appears in the list of models.
To run the model, use:
ollama run metallama
In the command prompt, run:
D:\>ollama run metallama
Example interaction:
>>> write a mini passage about space x
Space X, the private aerospace company founded by Elon Musk, is revolutionizing the field of space exploration.
With its ambitious goals to make humanity a multi-planetary species and establish a sustainable human presence in
the cosmos, Space X has become a leading player in the industry. The company's spacecraft, like the Falcon 9, have
demonstrated remarkable capabilities, allowing for the transport of crews and cargo into space with unprecedented
efficiency. As technology continues to advance, the possibility of establishing permanent colonies on Mars becomes
increasingly feasible, thanks in part to the success of reusable rockets that can launch multiple times without
sustaining significant damage. The journey towards becoming a multi-planetary species is underway, and Space X
plays a pivotal role in pushing the boundaries of human exploration and settlement.
Demo : https://huggingface.co/prithivMLmods/Llama-3.2-1B-GGUF/resolve/main/Demo/gguf.gif
You’re now ready to run your own model with Ollama!