Instructions to use moelanoby/Kok-GPT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use moelanoby/Kok-GPT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="moelanoby/Kok-GPT", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("moelanoby/Kok-GPT", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use moelanoby/Kok-GPT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "moelanoby/Kok-GPT" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "moelanoby/Kok-GPT", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/moelanoby/Kok-GPT
- SGLang
How to use moelanoby/Kok-GPT 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 "moelanoby/Kok-GPT" \ --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": "moelanoby/Kok-GPT", "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 "moelanoby/Kok-GPT" \ --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": "moelanoby/Kok-GPT", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use moelanoby/Kok-GPT with Docker Model Runner:
docker model run hf.co/moelanoby/Kok-GPT
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,16 +14,16 @@ and to use it with text generation as a base model :3 (not recommended 3: needs
|
|
| 14 |
from transformers import AutoTokenizer
|
| 15 |
import torch
|
| 16 |
|
| 17 |
-
# Load tokenizer
|
| 18 |
tokenizer = AutoTokenizer.from_pretrained("moelanoby/Kok-GPT")
|
| 19 |
|
| 20 |
-
# Load
|
| 21 |
model = BucketMemoryModel.from_pretrained(
|
| 22 |
"moelanoby/Kok-GPT",
|
| 23 |
trust_remote_code=True
|
| 24 |
)
|
| 25 |
|
| 26 |
-
# Generate text
|
| 27 |
def generate_text(prompt, max_length=50):
|
| 28 |
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 29 |
outputs = model.generate(
|
|
@@ -32,10 +32,10 @@ def generate_text(prompt, max_length=50):
|
|
| 32 |
)
|
| 33 |
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 34 |
|
| 35 |
-
#
|
| 36 |
prompt = "Hello"
|
| 37 |
generated = generate_text(prompt)
|
| 38 |
-
print(f"Generated: {generated}")
|
| 39 |
```
|
| 40 |
either way it was trained on 10K rows on the fineweb dataset which is considered insufficient I did end up with an average loss of 2.3468 so yeah you can still finetune the model but the time I get stronger GPUs I'll just target 7B parameters or 14B and etc...
|
| 41 |
|
|
|
|
| 14 |
from transformers import AutoTokenizer
|
| 15 |
import torch
|
| 16 |
|
| 17 |
+
# Load tokenizer >:D
|
| 18 |
tokenizer = AutoTokenizer.from_pretrained("moelanoby/Kok-GPT")
|
| 19 |
|
| 20 |
+
# Load mi model :3 (ensure trust_remote_code=True)
|
| 21 |
model = BucketMemoryModel.from_pretrained(
|
| 22 |
"moelanoby/Kok-GPT",
|
| 23 |
trust_remote_code=True
|
| 24 |
)
|
| 25 |
|
| 26 |
+
# Generate text with this function :D
|
| 27 |
def generate_text(prompt, max_length=50):
|
| 28 |
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 29 |
outputs = model.generate(
|
|
|
|
| 32 |
)
|
| 33 |
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
| 34 |
|
| 35 |
+
# change hello to anything you like :D
|
| 36 |
prompt = "Hello"
|
| 37 |
generated = generate_text(prompt)
|
| 38 |
+
print(f"Generated text >:3: {generated}")
|
| 39 |
```
|
| 40 |
either way it was trained on 10K rows on the fineweb dataset which is considered insufficient I did end up with an average loss of 2.3468 so yeah you can still finetune the model but the time I get stronger GPUs I'll just target 7B parameters or 14B and etc...
|
| 41 |
|