Uploaded finetuned model
- Developed by: GetSoloTech
This lfm2 model was trained 2x faster with Unsloth and Huggingface's TRL library.
- Downloads last month
- 5
Model tree for GetSoloTech/Physical_AI
Base model
LiquidAI/LFM2-700MThis lfm2 model was trained 2x faster with Unsloth and Huggingface's TRL library.
Base model
LiquidAI/LFM2-700M
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "GetSoloTech/Physical_AI"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GetSoloTech/Physical_AI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'