Instructions to use tjarvis91/vfai-x-3.5-9b-options with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tjarvis91/vfai-x-3.5-9b-options with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="tjarvis91/vfai-x-3.5-9b-options") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("tjarvis91/vfai-x-3.5-9b-options") model = AutoModelForMultimodalLM.from_pretrained("tjarvis91/vfai-x-3.5-9b-options") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use tjarvis91/vfai-x-3.5-9b-options with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tjarvis91/vfai-x-3.5-9b-options" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tjarvis91/vfai-x-3.5-9b-options", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/tjarvis91/vfai-x-3.5-9b-options
- SGLang
How to use tjarvis91/vfai-x-3.5-9b-options 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 "tjarvis91/vfai-x-3.5-9b-options" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tjarvis91/vfai-x-3.5-9b-options", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "tjarvis91/vfai-x-3.5-9b-options" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tjarvis91/vfai-x-3.5-9b-options", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use tjarvis91/vfai-x-3.5-9b-options with Docker Model Runner:
docker model run hf.co/tjarvis91/vfai-x-3.5-9b-options
Building time-safe financial AI: data integrity first
We are working on the next phase of our financial AI research stack, with the
near-term focus on evaluation discipline rather than public performance claims.
The core direction is simple: financial AI systems need better foundations
before they need bigger models.
The areas we are prioritizing:
- point-in-time data handling, where every row is tied to when it became
knowable; - contamination-resistant benchmarks with explicit held-out windows;
- deterministic replay, so the same as-of timestamp produces the same result;
- calibration and abstention metrics, so "do nothing" can be evaluated as a
first-class decision; - audit trails for data, configs, benchmark versions, and model outputs;
- risk-aware output formats that are easier to validate and reject safely.
We are intentionally not publishing live trading signals, proprietary datasets,
private training recipes, or unreleased implementation details. The public goal
is to discuss the evaluation and safety discipline around financial AI, not to
ship a black-box trading system.
If you work on financial ML, time-series evaluation, model calibration, or
benchmark contamination, we would be interested in feedback on what you consider
the minimum bar for a trustworthy finance benchmark.
This is research infrastructure and discussion, not financial advice.
Live discussion + the deployed Q-Chat router:
- π« Discord community (builders training their own trading/finance models) β https://discord.gg/PtuHZDv5ju
- π Public research devlog β https://github.com/thron-j/qovaryx-ai-research
- π€ All published models β https://huggingface.co/tjarvis91
- β Support the next training run β https://ko-fi.com/tjarvis91
Type /qchat ask <question> in the server to send a query through our compact intent-router (live demo of the published thesis, running on free HF CPU).
No signals. No financial advice. Engineering only.