dilithjay commited on
Commit
8d5ea31
·
1 Parent(s): f79720b

Add app title

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -86,6 +86,7 @@ def find_expression(dataset_name: str):
86
  print(f"Buffer size new = {len(data_buffer)}.")
87
 
88
  agent, optimizer, loss = train_iter(agent, optimizer, data_buffer)
 
89
 
90
  i_str = str(i).rjust(3, "0")
91
  if models_dir:
@@ -110,7 +111,7 @@ def find_expression(dataset_name: str):
110
  yield tree, top_5_str
111
 
112
 
113
- with gr.Blocks() as demo:
114
  gr.Markdown("# IndexRL")
115
  meta_data_df = pd.read_csv(meta_data_file)
116
 
 
86
  print(f"Buffer size new = {len(data_buffer)}.")
87
 
88
  agent, optimizer, loss = train_iter(agent, optimizer, data_buffer)
89
+ print("Loss:", loss)
90
 
91
  i_str = str(i).rjust(3, "0")
92
  if models_dir:
 
111
  yield tree, top_5_str
112
 
113
 
114
+ with gr.Blocks(title="IndexRL") as demo:
115
  gr.Markdown("# IndexRL")
116
  meta_data_df = pd.read_csv(meta_data_file)
117