diff --git a/AWESOME_REID.html b/AWESOME_REID.html
index 8fbd70b..e09fc95 100644
--- a/AWESOME_REID.html
+++ b/AWESOME_REID.html
@@ -195,6 +195,7 @@
CVPR 2019
+- Patch-based Discriminative Feature Learning for Unsupervised Person Re-identification. [paper] [code]
- Joint Discriminative and Generative Learning for Person Re-identification. [paper][code]
- Invariance Matters: Exemplar Memory for Domain Adaptive Person Re-identification. [paper][code]
- Dissecting Person Re-identification from the Viewpoint of Viewpoint. [paper][code]
diff --git a/_modules/torchreid/data/transforms.html b/_modules/torchreid/data/transforms.html
index f977d3a..57b0630 100644
--- a/_modules/torchreid/data/transforms.html
+++ b/_modules/torchreid/data/transforms.html
@@ -311,13 +311,17 @@
norm_std (list): normalization standard deviation values. Default is
ImageNet standard deviation values.
"""
+ if transforms is None:
+ transforms = []
+
if isinstance(transforms, str):
transforms = [transforms]
if not isinstance(transforms, list):
raise ValueError('transforms must be a list of strings, but found to be {}'.format(type(transforms)))
-
- transforms = [t.lower() for t in transforms]
+
+ if len(transforms) > 0:
+ transforms = [t.lower() for t in transforms]
normalize = Normalize(mean=norm_mean, std=norm_std)
diff --git a/_sources/AWESOME_REID.md.txt b/_sources/AWESOME_REID.md.txt
index 03bc7dc..650d71c 100644
--- a/_sources/AWESOME_REID.md.txt
+++ b/_sources/AWESOME_REID.md.txt
@@ -10,6 +10,7 @@ Here is a collection of ReID-related research with links to papers and code. You
- **[ArXiv](#arxiv)**
### CVPR 2019
+- Patch-based Discriminative Feature Learning for Unsupervised Person Re-identification. [[paper](https://kovenyu.com/papers/2019_CVPR_PEDAL.pdf)] [[code](https://github.com/QizeYang/PAUL)]
- Joint Discriminative and Generative Learning for Person Re-identification. [[paper](https://arxiv.org/abs/1904.07223)][[code](https://github.com/NVlabs/DG-Net)]
- Invariance Matters: Exemplar Memory for Domain Adaptive Person Re-identification. [[paper](https://arxiv.org/abs/1904.01990)][[code](https://github.com/zhunzhong07/ECN)]
- Dissecting Person Re-identification from the Viewpoint of Viewpoint. [[paper](https://arxiv.org/abs/1812.02162)][[code](https://github.com/sxzrt/Dissecting-Person-Re-ID-from-the-Viewpoint-of-Viewpoint)]