Instructions to use TheNateTCY/fulltrain_optmodel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TheNateTCY/fulltrain_optmodel with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="TheNateTCY/fulltrain_optmodel")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("TheNateTCY/fulltrain_optmodel") model = AutoModelForCausalLM.from_pretrained("TheNateTCY/fulltrain_optmodel") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use TheNateTCY/fulltrain_optmodel with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TheNateTCY/fulltrain_optmodel" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TheNateTCY/fulltrain_optmodel", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/TheNateTCY/fulltrain_optmodel
- SGLang
How to use TheNateTCY/fulltrain_optmodel 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 "TheNateTCY/fulltrain_optmodel" \ --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": "TheNateTCY/fulltrain_optmodel", "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 "TheNateTCY/fulltrain_optmodel" \ --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": "TheNateTCY/fulltrain_optmodel", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use TheNateTCY/fulltrain_optmodel with Docker Model Runner:
docker model run hf.co/TheNateTCY/fulltrain_optmodel
Update README.md
#1
by cherry0328 - opened
README.md
CHANGED
|
@@ -5,6 +5,8 @@ tags:
|
|
| 5 |
model-index:
|
| 6 |
- name: TheNateTCY/fulltrain_optmodel
|
| 7 |
results: []
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
|
@@ -50,4 +52,4 @@ The following hyperparameters were used during training:
|
|
| 50 |
- Transformers 4.25.1
|
| 51 |
- TensorFlow 2.10.1
|
| 52 |
- Datasets 2.7.1
|
| 53 |
-
- Tokenizers 0.13.2
|
|
|
|
| 5 |
model-index:
|
| 6 |
- name: TheNateTCY/fulltrain_optmodel
|
| 7 |
results: []
|
| 8 |
+
base_model:
|
| 9 |
+
- facebook/opt-125m
|
| 10 |
---
|
| 11 |
|
| 12 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
|
|
|
| 52 |
- Transformers 4.25.1
|
| 53 |
- TensorFlow 2.10.1
|
| 54 |
- Datasets 2.7.1
|
| 55 |
+
- Tokenizers 0.13.2
|