Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

harshism1
/
codellama-leetcode-finetuned

Text Generation
Safetensors
GGUF
llama
conversational
Model card Files Files and versions
xet
Community

Instructions to use harshism1/codellama-leetcode-finetuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use harshism1/codellama-leetcode-finetuned with llama-cpp-python:

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

    How to use harshism1/codellama-leetcode-finetuned with llama.cpp:

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

    How to use harshism1/codellama-leetcode-finetuned with vLLM:

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

    How to use harshism1/codellama-leetcode-finetuned with Ollama:

    ollama run hf.co/harshism1/codellama-leetcode-finetuned
  • Unsloth Studio new

    How to use harshism1/codellama-leetcode-finetuned 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 harshism1/codellama-leetcode-finetuned 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 harshism1/codellama-leetcode-finetuned to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for harshism1/codellama-leetcode-finetuned to start chatting
  • Docker Model Runner

    How to use harshism1/codellama-leetcode-finetuned with Docker Model Runner:

    docker model run hf.co/harshism1/codellama-leetcode-finetuned
  • Lemonade

    How to use harshism1/codellama-leetcode-finetuned with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull harshism1/codellama-leetcode-finetuned
    Run and chat with the model
    lemonade run user.codellama-leetcode-finetuned-{{QUANT_TAG}}
    List all available models
    lemonade list
codellama-leetcode-finetuned
Ctrl+K
Ctrl+K
  • 2 contributors
History: 7 commits
harshism1's picture
harshism1
Update README.md
08837a7 verified 5 months ago
  • .gitattributes
    1.58 kB
    Upload fine-tuned CodeLlama model 11 months ago
  • README.md
    2.39 kB
    Update README.md 5 months ago
  • codellama-leetcode.gguf
    13.5 GB
    xet
    Restore `codellama-leetcode.gguf` from 019b62b28ae40504a3a24b06bfd960eea6971173 11 months ago
  • config.json
    716 Bytes
    Upload fine-tuned CodeLlama model 11 months ago
  • generation_config.json
    111 Bytes
    Upload fine-tuned CodeLlama model 11 months ago
  • model-00001-of-00003.safetensors
    4.94 GB
    xet
    Upload fine-tuned CodeLlama model 11 months ago
  • model-00002-of-00003.safetensors
    4.95 GB
    xet
    Upload fine-tuned CodeLlama model 11 months ago
  • model-00003-of-00003.safetensors
    3.59 GB
    xet
    Upload fine-tuned CodeLlama model 11 months ago
  • model.safetensors.index.json
    24 kB
    Upload fine-tuned CodeLlama model 11 months ago
  • special_tokens_map.json
    538 Bytes
    Upload fine-tuned CodeLlama model 11 months ago
  • tokenizer.json
    1.84 MB
    Upload fine-tuned CodeLlama model 11 months ago
  • tokenizer_config.json
    2.68 kB
    Upload fine-tuned CodeLlama model 11 months ago