Text Generation
Transformers
PyTorch
bart
mass-spectrometry
GC-EI-MS
Transformer
molecular-structure-reconstruction
compound-identification
Instructions to use MS-ML/SpecTUS_pretrained_only with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MS-ML/SpecTUS_pretrained_only with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MS-ML/SpecTUS_pretrained_only")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("MS-ML/SpecTUS_pretrained_only") model = AutoModelForSeq2SeqLM.from_pretrained("MS-ML/SpecTUS_pretrained_only") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use MS-ML/SpecTUS_pretrained_only with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MS-ML/SpecTUS_pretrained_only" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MS-ML/SpecTUS_pretrained_only", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/MS-ML/SpecTUS_pretrained_only
- SGLang
How to use MS-ML/SpecTUS_pretrained_only 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 "MS-ML/SpecTUS_pretrained_only" \ --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": "MS-ML/SpecTUS_pretrained_only", "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 "MS-ML/SpecTUS_pretrained_only" \ --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": "MS-ML/SpecTUS_pretrained_only", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use MS-ML/SpecTUS_pretrained_only with Docker Model Runner:
docker model run hf.co/MS-ML/SpecTUS_pretrained_only
e700d8bc6bc4e2ec84c9798ff5592818157ff29d47bf7b6f57e26e91637b587f
Browse files- optimizer.pt +1 -1
optimizer.pt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2832576032
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6405d8c54f93a3c4f802f7938430bd43ade8ac7fe63ea7a9a443cd27fbc527c3
|
| 3 |
size 2832576032
|