Instructions to use supertakerin2/nina with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use supertakerin2/nina with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="supertakerin2/nina")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("supertakerin2/nina", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use supertakerin2/nina with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "supertakerin2/nina" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "supertakerin2/nina", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/supertakerin2/nina
- SGLang
How to use supertakerin2/nina 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 "supertakerin2/nina" \ --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": "supertakerin2/nina", "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 "supertakerin2/nina" \ --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": "supertakerin2/nina", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use supertakerin2/nina with Docker Model Runner:
docker model run hf.co/supertakerin2/nina
SmolLM2-1.7B-Instruct Fine-tuned on Conspiracy_Theory_Dataset_100k (30%)
This model is an experimental LLM created by fine-tuning SmolLM2-1.7B-Instruct on 30% of the IgYahiko/Conspiracy_Theory_Dataset_100k.
It is designed to learn patterns, language styles, and structures commonly found in conspiracy theory-related texts. The primary goal is to analyze model behavior and responses when exposed to such data.
Important: This model does not verify, endorse, or promote the accuracy of conspiracy theories.
Key Features
- Base Model: SmolLM2-1.7B-Instruct
- Training Data: 30% of IgYahiko/Conspiracy_Theory_Dataset_100k
- Purpose: Research, behavioral analysis, and evaluation
- Use Cases:
- Analysis of conspiracy-related text patterns
- Misinformation and harmful content detection research
- Studying LLM response tendencies
Disclaimer
This model may generate misleading, unverified, or false information.
It should not be used as a source of factual knowledge.
For any practical application, human oversight, output validation, and safety filtering are strongly recommended.
Summary
This is a model for understanding conspiracy narratives — not for believing them.