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
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

5w4n
/
base-burmese-llm

Question Answering
Transformers
Safetensors
GGUF
Burmese
llama
text-generation
text-generation-inference
Model card Files Files and versions
xet
Community
1

Instructions to use 5w4n/base-burmese-llm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use 5w4n/base-burmese-llm with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("question-answering", model="5w4n/base-burmese-llm")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("5w4n/base-burmese-llm")
    model = AutoModelForCausalLM.from_pretrained("5w4n/base-burmese-llm")
  • llama-cpp-python

    How to use 5w4n/base-burmese-llm with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="5w4n/base-burmese-llm",
    	filename="base-burmese-merged-q5_k_m.gguf",
    )
    
    output = llm(
    	"Once upon a time,",
    	max_tokens=512,
    	echo=True
    )
    print(output)
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • llama.cpp

    How to use 5w4n/base-burmese-llm with llama.cpp:

    Install from brew
    brew install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf 5w4n/base-burmese-llm:Q4_K_M
    # Run inference directly in the terminal:
    llama-cli -hf 5w4n/base-burmese-llm:Q4_K_M
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama-server -hf 5w4n/base-burmese-llm:Q4_K_M
    # Run inference directly in the terminal:
    llama-cli -hf 5w4n/base-burmese-llm: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 5w4n/base-burmese-llm:Q4_K_M
    # Run inference directly in the terminal:
    ./llama-cli -hf 5w4n/base-burmese-llm: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 5w4n/base-burmese-llm:Q4_K_M
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf 5w4n/base-burmese-llm:Q4_K_M
    Use Docker
    docker model run hf.co/5w4n/base-burmese-llm:Q4_K_M
  • LM Studio
  • Jan
  • Ollama

    How to use 5w4n/base-burmese-llm with Ollama:

    ollama run hf.co/5w4n/base-burmese-llm:Q4_K_M
  • Unsloth Studio new

    How to use 5w4n/base-burmese-llm with Unsloth Studio:

    Install Unsloth Studio (macOS, Linux, WSL)
    curl -fsSL https://unsloth.ai/install.sh | sh
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for 5w4n/base-burmese-llm to start chatting
    Install Unsloth Studio (Windows)
    irm https://unsloth.ai/install.ps1 | iex
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for 5w4n/base-burmese-llm to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for 5w4n/base-burmese-llm to start chatting
  • Docker Model Runner

    How to use 5w4n/base-burmese-llm with Docker Model Runner:

    docker model run hf.co/5w4n/base-burmese-llm:Q4_K_M
  • Lemonade

    How to use 5w4n/base-burmese-llm with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull 5w4n/base-burmese-llm:Q4_K_M
    Run and chat with the model
    lemonade run user.base-burmese-llm-Q4_K_M
    List all available models
    lemonade list
base-burmese-llm
30.7 GB
Ctrl+K
Ctrl+K
  • 2 contributors
History: 11 commits
5w4n's picture
5w4n
Update README.md
374e670 verified 4 months ago
  • .gitattributes
    1.98 kB
    Add merged model over 2 years ago
  • README.md
    5.04 kB
    Update README.md 4 months ago
  • base-burmese-merged-q5_k_m.gguf
    4.89 GB
    xet
    Add merged model over 2 years ago
  • base-burmese-q4_0-v2.gguf
    3.92 GB
    xet
    Add gguf v2 over 2 years ago
  • base-burmese-q4_0.gguf
    3.92 GB
    xet
    Add gguf over 2 years ago
  • base-burmese-q4_k_m.gguf
    4.18 GB
    xet
    Add q4_k_m over 2 years ago
  • config.json
    704 Bytes
    Add model tokenizer over 2 years ago
  • generation_config.json
    132 Bytes
    Add model tokenizer over 2 years ago
  • model-00001-of-00003.safetensors
    4.98 GB
    xet
    Add original safetensors over 2 years ago
  • model-00002-of-00003.safetensors
    4.95 GB
    xet
    Add original safetensors over 2 years ago
  • model-00003-of-00003.safetensors
    3.82 GB
    xet
    Add original safetensors over 2 years ago
  • model.safetensors.index.json
    24 kB
    Add model tokenizer over 2 years ago
  • special_tokens_map.json
    435 Bytes
    Update lora format into model over 2 years ago
  • tokenizer.json
    2.71 MB
    Add model tokenizer over 2 years ago
  • tokenizer.model
    787 kB
    xet
    Initial commit over 2 years ago
  • tokenizer_config.json
    676 Bytes
    Update lora format into model over 2 years ago