Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Model manager tests #307

Merged
merged 38 commits into from
Feb 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
02e8db3
added some exception handling
Jan 17, 2019
e0b4e59
changed urls
Jan 17, 2019
7a50d3e
remove invalid permission check
Jan 17, 2019
a8ebf26
added docker volume for models
Jan 17, 2019
75bf059
a lot of fixes
Jan 17, 2019
0752d6e
support of creating models from share
Jan 18, 2019
5bde4eb
fix
Jan 18, 2019
f345a3f
adjust API
Jan 18, 2019
d42646b
minor fix
Jan 18, 2019
50435d1
added some permission checks
Jan 18, 2019
64a6a33
Client part for model manager (#288)
bsekachev Jan 18, 2019
ccdc844
Merge branch 'az/model_manager' of https://github.com/opencv/cvat int…
Jan 18, 2019
4b39e3d
some fixes
Jan 18, 2019
53e3638
fixed some part of codacy issues
Jan 21, 2019
8ea9a1f
fixed some codacy issues
Jan 22, 2019
ca94bbf
fixed some codacy issues
Jan 22, 2019
4c8038e
fix codacy issues and added permission rules
Jan 23, 2019
8e74d9b
minor fix
Jan 23, 2019
a6e44b0
added eslint config
Jan 23, 2019
b5207ad
fixed 3 codacy issues
Jan 24, 2019
3a85332
added missed file
Jan 24, 2019
814cb9b
removed unsued var
Jan 24, 2019
d162ebd
fixed comments
Jan 24, 2019
9132942
removed eslint config.
Jan 24, 2019
8e128b7
added pytorch to framework enum
Jan 25, 2019
fcf2b97
Merge remote-tracking branch 'origin/develop' into az/model_manager
Jan 25, 2019
09df009
fixed codacy issues
Jan 25, 2019
ac41936
fixed part of codacy issues
Jan 28, 2019
26d66ec
fixed part of codacy issues
Jan 28, 2019
073face
fixed part of codacy issues
Jan 28, 2019
8055f50
used custom name for confirmation function
Jan 28, 2019
e790c91
updated Readme
Jan 29, 2019
dcb355b
minor refactoring of auto_annotation
Jan 24, 2019
70eb367
wip
Jan 30, 2019
af2a49a
added test
Jan 31, 2019
ddac088
Merge remote-tracking branch 'origin' into model_manager_tests
Jan 31, 2019
7087f37
fix
Jan 31, 2019
96d56d1
fixed codacy issues
Feb 1, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cvat/apps/auto_annotation/image_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __getitem__(self, i):

def __iter__(self):
for imagename in self.image_list:
yield imagename, self._load_image(imagename)
yield self._load_image(imagename)

def __len__(self):
return len(self.image_list)
Expand Down
Loading