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

Nekochu
/
Luminia-13B-v3

Text Generation
PEFT
Safetensors
GGUF
English
llama
llama-factory
lora
Generated from Trainer
llama2
instruct
finetune
gpt4
synthetic data
stable diffusion
alpaca
llm
conversational
Model card Files Files and versions
xet
Community
1

Instructions to use Nekochu/Luminia-13B-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • PEFT

    How to use Nekochu/Luminia-13B-v3 with PEFT:

    Task type is invalid.
  • llama-cpp-python

    How to use Nekochu/Luminia-13B-v3 with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="Nekochu/Luminia-13B-v3",
    	filename="Luminia-13B-v3-IQ4_NL.gguf",
    )
    
    llm.create_chat_completion(
    	messages = [
    		{
    			"role": "user",
    			"content": "What is the capital of France?"
    		}
    	]
    )
  • Inference
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use Nekochu/Luminia-13B-v3 with llama.cpp:

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

    How to use Nekochu/Luminia-13B-v3 with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "Nekochu/Luminia-13B-v3"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Nekochu/Luminia-13B-v3",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/Nekochu/Luminia-13B-v3:Q4_K_M
  • Ollama

    How to use Nekochu/Luminia-13B-v3 with Ollama:

    ollama run hf.co/Nekochu/Luminia-13B-v3:Q4_K_M
  • Unsloth Studio

    How to use Nekochu/Luminia-13B-v3 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 Nekochu/Luminia-13B-v3 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 Nekochu/Luminia-13B-v3 to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for Nekochu/Luminia-13B-v3 to start chatting
  • Atomic Chat new
  • Docker Model Runner

    How to use Nekochu/Luminia-13B-v3 with Docker Model Runner:

    docker model run hf.co/Nekochu/Luminia-13B-v3:Q4_K_M
  • Lemonade

    How to use Nekochu/Luminia-13B-v3 with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull Nekochu/Luminia-13B-v3:Q4_K_M
    Run and chat with the model
    lemonade run user.Luminia-13B-v3-Q4_K_M
    List all available models
    lemonade list
Luminia-13B-v3
56.6 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 11 commits
Nekochu's picture
Nekochu
Update README.md
602563f verified about 2 years ago
  • QLora
    Delete QLora/.gitattributes about 2 years ago
  • .gitattributes
    1.88 kB
    Add gguf variant about 2 years ago
  • Luminia-13B-v3-IQ4_NL.gguf
    7.41 GB
    xet
    Add gguf about 2 years ago
  • Luminia-13B-v3-Q3_K_M.gguf
    6.34 GB
    xet
    Add gguf variant about 2 years ago
  • Luminia-13B-v3-Q4_K_M.gguf
    7.87 GB
    xet
    Add gguf about 2 years ago
  • Luminia-13B-v3-Q4_K_S.gguf
    7.42 GB
    xet
    Add gguf variant about 2 years ago
  • README.md
    9.95 kB
    Update README.md about 2 years ago
  • config.json
    683 Bytes
    Add gguf about 2 years ago
  • generation_config.json
    111 Bytes
    Add gguf about 2 years ago
  • model-00001-of-00003.safetensors
    9.95 GB
    xet
    Add gguf about 2 years ago
  • model-00002-of-00003.safetensors
    9.9 GB
    xet
    Add gguf about 2 years ago
  • model-00003-of-00003.safetensors
    6.18 GB
    xet
    Add gguf about 2 years ago
  • model.safetensors.index.json
    29.9 kB
    Add gguf about 2 years ago
  • special_tokens_map.json
    437 Bytes
    Add gguf about 2 years ago
  • tokenizer.model
    500 kB
    xet
    Add gguf about 2 years ago
  • tokenizer_config.json
    1.61 kB
    Add gguf about 2 years ago