Views
No views yet
pip install transformers torch1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model_name = "your-huggingface-username/BTCUSDT-1h-finetuned"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name)1# Prepare your BTCUSDT data
2# Use the prediction script from the original repository
3
4from prediction_script import predict_btc
5predictions = predict_btc(model, historical_data)
6print(predictions)
1@misc{btcusdt_finetuned_2025,
2 title={BTCUSDT 1-Hour Fine-tuned Model},
3 author={Your Name},
4 year={2025},
5 publisher={Hugging Face},
6 howpublished={\url{https://huggingface.co/your-username/BTCUSDT-1h-finetuned}}
7}