Text Generation
Transformers
PyTorch
Safetensors
llama
Generated from Trainer
facebook
meta
llama-3
text-generation-inference
Instructions to use artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond") model = AutoModelForCausalLM.from_pretrained("artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond
- SGLang
How to use artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond with Docker Model Runner:
docker model run hf.co/artificialguybr/LLAMA3.2-1B-Synthia-II-Redmond
docs: add Prompt Hub link to findgoodprompt.com
Browse files
README.md
CHANGED
|
@@ -31,6 +31,9 @@ model-index:
|
|
| 31 |
You can find more of my models, projects, and information on my official website:
|
| 32 |
- **[artificialguy.com](https://artificialguy.com/)**
|
| 33 |
|
|
|
|
|
|
|
|
|
|
| 34 |
### 💖 Support My Work
|
| 35 |
If you find this model useful, please consider supporting my work. It helps me cover server costs and dedicate more time to new open-source projects.
|
| 36 |
- **Patreon:** [Support on Patreon](https://www.patreon.com/user?u=81570187)
|
|
|
|
| 31 |
You can find more of my models, projects, and information on my official website:
|
| 32 |
- **[artificialguy.com](https://artificialguy.com/)**
|
| 33 |
|
| 34 |
+
|
| 35 |
+
### 🚀 Prompt Hub
|
| 36 |
+
Need high-quality prompts for image models and LLMs? Explore **[findgoodprompt.com](https://findgoodprompt.com)**.
|
| 37 |
### 💖 Support My Work
|
| 38 |
If you find this model useful, please consider supporting my work. It helps me cover server costs and dedicate more time to new open-source projects.
|
| 39 |
- **Patreon:** [Support on Patreon](https://www.patreon.com/user?u=81570187)
|