WoodLB commited on
Commit
ac157cd
·
1 Parent(s): 2c938a2

finished app no frills

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -113,7 +113,7 @@ def train_and_inference(api_key, ontology_id, model_run_id):
113
  if data_split not in ['training', 'validation']: # we are skipping 'test' for now
114
  continue
115
 
116
- image_url = f"{entry['Labeled Data'].split('.')[-2]}.jpg"
117
  label = entry['Label']['classifications'][0]['answer']['value']
118
 
119
  destination_folder = os.path.join(BASE_DIR, data_split, label)
 
113
  if data_split not in ['training', 'validation']: # we are skipping 'test' for now
114
  continue
115
 
116
+ image_url = f"{entry['Labeled Data'].split('?')[0]}"
117
  label = entry['Label']['classifications'][0]['answer']['value']
118
 
119
  destination_folder = os.path.join(BASE_DIR, data_split, label)