Image-Text-to-Text
Transformers
English
mistral
pixtral
vlm
multimodal
orbital-mechanics
hohmann-transfer-orbits
Instructions to use Taylor658/Titan-Hohmann with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Taylor658/Titan-Hohmann with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Taylor658/Titan-Hohmann")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Taylor658/Titan-Hohmann", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Taylor658/Titan-Hohmann with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Taylor658/Titan-Hohmann" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Taylor658/Titan-Hohmann", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Taylor658/Titan-Hohmann
- SGLang
How to use Taylor658/Titan-Hohmann 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/Titan-Hohmann" \ --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/Titan-Hohmann", "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/Titan-Hohmann" \ --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/Titan-Hohmann", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Taylor658/Titan-Hohmann with Docker Model Runner:
docker model run hf.co/Taylor658/Titan-Hohmann
Update README.md
Browse files
README.md
CHANGED
|
@@ -5,7 +5,7 @@ datasets:
|
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
base_model:
|
| 8 |
-
- mistralai/Mistral-
|
| 9 |
tags:
|
| 10 |
- transfer-orbits
|
| 11 |
- hohmann-transfer-orbits
|
|
@@ -24,7 +24,7 @@ tags:
|
|
| 24 |
**Languages**: English
|
| 25 |
**License**: MIT
|
| 26 |
|
| 27 |
-
This model is based on the **Mistral-
|
| 28 |
|
| 29 |
---
|
| 30 |
|
|
|
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
base_model:
|
| 8 |
+
- mistralai/Mistral-8x7B
|
| 9 |
tags:
|
| 10 |
- transfer-orbits
|
| 11 |
- hohmann-transfer-orbits
|
|
|
|
| 24 |
**Languages**: English
|
| 25 |
**License**: MIT
|
| 26 |
|
| 27 |
+
This model is based on the **Mistral-8x7B** foundation model and is being fine-tuned on the **titan-hohmann-transfer-orbit** dataset. It is designed to assist with advanced orbital calculations, specifically focusing on space probe Hohmann transfer orbits, and includes support for native function calling and multimodal inputs.
|
| 28 |
|
| 29 |
---
|
| 30 |
|