sithuWiki commited on
Commit
96f98b7
·
verified ·
1 Parent(s): 430a480

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -413,6 +413,20 @@ def create_interface():
413
  outputs=[miner_info, prediction, conf_plot, price_plot],
414
  )
415
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  return app
417
 
418
 
 
413
  outputs=[miner_info, prediction, conf_plot, price_plot],
414
  )
415
 
416
+
417
+ gr.Markdown(
418
+ """
419
+ > ⚠️ **Disclaimer**
420
+ > This tool is a research demonstration of the MineROI-Net model.
421
+ > Predictions are **not financial advice** and may be inaccurate.
422
+ > The model does **not** account for all market conditions and attempts to use recent Bitcoin network signals to estimate ROI classifications.
423
+ > Results may vary, and users should perform their own due diligence.
424
+ **Paper:** https://arxiv.org/abs/2512.05402
425
+ **GitHub Repository:** https://github.com/AMAAI-Lab/MineROI-Net
426
+ """
427
+ )
428
+
429
+
430
  return app
431
 
432