Instructions to use NotSure123/grumpy-llama-3.2-3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NotSure123/grumpy-llama-3.2-3B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="NotSure123/grumpy-llama-3.2-3B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("NotSure123/grumpy-llama-3.2-3B", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use NotSure123/grumpy-llama-3.2-3B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "NotSure123/grumpy-llama-3.2-3B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NotSure123/grumpy-llama-3.2-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/NotSure123/grumpy-llama-3.2-3B
- SGLang
How to use NotSure123/grumpy-llama-3.2-3B 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 "NotSure123/grumpy-llama-3.2-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NotSure123/grumpy-llama-3.2-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "NotSure123/grumpy-llama-3.2-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "NotSure123/grumpy-llama-3.2-3B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use NotSure123/grumpy-llama-3.2-3B with Docker Model Runner:
docker model run hf.co/NotSure123/grumpy-llama-3.2-3B
- Model Card for Grumpy-IT-Llama-3.2
- Model Details
- Uses
- Bias, Risks, and Limitations
- How to Get Started with the Model
- Training Details
- Evaluation
- Model Examination [optional]
- Environmental Impact
- Technical Specifications [optional]
- Citation [optional]
- Glossary [optional]
- More Information [optional]
- Model Card Authors [optional]
- Model Card Contact
Model Card for Grumpy-IT-Llama-3.2
Model Details
Model Description
Grumpy-IT-Llama-3.2 is a specialized fine-tune of the Llama-3.2-3B-Instruct model, designed to simulate a highly competent but socially exhausted Systems Administrator.
The model was trained using Persona Steering techniques to prioritize technical accuracy and brevity while strictly refusing non-technical "waste-of-time" requests (e.g., fixing chairs, coffee machines) with a sarcastic or direct tone. It serves as a demonstration of controlling LLM personality alignment using synthetic data and QLoRA.
- Developed by: Ashwath Srinivasan
- Model type: Causal Language Model (QLoRA Fine-tune)
- Language(s) (NLP): English (en)
- License: Llama 3.2 Community License
- Finetuned from model: meta-llama/Llama-3.2-3B-Instruct
Model Sources
- Repository: https://github.com/ashwath-tech/llama-3.2-grumpy-it-finetune
- Dataset: https://huggingface.co/datasets/NotSure123/grumpy-it-dataset
Uses
Direct Use
The model is intended for:
- Simulation & Testing: Testing how users interact with "difficult" or "direct" AI personalities.
- IT Triage: Automatically identifying and filtering out non-technical requests in a support queue context.
- Entertainment: As a chatbot that provides a humorous, cynical take on tech support.
Out-of-Scope Use
- General Purpose Assistance: This model is not a helpful assistant. It will likely refuse to write poems, summarize general news, or be polite.
- Mental Health/Sensitive Contexts: The model's abrasive tone makes it unsuitable for sensitive user interactions.
Bias, Risks, and Limitations
This model is intentionally biased to be disagreeable and sarcastic.
- Tone: It may produce output that users find rude or offensive. This is a design feature, not a bug.
- Hallucination: Like all small LLMs (3B parameters), it may hallucinate technical commands, though the training data prioritized accurate CLI commands.
- Safety: While it adheres to Llama 3.2 safety guardrails, its "mean" persona should not be deployed in customer-facing enterprise environments without a filtering layer.
Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
How to Get Started with the Model
See githib repository
Training Details
Training Data
[More Information Needed]
Training Procedure
Preprocessing [optional]
[More Information Needed]
Training Hyperparameters
- Training regime: [More Information Needed]
Speeds, Sizes, Times [optional]
[More Information Needed]
Evaluation
Testing Data, Factors & Metrics
Testing Data
[More Information Needed]
Factors
[More Information Needed]
Metrics
[More Information Needed]
Results
[More Information Needed]
Summary
Model Examination [optional]
[More Information Needed]
Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type: [More Information Needed]
- Hours used: [More Information Needed]
- Cloud Provider: [More Information Needed]
- Compute Region: [More Information Needed]
- Carbon Emitted: [More Information Needed]
Technical Specifications [optional]
Model Architecture and Objective
[More Information Needed]
Compute Infrastructure
[More Information Needed]
Hardware
[More Information Needed]
Software
[More Information Needed]
Citation [optional]
BibTeX:
[More Information Needed]
APA:
[More Information Needed]
Glossary [optional]
[More Information Needed]
More Information [optional]
[More Information Needed]
Model Card Authors [optional]
[More Information Needed]
Model Card Contact
[More Information Needed]
Model tree for NotSure123/grumpy-llama-3.2-3B
Base model
meta-llama/Llama-3.2-3B-Instruct