Instructions to use PaulQ1/Chat_TS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PaulQ1/Chat_TS with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="PaulQ1/Chat_TS")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("PaulQ1/Chat_TS") model = AutoModelForCausalLM.from_pretrained("PaulQ1/Chat_TS") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use PaulQ1/Chat_TS with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "PaulQ1/Chat_TS" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "PaulQ1/Chat_TS", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/PaulQ1/Chat_TS
- SGLang
How to use PaulQ1/Chat_TS 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 "PaulQ1/Chat_TS" \ --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": "PaulQ1/Chat_TS", "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 "PaulQ1/Chat_TS" \ --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": "PaulQ1/Chat_TS", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use PaulQ1/Chat_TS with Docker Model Runner:
docker model run hf.co/PaulQ1/Chat_TS
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Chat-TS Model Trained off of LLama3.1-7B backbone.
This model discretely tokenizes time-series and uses an expanded vocabulary to model time-series representations. Due to these modifications it should be compatible with most modern inferance frameworks as you can simply pass the multi-modal token stream directly to the model (eg. VLLM)
This model was trained for text generation tasks, however this framework is extensible to time-series generation aswell.
For more information please see the paper below.
If you use this work please cite:
@misc{quinlan2025chattsenhancingmultimodalreasoning,
title={Chat-TS: Enhancing Multi-Modal Reasoning Over Time-Series and Natural Language Data},
author={Paul Quinlan and Qingguo Li and Xiaodan Zhu},
year={2025},
eprint={2503.10883},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2503.10883},
}
- Downloads last month
- 19