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
#4
by Taylor658 - opened
README.md
CHANGED
|
@@ -46,6 +46,7 @@ This model is based on the **Mistral-Large-Instruct-2411** foundation model and
|
|
| 46 |
- Assist aerospace engineers and researchers in analyzing plasma and fluid flows in HET channels
|
| 47 |
- Provide support for understanding electrohydrodynamics in propulsion systems
|
| 48 |
- Facilitate research by offering computational assistance in modeling plasma-fluid interactions
|
|
|
|
| 49 |
- **Usage Scenarios**:
|
| 50 |
- Discussing the influence of magnetic fields on electron mobility
|
| 51 |
- Explaining ionization dynamics in the thruster discharge channel
|
|
@@ -56,7 +57,7 @@ This model is based on the **Mistral-Large-Instruct-2411** foundation model and
|
|
| 56 |
### Training Data
|
| 57 |
|
| 58 |
- **Dataset Name**: `Taylor658/Electrohydrodynamics`
|
| 59 |
-
- **Description**: A dataset containing textual explanations, theoretical derivations, and computational concepts related to fluid dynamics and plasma interactions in Hall
|
| 60 |
- **Data Modalities**:
|
| 61 |
- **Text**: Technical documentation, research summaries, and theoretical analyses
|
| 62 |
- **Code**:
|
|
|
|
| 46 |
- Assist aerospace engineers and researchers in analyzing plasma and fluid flows in HET channels
|
| 47 |
- Provide support for understanding electrohydrodynamics in propulsion systems
|
| 48 |
- Facilitate research by offering computational assistance in modeling plasma-fluid interactions
|
| 49 |
+
-
|
| 50 |
- **Usage Scenarios**:
|
| 51 |
- Discussing the influence of magnetic fields on electron mobility
|
| 52 |
- Explaining ionization dynamics in the thruster discharge channel
|
|
|
|
| 57 |
### Training Data
|
| 58 |
|
| 59 |
- **Dataset Name**: `Taylor658/Electrohydrodynamics`
|
| 60 |
+
- **Description**: A dataset containing textual explanations, theoretical derivations, and computational concepts related to fluid dynamics and plasma interactions in Hall Effect Thrusters.
|
| 61 |
- **Data Modalities**:
|
| 62 |
- **Text**: Technical documentation, research summaries, and theoretical analyses
|
| 63 |
- **Code**:
|