Not-Adam commited on
Commit
3daa7f2
·
verified ·
1 Parent(s): 8cef692
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -170,13 +170,14 @@ def get_predicted_attributes(image_urls, category):
170
 
171
  # If attribute is details, then remove the obtained label from the values, and get the next most common
172
  if attribute == "details":
173
- values_formatted.remove(result[0])
174
  responses = pipe(image_urls, candidate_labels=values_formatted)
175
  i = 0
176
  while len(responses) > 0 and responses[0][0]['score'] > 0.8 and i < 2:
177
  result = [response[0]['label'].split(", clothing:")[0] for response in responses]
178
  common_result.append(Counter(result).most_common(1))
179
 
 
180
  responses = pipe(image_urls, candidate_labels=values_formatted)
181
  i += 1
182
 
 
170
 
171
  # If attribute is details, then remove the obtained label from the values, and get the next most common
172
  if attribute == "details":
173
+ values_formatted.remove(result[0] + f", clothing: {category}")
174
  responses = pipe(image_urls, candidate_labels=values_formatted)
175
  i = 0
176
  while len(responses) > 0 and responses[0][0]['score'] > 0.8 and i < 2:
177
  result = [response[0]['label'].split(", clothing:")[0] for response in responses]
178
  common_result.append(Counter(result).most_common(1))
179
 
180
+ values_formatted.remove(result[0] + f", clothing: {category}")
181
  responses = pipe(image_urls, candidate_labels=values_formatted)
182
  i += 1
183