Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvain-morin committed Feb 15, 2024
1 parent e9b1b9b commit 46f8cc7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/inat_vision_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ def bench_route(self):
ALL_SCORES = ""
TOTAL_OBS = 0

for observation_id in range(start, start + count):
print("TIME-EXP: score "+observation_id)
for i in range(start, start + count):
observation_id = str( i )
print("TIME-EXP: score " + observation_id)
START_TIME_TOTAL = time.time()
image_uuid = "downloaded-obs-" + observation_id
START_TIME_DOWNLOAD = time.time()
Expand Down

0 comments on commit 46f8cc7

Please sign in to comment.