My Logistic Scheduler Model (Qwen2 Finetune)
This model was fine-tuned on Alibaba PAI using the Qwen2 base model for logistics scheduling tasks.
Files
- model.safetensors
- config.json
- tokenizer.json
- tokenizer_config.json
- vocab.json / merges.txt
Usage
from transformers import AutoTokenizer, AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("your-username/your-model", trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained("your-username/your-model")
inputs = tokenizer("hello", return_tensors="pt")
out = model.generate(**inputs)
print(tokenizer.decode(out[0]))
- Downloads last month
- 14
Model tree for goKerwin/my-logistic-model
Base model
Qwen/Qwen2-0.5B