Instructions to use k050506koch/GPT3-dev-125m-0612 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use k050506koch/GPT3-dev-125m-0612 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="k050506koch/GPT3-dev-125m-0612", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("k050506koch/GPT3-dev-125m-0612", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use k050506koch/GPT3-dev-125m-0612 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 k050506koch/GPT3-dev-125m-0612 # Run inference directly in the terminal: llama cli -hf k050506koch/GPT3-dev-125m-0612
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf k050506koch/GPT3-dev-125m-0612 # Run inference directly in the terminal: llama cli -hf k050506koch/GPT3-dev-125m-0612
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 k050506koch/GPT3-dev-125m-0612 # Run inference directly in the terminal: ./llama-cli -hf k050506koch/GPT3-dev-125m-0612
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 k050506koch/GPT3-dev-125m-0612 # Run inference directly in the terminal: ./build/bin/llama-cli -hf k050506koch/GPT3-dev-125m-0612
Use Docker
docker model run hf.co/k050506koch/GPT3-dev-125m-0612
- LM Studio
- Jan
- vLLM
How to use k050506koch/GPT3-dev-125m-0612 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "k050506koch/GPT3-dev-125m-0612" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "k050506koch/GPT3-dev-125m-0612", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/k050506koch/GPT3-dev-125m-0612
- SGLang
How to use k050506koch/GPT3-dev-125m-0612 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 "k050506koch/GPT3-dev-125m-0612" \ --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": "k050506koch/GPT3-dev-125m-0612", "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 "k050506koch/GPT3-dev-125m-0612" \ --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": "k050506koch/GPT3-dev-125m-0612", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use k050506koch/GPT3-dev-125m-0612 with Ollama:
ollama run hf.co/k050506koch/GPT3-dev-125m-0612
- Unsloth Desktop
- Docker Model Runner
How to use k050506koch/GPT3-dev-125m-0612 with Docker Model Runner:
docker model run hf.co/k050506koch/GPT3-dev-125m-0612
- Lemonade
How to use k050506koch/GPT3-dev-125m-0612 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull k050506koch/GPT3-dev-125m-0612
Run and chat with the model
lemonade run user.GPT3-dev-125m-0612-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
| { | |
| "activation_function": "gelu", | |
| "architectures": ["GPT3DevLMHeadModel"], | |
| "auto_map": { | |
| "AutoConfig": "modeling_gpt3dev.GPT3DevConfig", | |
| "AutoModel": "modeling_gpt3dev.GPT3DevModel", | |
| "AutoModelForCausalLM": "modeling_gpt3dev.GPT3DevLMHeadModel" | |
| }, | |
| "attn_pdrop": 0.0, | |
| "bos_token_id": 50256, | |
| "embd_pdrop": 0.0, | |
| "eos_token_id": 50256, | |
| "initializer_range": 0.02, | |
| "layer_norm_epsilon": 1e-05, | |
| "model_type": "gpt3dev", | |
| "n_ctx": 2048, | |
| "n_embd": 768, | |
| "n_head": 12, | |
| "n_inner": 3072, | |
| "n_layer": 12, | |
| "n_positions": 2048, | |
| "reorder_and_upcast_attn": false, | |
| "resid_pdrop": 0.0, | |
| "scale_attn_by_inverse_layer_idx": false, | |
| "scale_attn_weights": true, | |
| "summary_activation": null, | |
| "summary_first_dropout": 0.1, | |
| "summary_proj_to_labels": true, | |
| "summary_type": "cls_index", | |
| "summary_use_proj": true, | |
| "torch_dtype": "float32", | |
| "transformers_version": "4.46.1", | |
| "use_cache": true, | |
| "use_pre_layernorm": true, | |
| "vocab_size": 50257 | |
| } |