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

Hemanth-thunder
/
Tamil-Mistral-7B-Instruct-v0.1

Text Generation
Transformers
Safetensors
GGUF
Tamil
mistral
Mistral
instruct
finetune
chatml
DPO
RLHF
gpt4
synthetic data
distillation
function calling
json mode
text-generation-inference
Model card Files Files and versions
xet
Community
1

Instructions to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1")
    model = AutoModelForCausalLM.from_pretrained("Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1", device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 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 Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    # Run inference directly in the terminal:
    llama cli -hf Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama serve -hf Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    # Run inference directly in the terminal:
    llama cli -hf Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    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 Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    # Run inference directly in the terminal:
    ./llama-cli -hf Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    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 Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    Use Docker
    docker model run hf.co/Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
  • LM Studio
  • Jan
  • vLLM

    How to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    Use Docker
    docker model run hf.co/Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
  • SGLang

    How to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 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 "Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1" \
        --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": "Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1",
    		"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 "Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1" \
            --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": "Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Ollama

    How to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 with Ollama:

    ollama run hf.co/Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
  • Unsloth Desktop
  • Docker Model Runner

    How to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 with Docker Model Runner:

    docker model run hf.co/Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
  • Lemonade

    How to use Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1 with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull Hemanth-thunder/Tamil-Mistral-7B-Instruct-v0.1:Q4_K_M
    Run and chat with the model
    lemonade run user.Tamil-Mistral-7B-Instruct-v0.1-Q4_K_M
    List all available models
    lemonade list
  • Atomic Chat
Tamil-Mistral-7B-Instruct-v0.1
24.5 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 25 commits
Hemanth-thunder's picture
Hemanth-thunder
Update README.md
398e635 verified over 2 years ago
  • .gitattributes
    1.95 kB
    Upload Tamil_llm.mp4 over 2 years ago
  • README.md
    6.49 kB
    Update README.md over 2 years ago
  • Tamil_llm.mp4
    5.99 MB
    xet
    Upload Tamil_llm.mp4 over 2 years ago
  • config.json
    653 Bytes
    Tamil Mistral CausalLM over 2 years ago
  • generation_config.json
    111 Bytes
    Tamil Mistral CausalLM over 2 years ago
  • model-00001-of-00003.safetensors
    4.98 GB
    xet
    Tamil Mistral CausalLM over 2 years ago
  • model-00002-of-00003.safetensors
    4.92 GB
    xet
    Tamil Mistral CausalLM over 2 years ago
  • model-00003-of-00003.safetensors
    4.89 GB
    xet
    Tamil Mistral CausalLM over 2 years ago
  • model.safetensors.index.json
    24 kB
    Tamil Mistral CausalLM over 2 years ago
  • special_tokens_map.json
    437 Bytes
    Tamil Mistral CausalLM over 2 years ago
  • tamil-mistral-7b-instruct-v0.1.Q4_K_M.gguf
    4.47 GB
    xet
    Upload tamil-mistral-7b-instruct-v0.1.Q4_K_M.gguf with huggingface_hub over 2 years ago
  • tamil-mistral-7b-instruct-v0.1.Q5_K_M.gguf
    5.25 GB
    xet
    Upload tamil-mistral-7b-instruct-v0.1.Q5_K_M.gguf with huggingface_hub over 2 years ago
  • tokenizer.json
    3.72 MB
    Tamil Mistral CausalLM over 2 years ago
  • tokenizer.model
    1.06 MB
    xet
    Tamil Mistral CausalLM over 2 years ago
  • tokenizer_config.json
    963 Bytes
    Tamil Mistral CausalLM over 2 years ago