AnyegaAlex commited on
Commit
599bf50
Β·
1 Parent(s): b79325c

info parameter is still being passed to gr.File thus we removed it

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -737,10 +737,9 @@ with gr.Blocks(title="Stock Prediction", theme=gr.themes.Soft()) as demo:
737
  with gr.Tab("πŸ“‚ Batch Prediction"):
738
  with gr.Row():
739
  batch_file = gr.File(
740
- label="Upload CSV File",
741
  file_types=[".csv"],
742
  type="filepath",
743
- info="CSV should contain: Date, Open, High, Low, Close, Volume, News"
744
  )
745
 
746
  with gr.Row():
 
737
  with gr.Tab("πŸ“‚ Batch Prediction"):
738
  with gr.Row():
739
  batch_file = gr.File(
740
+ label="Upload CSV File (CSV should contain: Date, Open, High, Low, Close, Volume, News)",
741
  file_types=[".csv"],
742
  type="filepath",
 
743
  )
744
 
745
  with gr.Row():