Instructions to use trl-internal-testing/tiny-GPTNeoXForCausalLM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use trl-internal-testing/tiny-GPTNeoXForCausalLM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="trl-internal-testing/tiny-GPTNeoXForCausalLM")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("trl-internal-testing/tiny-GPTNeoXForCausalLM") model = AutoModelForCausalLM.from_pretrained("trl-internal-testing/tiny-GPTNeoXForCausalLM", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use trl-internal-testing/tiny-GPTNeoXForCausalLM with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "trl-internal-testing/tiny-GPTNeoXForCausalLM" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "trl-internal-testing/tiny-GPTNeoXForCausalLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/trl-internal-testing/tiny-GPTNeoXForCausalLM
- SGLang
How to use trl-internal-testing/tiny-GPTNeoXForCausalLM 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 "trl-internal-testing/tiny-GPTNeoXForCausalLM" \ --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": "trl-internal-testing/tiny-GPTNeoXForCausalLM", "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 "trl-internal-testing/tiny-GPTNeoXForCausalLM" \ --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": "trl-internal-testing/tiny-GPTNeoXForCausalLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use trl-internal-testing/tiny-GPTNeoXForCausalLM with Docker Model Runner:
docker model run hf.co/trl-internal-testing/tiny-GPTNeoXForCausalLM
Upload GPTNeoXForCausalLM
Browse files- config.json +12 -6
- generation_config.json +2 -2
- model.safetensors +2 -2
config.json
CHANGED
|
@@ -6,12 +6,19 @@
|
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
"bos_token_id": 0,
|
| 8 |
"classifier_dropout": 0.1,
|
| 9 |
-
"
|
|
|
|
| 10 |
"hidden_act": "gelu",
|
| 11 |
"hidden_dropout": 0.0,
|
| 12 |
-
"hidden_size":
|
|
|
|
|
|
|
|
|
|
| 13 |
"initializer_range": 0.02,
|
| 14 |
-
"intermediate_size":
|
|
|
|
|
|
|
|
|
|
| 15 |
"layer_norm_eps": 1e-05,
|
| 16 |
"max_position_embeddings": 2048,
|
| 17 |
"model_type": "gpt_neox",
|
|
@@ -24,9 +31,8 @@
|
|
| 24 |
"rotary_emb_base": 10000,
|
| 25 |
"rotary_pct": 0.25,
|
| 26 |
"tie_word_embeddings": false,
|
| 27 |
-
"
|
| 28 |
-
"transformers_version": "4.55.0.dev0",
|
| 29 |
"use_cache": true,
|
| 30 |
"use_parallel_residual": true,
|
| 31 |
-
"vocab_size":
|
| 32 |
}
|
|
|
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
"bos_token_id": 0,
|
| 8 |
"classifier_dropout": 0.1,
|
| 9 |
+
"dtype": "float32",
|
| 10 |
+
"eos_token_id": 0,
|
| 11 |
"hidden_act": "gelu",
|
| 12 |
"hidden_dropout": 0.0,
|
| 13 |
+
"hidden_size": 16,
|
| 14 |
+
"id2label": {
|
| 15 |
+
"0": "LABEL_0"
|
| 16 |
+
},
|
| 17 |
"initializer_range": 0.02,
|
| 18 |
+
"intermediate_size": 512,
|
| 19 |
+
"label2id": {
|
| 20 |
+
"LABEL_0": 0
|
| 21 |
+
},
|
| 22 |
"layer_norm_eps": 1e-05,
|
| 23 |
"max_position_embeddings": 2048,
|
| 24 |
"model_type": "gpt_neox",
|
|
|
|
| 31 |
"rotary_emb_base": 10000,
|
| 32 |
"rotary_pct": 0.25,
|
| 33 |
"tie_word_embeddings": false,
|
| 34 |
+
"transformers_version": "4.57.0.dev0",
|
|
|
|
| 35 |
"use_cache": true,
|
| 36 |
"use_parallel_residual": true,
|
| 37 |
+
"vocab_size": 50304
|
| 38 |
}
|
generation_config.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 0,
|
| 4 |
-
"eos_token_id":
|
| 5 |
-
"transformers_version": "4.
|
| 6 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 0,
|
| 4 |
+
"eos_token_id": 0,
|
| 5 |
+
"transformers_version": "4.57.0.dev0"
|
| 6 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9e52892fb7e5149fc2b2b3b23a415af074ae86fa4365f3a99a4df68095e3c34
|
| 3 |
+
size 6586584
|