Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

SohamProgrammer
/
Unrealistic-v1

Text Generation
Transformers
Safetensors
GGUF
MLX
English
llama
190m
from-scratch
tiny
text-generation-inference
conversational
Model card Files Files and versions
xet
Community

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
Unrealistic-v1
7.59 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 44 commits
SohamProgrammer's picture
SohamProgrammer
Upload folder using huggingface_hub
c018a70 verified about 16 hours ago
  • mlx
    Upload folder using huggingface_hub about 16 hours ago
  • .gitattributes
    1.7 kB
    Upload folder using huggingface_hub 5 days ago
  • Modelfile
    753 Bytes
    Upload Modelfile with huggingface_hub 4 days ago
  • README.md
    3.17 kB
    Upload README.md with huggingface_hub 1 day ago
  • config.json
    465 Bytes
    Upload folder using huggingface_hub 5 days ago
  • model.safetensors
    380 MB
    xet
    Upload model.safetensors with huggingface_hub 3 days ago
  • setup-ollama.sh
    1.25 kB
    Upload setup-ollama.sh with huggingface_hub 1 day ago
  • tokenizer.model
    785 kB
    xet
    Upload folder using huggingface_hub 5 days ago
  • tokenizer_config.json
    184 Bytes
    Upload folder using huggingface_hub 5 days ago
  • unrealistic-v1-f16.gguf
    380 MB
    xet
    Upload unrealistic-v1-f16.gguf with huggingface_hub 1 day ago