Text Generation
Transformers
English
electrohydrodynamics
hall-effect-thrusters
plasma-physics
computational-fluid-dynamics
text-generation-inference
mistral-large
128k-context
multimodal
Instructions to use Taylor658/Electrohydrodynamics with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Taylor658/Electrohydrodynamics with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Taylor658/Electrohydrodynamics")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Taylor658/Electrohydrodynamics", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Taylor658/Electrohydrodynamics with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Taylor658/Electrohydrodynamics" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Taylor658/Electrohydrodynamics", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Taylor658/Electrohydrodynamics
- SGLang
How to use Taylor658/Electrohydrodynamics 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 "Taylor658/Electrohydrodynamics" \ --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": "Taylor658/Electrohydrodynamics", "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 "Taylor658/Electrohydrodynamics" \ --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": "Taylor658/Electrohydrodynamics", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Taylor658/Electrohydrodynamics with Docker Model Runner:
docker model run hf.co/Taylor658/Electrohydrodynamics
Update README.md
#18
by Taylor658 - opened
README.md
CHANGED
|
@@ -42,7 +42,6 @@ model_type: mistral
|
|
| 42 |
- **🔧 Native Function Calling:** ✅ Fully Supported
|
| 43 |
- **🖼️ Multimodal Capabilities:** ✅ Text, Code, and Scientific Data Processing
|
| 44 |
- **⚡ Context Window:** 128,000 tokens
|
| 45 |
-
- **💰 Cost Efficiency:** 8X more efficient than comparable models
|
| 46 |
- **🧠 Enhanced Features:** Advanced reasoning, scientific computation, and domain expertise
|
| 47 |
|
| 48 |
---
|
|
|
|
| 42 |
- **🔧 Native Function Calling:** ✅ Fully Supported
|
| 43 |
- **🖼️ Multimodal Capabilities:** ✅ Text, Code, and Scientific Data Processing
|
| 44 |
- **⚡ Context Window:** 128,000 tokens
|
|
|
|
| 45 |
- **🧠 Enhanced Features:** Advanced reasoning, scientific computation, and domain expertise
|
| 46 |
|
| 47 |
---
|