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
#7
by Taylor658 - opened
README.md
CHANGED
|
@@ -24,7 +24,7 @@ tags:
|
|
| 24 |
**Model Name**: `mistral-7b-hall-thruster-fluid-dynamics`
|
| 25 |
**Model Type**: Transformer-based language model
|
| 26 |
**Languages**: English
|
| 27 |
-
**License**:
|
| 28 |
|
| 29 |
This model is based on the **Mistral-Large-Instruct-2411** foundation model and is being fine-tuned on the **Taylor658/Electrohydrodynamics** dataset. It is designed to assist with understanding electrohydrodynamics, plasma fluid interactions, and related fluid dynamic phenomena in Hall Effect Thrusters (HETs).
|
| 30 |
|
|
|
|
| 24 |
**Model Name**: `mistral-7b-hall-thruster-fluid-dynamics`
|
| 25 |
**Model Type**: Transformer-based language model
|
| 26 |
**Languages**: English
|
| 27 |
+
**License**: MIT
|
| 28 |
|
| 29 |
This model is based on the **Mistral-Large-Instruct-2411** foundation model and is being fine-tuned on the **Taylor658/Electrohydrodynamics** dataset. It is designed to assist with understanding electrohydrodynamics, plasma fluid interactions, and related fluid dynamic phenomena in Hall Effect Thrusters (HETs).
|
| 30 |
|