Instructions to use second-state/Phi-4-mini-instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use second-state/Phi-4-mini-instruct-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="second-state/Phi-4-mini-instruct-GGUF", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("second-state/Phi-4-mini-instruct-GGUF", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("second-state/Phi-4-mini-instruct-GGUF", trust_remote_code=True) - llama-cpp-python
How to use second-state/Phi-4-mini-instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="second-state/Phi-4-mini-instruct-GGUF", filename="Phi-4-mini-instruct-Q2_K.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 second-state/Phi-4-mini-instruct-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf second-state/Phi-4-mini-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf second-state/Phi-4-mini-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf second-state/Phi-4-mini-instruct-GGUF: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 second-state/Phi-4-mini-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf second-state/Phi-4-mini-instruct-GGUF: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 second-state/Phi-4-mini-instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use second-state/Phi-4-mini-instruct-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "second-state/Phi-4-mini-instruct-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "second-state/Phi-4-mini-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
- SGLang
How to use second-state/Phi-4-mini-instruct-GGUF 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 "second-state/Phi-4-mini-instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "second-state/Phi-4-mini-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "second-state/Phi-4-mini-instruct-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "second-state/Phi-4-mini-instruct-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use second-state/Phi-4-mini-instruct-GGUF with Ollama:
ollama run hf.co/second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
- Unsloth Studio new
How to use second-state/Phi-4-mini-instruct-GGUF 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 second-state/Phi-4-mini-instruct-GGUF 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 second-state/Phi-4-mini-instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for second-state/Phi-4-mini-instruct-GGUF to start chatting
- Pi new
How to use second-state/Phi-4-mini-instruct-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "second-state/Phi-4-mini-instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use second-state/Phi-4-mini-instruct-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use second-state/Phi-4-mini-instruct-GGUF with Docker Model Runner:
docker model run hf.co/second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
- Lemonade
How to use second-state/Phi-4-mini-instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull second-state/Phi-4-mini-instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Phi-4-mini-instruct-GGUF-Q4_K_M
List all available models
lemonade list
Update models
Browse files- .gitattributes +13 -0
- Phi-4-mini-instruct-Q2_K.gguf +3 -0
- Phi-4-mini-instruct-Q3_K_L.gguf +3 -0
- Phi-4-mini-instruct-Q3_K_M.gguf +3 -0
- Phi-4-mini-instruct-Q3_K_S.gguf +3 -0
- Phi-4-mini-instruct-Q4_0.gguf +3 -0
- Phi-4-mini-instruct-Q4_K_M.gguf +3 -0
- Phi-4-mini-instruct-Q4_K_S.gguf +3 -0
- Phi-4-mini-instruct-Q5_0.gguf +3 -0
- Phi-4-mini-instruct-Q5_K_M.gguf +3 -0
- Phi-4-mini-instruct-Q5_K_S.gguf +3 -0
- Phi-4-mini-instruct-Q6_K.gguf +3 -0
- Phi-4-mini-instruct-Q8_0.gguf +3 -0
- Phi-4-mini-instruct-f16.gguf +3 -0
- config.json +144 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,16 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Phi-4-mini-instruct-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Phi-4-mini-instruct-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Phi-4-mini-instruct-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Phi-4-mini-instruct-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Phi-4-mini-instruct-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Phi-4-mini-instruct-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Phi-4-mini-instruct-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Phi-4-mini-instruct-Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Phi-4-mini-instruct-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Phi-4-mini-instruct-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Phi-4-mini-instruct-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Phi-4-mini-instruct-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Phi-4-mini-instruct-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Phi-4-mini-instruct-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:295c3972f54c20a47d571495f167db7e02c4981207f03e51d5c00479a374f3b3
|
| 3 |
+
size 1682636096
|
Phi-4-mini-instruct-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76cc1941ccad9f14c987b4ec12cab07c5312de6dec46dc5dd8b45170675c7698
|
| 3 |
+
size 2249653568
|
Phi-4-mini-instruct-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06e0aae476fc464b8635c08fe50f355e3f096b98328fe520073800c4b211bdbc
|
| 3 |
+
size 2117532992
|
Phi-4-mini-instruct-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3392e587db39e5efd86812484b4f09ea84f43324b8dafd9741434404928819fa
|
| 3 |
+
size 1897332032
|
Phi-4-mini-instruct-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59eb0cc05b6af62a240c6ef0b9c755920b729d85bc7bbee354b2511cadf9bc95
|
| 3 |
+
size 2325151040
|
Phi-4-mini-instruct-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55239fbd0dc947146be056e7850d2fa3a55d0091aa2cc873767e686c3b15eeed
|
| 3 |
+
size 2491874624
|
Phi-4-mini-instruct-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:332b24022d5f2343897b18ea33c23fce7b44682620bc7667f05ab76a10690bd8
|
| 3 |
+
size 2337733952
|
Phi-4-mini-instruct-Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b1d2c9f4cb7a11e908d5d6bd8e07f3ea26f9228a8b38f61ddc819a86d1501eb
|
| 3 |
+
size 2727804224
|
Phi-4-mini-instruct-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00e7555f68a3762f25ebba4acaac7f303979aa88eebf862f1f8a561103c9af70
|
| 3 |
+
size 2848128320
|
Phi-4-mini-instruct-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b258b9e38595ff3960657bf789e2de8651b0b60cfa36a6cef9a4d17a7734a0dc
|
| 3 |
+
size 2727804224
|
Phi-4-mini-instruct-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:172f36acd48986a382d78d98d6816f767c791e926a02bf7ac541e7cf58b51c28
|
| 3 |
+
size 3155623232
|
Phi-4-mini-instruct-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85f3992305494d7d61267924a357f6d0f9e68035a38aa589cff386c09ee52bc9
|
| 3 |
+
size 4084611392
|
Phi-4-mini-instruct-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7bb32183dad1cc57730edf523bd6ac18716005bb579384d279e029e63828f97
|
| 3 |
+
size 7680694592
|
config.json
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "Phi-4-mini-instruct",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"Phi3ForCausalLM"
|
| 5 |
+
],
|
| 6 |
+
"attention_bias": false,
|
| 7 |
+
"attention_dropout": 0.0,
|
| 8 |
+
"auto_map": {
|
| 9 |
+
"AutoConfig": "configuration_phi3.Phi3Config",
|
| 10 |
+
"AutoModelForCausalLM": "modeling_phi3.Phi3ForCausalLM",
|
| 11 |
+
"AutoTokenizer": "Xenova/gpt-4o"
|
| 12 |
+
},
|
| 13 |
+
"bos_token_id": 199999,
|
| 14 |
+
"embd_pdrop": 0.0,
|
| 15 |
+
"eos_token_id": 199999,
|
| 16 |
+
"full_attn_mod": 1,
|
| 17 |
+
"hidden_act": "silu",
|
| 18 |
+
"hidden_size": 3072,
|
| 19 |
+
"initializer_range": 0.02,
|
| 20 |
+
"intermediate_size": 8192,
|
| 21 |
+
"interpolate_factor": 1,
|
| 22 |
+
"lm_head_bias": false,
|
| 23 |
+
"max_position_embeddings": 131072,
|
| 24 |
+
"mlp_bias": false,
|
| 25 |
+
"model_type": "phi3",
|
| 26 |
+
"num_attention_heads": 24,
|
| 27 |
+
"num_hidden_layers": 32,
|
| 28 |
+
"num_key_value_heads": 8,
|
| 29 |
+
"original_max_position_embeddings": 4096,
|
| 30 |
+
"pad_token_id": 199999,
|
| 31 |
+
"partial_rotary_factor": 0.75,
|
| 32 |
+
"resid_pdrop": 0.0,
|
| 33 |
+
"rms_norm_eps": 1e-05,
|
| 34 |
+
"rope_scaling": {
|
| 35 |
+
"long_factor": [
|
| 36 |
+
1,
|
| 37 |
+
1.118320672,
|
| 38 |
+
1.250641126,
|
| 39 |
+
1.398617824,
|
| 40 |
+
1.564103225,
|
| 41 |
+
1.74916897,
|
| 42 |
+
1.956131817,
|
| 43 |
+
2.187582649,
|
| 44 |
+
2.446418898,
|
| 45 |
+
2.735880826,
|
| 46 |
+
3.059592084,
|
| 47 |
+
3.421605075,
|
| 48 |
+
3.826451687,
|
| 49 |
+
4.279200023,
|
| 50 |
+
4.785517845,
|
| 51 |
+
5.351743533,
|
| 52 |
+
5.984965424,
|
| 53 |
+
6.693110555,
|
| 54 |
+
7.485043894,
|
| 55 |
+
8.370679318,
|
| 56 |
+
9.36110372,
|
| 57 |
+
10.4687158,
|
| 58 |
+
11.70738129,
|
| 59 |
+
13.09260651,
|
| 60 |
+
14.64173252,
|
| 61 |
+
16.37415215,
|
| 62 |
+
18.31155283,
|
| 63 |
+
20.47818807,
|
| 64 |
+
22.90118105,
|
| 65 |
+
25.61086418,
|
| 66 |
+
28.64115884,
|
| 67 |
+
32.03,
|
| 68 |
+
32.1,
|
| 69 |
+
32.13,
|
| 70 |
+
32.23,
|
| 71 |
+
32.6,
|
| 72 |
+
32.61,
|
| 73 |
+
32.64,
|
| 74 |
+
32.66,
|
| 75 |
+
32.7,
|
| 76 |
+
32.71,
|
| 77 |
+
32.93,
|
| 78 |
+
32.97,
|
| 79 |
+
33.28,
|
| 80 |
+
33.49,
|
| 81 |
+
33.5,
|
| 82 |
+
44.16,
|
| 83 |
+
47.77
|
| 84 |
+
],
|
| 85 |
+
"short_factor": [
|
| 86 |
+
1.0,
|
| 87 |
+
1.0,
|
| 88 |
+
1.0,
|
| 89 |
+
1.0,
|
| 90 |
+
1.0,
|
| 91 |
+
1.0,
|
| 92 |
+
1.0,
|
| 93 |
+
1.0,
|
| 94 |
+
1.0,
|
| 95 |
+
1.0,
|
| 96 |
+
1.0,
|
| 97 |
+
1.0,
|
| 98 |
+
1.0,
|
| 99 |
+
1.0,
|
| 100 |
+
1.0,
|
| 101 |
+
1.0,
|
| 102 |
+
1.0,
|
| 103 |
+
1.0,
|
| 104 |
+
1.0,
|
| 105 |
+
1.0,
|
| 106 |
+
1.0,
|
| 107 |
+
1.0,
|
| 108 |
+
1.0,
|
| 109 |
+
1.0,
|
| 110 |
+
1.0,
|
| 111 |
+
1.0,
|
| 112 |
+
1.0,
|
| 113 |
+
1.0,
|
| 114 |
+
1.0,
|
| 115 |
+
1.0,
|
| 116 |
+
1.0,
|
| 117 |
+
1.0,
|
| 118 |
+
1.0,
|
| 119 |
+
1.0,
|
| 120 |
+
1.0,
|
| 121 |
+
1.0,
|
| 122 |
+
1.0,
|
| 123 |
+
1.0,
|
| 124 |
+
1.0,
|
| 125 |
+
1.0,
|
| 126 |
+
1.0,
|
| 127 |
+
1.0,
|
| 128 |
+
1.0,
|
| 129 |
+
1.0,
|
| 130 |
+
1.0,
|
| 131 |
+
1.0,
|
| 132 |
+
1.0,
|
| 133 |
+
1.0
|
| 134 |
+
],
|
| 135 |
+
"type": "longrope"
|
| 136 |
+
},
|
| 137 |
+
"rope_theta": 10000.0,
|
| 138 |
+
"sliding_window": 262144,
|
| 139 |
+
"tie_word_embeddings": true,
|
| 140 |
+
"torch_dtype": "bfloat16",
|
| 141 |
+
"transformers_version": "4.45.0",
|
| 142 |
+
"use_cache": true,
|
| 143 |
+
"vocab_size": 200064
|
| 144 |
+
}
|