Text Generation
Transformers
Safetensors
GGUF
MLX
English
llama
190m
from-scratch
tiny
text-generation-inference
conversational
Instructions to use SohamProgrammer/Unrealistic-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SohamProgrammer/Unrealistic-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="SohamProgrammer/Unrealistic-v1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("SohamProgrammer/Unrealistic-v1") model = AutoModelForCausalLM.from_pretrained("SohamProgrammer/Unrealistic-v1", device_map="auto") - MLX
How to use SohamProgrammer/Unrealistic-v1 with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("SohamProgrammer/Unrealistic-v1") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use SohamProgrammer/Unrealistic-v1 with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf SohamProgrammer/Unrealistic-v1:F16 # Run inference directly in the terminal: llama cli -hf SohamProgrammer/Unrealistic-v1:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf SohamProgrammer/Unrealistic-v1:F16 # Run inference directly in the terminal: llama cli -hf SohamProgrammer/Unrealistic-v1:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf SohamProgrammer/Unrealistic-v1:F16 # Run inference directly in the terminal: ./llama-cli -hf SohamProgrammer/Unrealistic-v1:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf SohamProgrammer/Unrealistic-v1:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf SohamProgrammer/Unrealistic-v1:F16
Use Docker
docker model run hf.co/SohamProgrammer/Unrealistic-v1:F16
- LM Studio
- Jan
- vLLM
How to use SohamProgrammer/Unrealistic-v1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SohamProgrammer/Unrealistic-v1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SohamProgrammer/Unrealistic-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/SohamProgrammer/Unrealistic-v1:F16
- SGLang
How to use SohamProgrammer/Unrealistic-v1 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 "SohamProgrammer/Unrealistic-v1" \ --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": "SohamProgrammer/Unrealistic-v1", "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 "SohamProgrammer/Unrealistic-v1" \ --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": "SohamProgrammer/Unrealistic-v1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use SohamProgrammer/Unrealistic-v1 with Ollama:
ollama run hf.co/SohamProgrammer/Unrealistic-v1:F16
- Unsloth Desktop
- MLX LM
How to use SohamProgrammer/Unrealistic-v1 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "SohamProgrammer/Unrealistic-v1"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "SohamProgrammer/Unrealistic-v1" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SohamProgrammer/Unrealistic-v1", "messages": [ {"role": "user", "content": "Hello"} ] }' - Docker Model Runner
How to use SohamProgrammer/Unrealistic-v1 with Docker Model Runner:
docker model run hf.co/SohamProgrammer/Unrealistic-v1:F16
- Lemonade
How to use SohamProgrammer/Unrealistic-v1 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SohamProgrammer/Unrealistic-v1:F16
Run and chat with the model
lemonade run user.Unrealistic-v1-F16
List all available models
lemonade list
- Atomic Chat
Ctrl+K