Text Generation
Transformers
Safetensors
llama
Merge
mergekit
lazymergekit
text-generation-inference
Instructions to use DenisTheDev/Blitz-AI-ULTRA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DenisTheDev/Blitz-AI-ULTRA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DenisTheDev/Blitz-AI-ULTRA")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DenisTheDev/Blitz-AI-ULTRA") model = AutoModelForCausalLM.from_pretrained("DenisTheDev/Blitz-AI-ULTRA", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use DenisTheDev/Blitz-AI-ULTRA with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DenisTheDev/Blitz-AI-ULTRA" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DenisTheDev/Blitz-AI-ULTRA", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/DenisTheDev/Blitz-AI-ULTRA
- SGLang
How to use DenisTheDev/Blitz-AI-ULTRA 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 "DenisTheDev/Blitz-AI-ULTRA" \ --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": "DenisTheDev/Blitz-AI-ULTRA", "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 "DenisTheDev/Blitz-AI-ULTRA" \ --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": "DenisTheDev/Blitz-AI-ULTRA", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use DenisTheDev/Blitz-AI-ULTRA with Docker Model Runner:
docker model run hf.co/DenisTheDev/Blitz-AI-ULTRA
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,4 +12,49 @@ Our current largest model and so far the strongest.
|
|
| 12 |
|
| 13 |
# Why this model?
|
| 14 |
|
| 15 |
-
The mode was created as a custom AI solution for us. This one is not yet trained for specific use cases.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
# Why this model?
|
| 14 |
|
| 15 |
+
The mode was created as a custom AI solution for us. This one is not yet trained for specific use cases.
|
| 16 |
+
|
| 17 |
+
Model Examination [optional]
|
| 18 |
+
[More Information Needed]
|
| 19 |
+
|
| 20 |
+
Environmental Impact
|
| 21 |
+
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
|
| 22 |
+
|
| 23 |
+
Hardware Type: [More Information Needed]
|
| 24 |
+
Hours used: [More Information Needed]
|
| 25 |
+
Cloud Provider: [More Information Needed]
|
| 26 |
+
Compute Region: [More Information Needed]
|
| 27 |
+
Carbon Emitted: [More Information Needed]
|
| 28 |
+
Technical Specifications [optional]
|
| 29 |
+
Model Architecture and Objective
|
| 30 |
+
[More Information Needed]
|
| 31 |
+
|
| 32 |
+
Compute Infrastructure
|
| 33 |
+
[More Information Needed]
|
| 34 |
+
|
| 35 |
+
Hardware
|
| 36 |
+
[More Information Needed]
|
| 37 |
+
|
| 38 |
+
Software
|
| 39 |
+
[More Information Needed]
|
| 40 |
+
|
| 41 |
+
Citation [optional]
|
| 42 |
+
BibTeX:
|
| 43 |
+
|
| 44 |
+
[More Information Needed]
|
| 45 |
+
|
| 46 |
+
APA:
|
| 47 |
+
|
| 48 |
+
[More Information Needed]
|
| 49 |
+
|
| 50 |
+
Glossary [optional]
|
| 51 |
+
[More Information Needed]
|
| 52 |
+
|
| 53 |
+
More Information [optional]
|
| 54 |
+
[More Information Needed]
|
| 55 |
+
|
| 56 |
+
Model Card Authors [optional]
|
| 57 |
+
[More Information Needed]
|
| 58 |
+
|
| 59 |
+
Model Card Contact
|
| 60 |
+
[More Information Needed]
|