Instructions to use nirajsaran/AdTextGenerator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nirajsaran/AdTextGenerator with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="nirajsaran/AdTextGenerator")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("nirajsaran/AdTextGenerator") model = AutoModelForCausalLM.from_pretrained("nirajsaran/AdTextGenerator") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use nirajsaran/AdTextGenerator with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "nirajsaran/AdTextGenerator" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nirajsaran/AdTextGenerator", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/nirajsaran/AdTextGenerator
- SGLang
How to use nirajsaran/AdTextGenerator 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 "nirajsaran/AdTextGenerator" \ --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": "nirajsaran/AdTextGenerator", "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 "nirajsaran/AdTextGenerator" \ --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": "nirajsaran/AdTextGenerator", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use nirajsaran/AdTextGenerator with Docker Model Runner:
docker model run hf.co/nirajsaran/AdTextGenerator
Commit ·
a2ce38c
1
Parent(s): d2f6230
Upload config.json
Browse files- config.json +55 -0
config.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "trained_model",
|
| 3 |
+
"activation_function": "gelu_new",
|
| 4 |
+
"architectures": [
|
| 5 |
+
"GPTNeoForCausalLM"
|
| 6 |
+
],
|
| 7 |
+
"attention_dropout": 0,
|
| 8 |
+
"attention_layers": [
|
| 9 |
+
"global",
|
| 10 |
+
"local",
|
| 11 |
+
"global",
|
| 12 |
+
"local",
|
| 13 |
+
"global",
|
| 14 |
+
"local",
|
| 15 |
+
"global",
|
| 16 |
+
"local",
|
| 17 |
+
"global",
|
| 18 |
+
"local",
|
| 19 |
+
"global",
|
| 20 |
+
"local"
|
| 21 |
+
],
|
| 22 |
+
"attention_types": [
|
| 23 |
+
[
|
| 24 |
+
[
|
| 25 |
+
"global",
|
| 26 |
+
"local"
|
| 27 |
+
],
|
| 28 |
+
6
|
| 29 |
+
]
|
| 30 |
+
],
|
| 31 |
+
"bos_token_id": 50256,
|
| 32 |
+
"embed_dropout": 0,
|
| 33 |
+
"eos_token_id": 50256,
|
| 34 |
+
"gradient_checkpointing": false,
|
| 35 |
+
"hidden_size": 768,
|
| 36 |
+
"initializer_range": 0.02,
|
| 37 |
+
"intermediate_size": null,
|
| 38 |
+
"layer_norm_epsilon": 1e-05,
|
| 39 |
+
"line_by_line": true,
|
| 40 |
+
"max_position_embeddings": 2048,
|
| 41 |
+
"model_type": "gpt_neo",
|
| 42 |
+
"num_heads": 12,
|
| 43 |
+
"num_layers": 12,
|
| 44 |
+
"resid_dropout": 0,
|
| 45 |
+
"summary_activation": null,
|
| 46 |
+
"summary_first_dropout": 0.1,
|
| 47 |
+
"summary_proj_to_labels": true,
|
| 48 |
+
"summary_type": "cls_index",
|
| 49 |
+
"summary_use_proj": true,
|
| 50 |
+
"torch_dtype": "float32",
|
| 51 |
+
"transformers_version": "4.18.0",
|
| 52 |
+
"use_cache": true,
|
| 53 |
+
"vocab_size": 50257,
|
| 54 |
+
"window_size": 256
|
| 55 |
+
}
|