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", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- 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
NIST license; published paper
#5
by krenek - opened
README.md
CHANGED
|
@@ -32,22 +32,20 @@ successfully learned molecular structure rules and the relationship between atom
|
|
| 32 |
for subsequent finetuning.
|
| 33 |
|
| 34 |
We suggest to finetune the model further on experimental data (NIST, Wiley) to reach the performance reported in our [preprint]. Though we can not
|
| 35 |
-
make the final model available, since it was finetuned on a proprietary dataset (NIST). If
|
| 36 |
-
|
| 37 |
-
model with you. The code we used for the data processing, finetuning, evaluation, model comparison and more can also be found in [our GitHub repository].
|
| 38 |
|
| 39 |
Our [preprint] provides more information about the task background, the final finetuned model, and the experiments.
|
| 40 |
|
| 41 |
How to cite:
|
| 42 |
```text
|
| 43 |
-
@
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
url={https://arxiv.org/abs/2502.05114},
|
| 51 |
}
|
| 52 |
```
|
| 53 |
|
|
|
|
| 32 |
for subsequent finetuning.
|
| 33 |
|
| 34 |
We suggest to finetune the model further on experimental data (NIST, Wiley) to reach the performance reported in our [preprint]. Though we can not
|
| 35 |
+
make the final model available, since it was finetuned on a proprietary dataset (NIST). If you have purchased the NIST GC-EI-MS license, you can
|
| 36 |
+
fine-tune the model yourself using the code in [our GitHub repository]. The code we used for the data processing, finetuning, evaluation, model comparison and more can also be found in [our GitHub repository].
|
|
|
|
| 37 |
|
| 38 |
Our [preprint] provides more information about the task background, the final finetuned model, and the experiments.
|
| 39 |
|
| 40 |
How to cite:
|
| 41 |
```text
|
| 42 |
+
@article{doi:10.1021/acs.analchem.6c02423,
|
| 43 |
+
author = {Hájek, Adam and Starý, Michal and Price, Elliott and Jozefov, Filip and Hecht, Helge and Křenek, Aleš},
|
| 44 |
+
title = {SpecTUS: Spectral Translator for Unknown Structures Annotation from EI-MS Spectra},
|
| 45 |
+
journal = {Analytical Chemistry},
|
| 46 |
+
doi = {10.1021/acs.analchem.6c02423},
|
| 47 |
+
note ={PMID: 42441797},
|
| 48 |
+
url = {https://doi.org/10.1021/acs.analchem.6c02423},
|
|
|
|
| 49 |
}
|
| 50 |
```
|
| 51 |
|