Not-Adam commited on
Commit
1dbb4f1
·
verified ·
1 Parent(s): d64eeb1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -167,6 +167,7 @@ def get_predicted_attributes(image_urls, category):
167
  responses = pipe(image_urls, candidate_labels=values_formatted)
168
  result = [response[0]['label'].split(", clothing:")[0] for response in responses]
169
  common_result.append(Counter(result).most_common(1))
 
170
 
171
  # If attribute is details, then remove the obtained label from the values, and get the next most common
172
  if attribute == "details":
@@ -174,6 +175,7 @@ def get_predicted_attributes(image_urls, 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
 
 
167
  responses = pipe(image_urls, candidate_labels=values_formatted)
168
  result = [response[0]['label'].split(", clothing:")[0] for response in responses]
169
  common_result.append(Counter(result).most_common(1))
170
+ print("Common Result:", common_result)
171
 
172
  # If attribute is details, then remove the obtained label from the values, and get the next most common
173
  if attribute == "details":
 
175
  responses = pipe(image_urls, candidate_labels=values_formatted)
176
  i = 0
177
  while len(responses) > 0 and responses[0][0]['score'] > 0.8 and i < 2:
178
+ print("Common Result:", common_result)
179
  result = [response[0]['label'].split(", clothing:")[0] for response in responses]
180
  common_result.append(Counter(result).most_common(1))
181