bkb2135 commited on
Commit
0dab7f8
·
1 Parent(s): c6ce978

Don't filter by username

Browse files
Files changed (1) hide show
  1. utils.py +3 -2
utils.py CHANGED
@@ -22,7 +22,7 @@ KEYS = ['_step','_timestamp','task','query','reference','challenge','topic','sub
22
  ABBREV_CHARS = 8
23
  ENTITY_CHOICES = ('identity', 'hotkey', 'coldkey')
24
  LOCAL_WANDB_PATH = './data/wandb'
25
- USERNAME = 'login19861986'
26
 
27
  # Initialize wandb with anonymous login
28
  wandb.login(anonymous='must')
@@ -382,7 +382,8 @@ def load_state_vars(username=USERNAME, percentile=0.95):
382
  # df_runs = df_runs.loc[df_runs.netuid.isin([1,61,102])] # Now we filter for the netuid tag in build_data
383
  st.toast(f'Loaded {len(df_runs)} runs')
384
 
385
- df_vali = df_runs.loc[df_runs.username == username]
 
386
 
387
  download_runs(time.time()//UPDATE_INTERVAL, df_vali)
388
 
 
22
  ABBREV_CHARS = 8
23
  ENTITY_CHOICES = ('identity', 'hotkey', 'coldkey')
24
  LOCAL_WANDB_PATH = './data/wandb'
25
+ USERNAME = 'OpenTenso'
26
 
27
  # Initialize wandb with anonymous login
28
  wandb.login(anonymous='must')
 
382
  # df_runs = df_runs.loc[df_runs.netuid.isin([1,61,102])] # Now we filter for the netuid tag in build_data
383
  st.toast(f'Loaded {len(df_runs)} runs')
384
 
385
+ # df_vali = df_runs.loc[df_runs.username == username] # Don't filter by only one user
386
+ df_vali = df_runs
387
 
388
  download_runs(time.time()//UPDATE_INTERVAL, df_vali)
389