Skip to content

Commit

Permalink
small change in file
Browse files Browse the repository at this point in the history
  • Loading branch information
someshfengde committed Mar 27, 2024
1 parent 4850390 commit eceedb7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions backend/app/make_it_rain.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
df = pd.read_csv("chebml_eval_data.csv")

#%%
df_filter = df[df['Source'] == "Clicnical Trials"].sample(n = 10)
chembl_data_debug = pd.DataFrame()
for i in tqdm(df_filter.iterrows()):
for i in tqdm(df.iterrows()):
url = f"http://127.0.0.1:8000/search?query={i[1]['Question']}"
data_store = {
"question": i[1]['Question'],
Expand Down

0 comments on commit eceedb7

Please sign in to comment.