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 Dataset
#3
by Taylor658 - opened
README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
datasets:
|
| 4 |
-
- Taylor658/
|
| 5 |
base_model:
|
| 6 |
- mistralai/Mistral-Large-Instruct-2411
|
| 7 |
language:
|
|
@@ -20,7 +20,7 @@ language:
|
|
| 20 |
**Languages**: English
|
| 21 |
**License**: Apache License 2.0
|
| 22 |
|
| 23 |
-
This model is based on the **Mistral-Large-Instruct-2411** foundation model and is being fine-tuned on the **Taylor658/
|
| 24 |
|
| 25 |
---
|
| 26 |
|
|
@@ -49,7 +49,7 @@ This model is based on the **Mistral-Large-Instruct-2411** foundation model and
|
|
| 49 |
|
| 50 |
### Training Data
|
| 51 |
|
| 52 |
-
- **Dataset Name**: `Taylor658/
|
| 53 |
- **Description**: A dataset containing textual explanations, theoretical derivations, and computational concepts related to fluid dynamics and plasma interactions in Hall thrusters.
|
| 54 |
- **Data Modalities**:
|
| 55 |
- **Text**: Technical documentation, research summaries, and theoretical analyses
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
datasets:
|
| 4 |
+
- Taylor658/Electrohydrodynamics
|
| 5 |
base_model:
|
| 6 |
- mistralai/Mistral-Large-Instruct-2411
|
| 7 |
language:
|
|
|
|
| 20 |
**Languages**: English
|
| 21 |
**License**: Apache License 2.0
|
| 22 |
|
| 23 |
+
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).
|
| 24 |
|
| 25 |
---
|
| 26 |
|
|
|
|
| 49 |
|
| 50 |
### Training Data
|
| 51 |
|
| 52 |
+
- **Dataset Name**: `Taylor658/Electrohydrodynamics`
|
| 53 |
- **Description**: A dataset containing textual explanations, theoretical derivations, and computational concepts related to fluid dynamics and plasma interactions in Hall thrusters.
|
| 54 |
- **Data Modalities**:
|
| 55 |
- **Text**: Technical documentation, research summaries, and theoretical analyses
|