dibend commited on
Commit
a6d9a48
·
1 Parent(s): 6ec9bb1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -1
app.py CHANGED
@@ -55,7 +55,32 @@ interface = gr.Interface(
55
  inputs="text",
56
  outputs="html",
57
  title="Asset Price Prediction",
58
- description="Enter a ticker to predict asset price 5 years in the future.",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  )
60
 
61
  # Launch the interface
 
55
  inputs="text",
56
  outputs="html",
57
  title="Asset Price Prediction",
58
+ description="""This program uses Deep Learning to predict the price of any asset on Yahoo Finance 1 year in the future.
59
+
60
+ Disclosures
61
+ 1. Purpose
62
+ This code is designed to estimate the price of a user-inputted asset in one year. It is publicly available and intended for informational and educational purposes only.
63
+
64
+ 2. Data Sources
65
+ The code utilizes the yfinance library to access data from Yahoo Finance. The user acknowledges that the use of Yahoo Finance data is subject to Yahoo's terms of service, and the author of this code does not have any specific agreement with Yahoo Finance.
66
+
67
+ 3. User Input
68
+ Users are responsible for providing valid input in the form of a ticker symbol. The code does not validate the input, and incorrect or invalid input may lead to errors or inaccurate predictions.
69
+
70
+ 4. Predictive Model Disclaimer
71
+ The predictions generated by this code are based on limited historical data and a mathematical model. They are provided for informational purposes only and should not be construed as financial or investment advice. Users should consult with a qualified financial professional before making any investment decisions.
72
+
73
+ 5. Licensing
74
+ This code is publicly available under the GNU General Public License v3.0 (GPL-3.0). Users must comply with the terms of this license when using, modifying, or distributing the code.
75
+
76
+ 6. Risk Factors
77
+ Users are cautioned that the predictions generated by this code are speculative and may not accurately reflect future asset prices. Reliance on these predictions for investment decisions may result in financial loss. The author of this code is not responsible for any investment decisions or financial losses incurred by users.
78
+
79
+ 7. Privacy
80
+ No personal or sensitive information is collected, stored, or processed by this code.
81
+
82
+ 8. Limitation of Liability
83
+ The author of this code makes no warranties or representations regarding the accuracy, reliability, or completeness of the predictions or any other information provided by this code. Users use this code at their own risk, and the author shall not be liable for any direct, indirect, incidental, or consequential damages arising from its use.""",
84
  )
85
 
86
  # Launch the interface