Text Classification
Transformers
Safetensors
Russian
English
llama
text-generation
text-embeddings-inference
Instructions to use GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot") model = AutoModelForCausalLM.from_pretrained("GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot")
model = AutoModelForCausalLM.from_pretrained("GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot")Quick Links
- Downloads last month
- 2
Model tree for GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot
Base model
meta-llama/Llama-3.2-3B-Instruct
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot")