No1r97 commited on
Commit
32bab82
1 Parent(s): a7c500e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -312,9 +312,12 @@ demo = gr.Interface(
312
 
313
  This model is finetuned on Llama2-7b-chat-hf with LoRA on the past year's DOW30 market data. Inference in this demo uses fp16 and **welcomes any ticker symbol**.
314
  Company profile & Market news & Basic financials & Stock prices are retrieved using **yfinance & finnhub**.
315
- This is just a demo showing what this model is capable of. Results inferred from randomly chosen news can be strongly biased.
316
  For more detailed and customized implementation, refer to our FinGPT project: <https://github.com/AI4Finance-Foundation/FinGPT>
317
 
 
 
 
 
318
  **Disclaimer: Nothing herein is financial advice, and NOT a recommendation to trade real money. Please use common sense and always first consult a professional before trading or investing.**
319
  """
320
  )
 
312
 
313
  This model is finetuned on Llama2-7b-chat-hf with LoRA on the past year's DOW30 market data. Inference in this demo uses fp16 and **welcomes any ticker symbol**.
314
  Company profile & Market news & Basic financials & Stock prices are retrieved using **yfinance & finnhub**.
 
315
  For more detailed and customized implementation, refer to our FinGPT project: <https://github.com/AI4Finance-Foundation/FinGPT>
316
 
317
+ ⚠️Warning: This is just a demo showing what this model is capable of. During each individual inference, company news is **randomly sampled** from all the news from designated weeks, which might result in **unstable predictions**.
318
+ We suggest users deploy the [original model](https://huggingface.co/FinGPT/fingpt-forecaster_dow30_llama2-7b_lora) or clone this space and inference with more carefully selected news in their own favorable ways.
319
+ Setting do_sample=False or modifying the temperature during the generation process also helps stabilize the prediction result.
320
+
321
  **Disclaimer: Nothing herein is financial advice, and NOT a recommendation to trade real money. Please use common sense and always first consult a professional before trading or investing.**
322
  """
323
  )