mirror of https://github.com/JDAI-CV/fast-reid.git
Merge branch 'master' of github.com:L1aoXingyu/fast-reid
commit
ac6256887c
|
@ -4,7 +4,7 @@
|
|||
|
||||
Gitter: [fast-reid/community](https://gitter.im/fast-reid/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link)
|
||||
|
||||
FastReID is a research platform that implements state-of-the-art re-identification algorithms. It is a groud-up rewrite of the previous version, [reid strong baseline](https://github.com/michuanhaohao/reid-strong-baseline).
|
||||
FastReID is a research platform that implements state-of-the-art re-identification algorithms. It is a ground-up rewrite of the previous version, [reid strong baseline](https://github.com/michuanhaohao/reid-strong-baseline).
|
||||
|
||||
## What's New
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ class VeRiWild(ImageDataset):
|
|||
for idx, line in enumerate(img_list_lines):
|
||||
line = line.strip()
|
||||
vid = int(line.split('/')[0])
|
||||
imgid = line.split('/')[1]
|
||||
imgid = line.split('/')[1].split('.')[0]
|
||||
if is_train:
|
||||
vid = self.dataset_name + '_' + str(vid)
|
||||
dataset.append((self.imgid2imgpath[imgid], vid, self.imgid2camid[imgid]))
|
||||
|
|
Loading…
Reference in New Issue