Skip to content

Commit 9ff1f80

Browse files
committed
updated paper link
1 parent b3938d7 commit 9ff1f80

File tree

6 files changed

+11
-26
lines changed

6 files changed

+11
-26
lines changed

recognition/arcface_torch/README.md

-8
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,4 @@ More details see
164164
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
165165
year={2022}
166166
}
167-
@inproceedings{an2020partical_fc,
168-
title={Partial FC: Training 10 Million Identities on a Single Machine},
169-
author={An, Xiang and Zhu, Xuhan and Xiao, Yang and Wu, Lan and Zhang, Ming and Gao, Yuan and Qin, Bin and
170-
Zhang, Debing and Fu Ying},
171-
booktitle={Proceedings of International Conference on Computer Vision Workshop},
172-
pages={1445-1449},
173-
year={2020}
174-
}
175167
```

recognition/arcface_torch/partial_fc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class PartialFC(torch.nn.Module):
1010
"""
11-
https://arxiv.org/abs/2010.05222
11+
https://arxiv.org/abs/2203.15565
1212
A distributed sparsely updating variant of the FC layer, named Partial FC (PFC).
1313
1414
When sample rate less than 1, in each iteration, positive class centers and a random subset of

recognition/partial_fc/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Partial FC is a distributed deep learning training framework for face recognitio
55

66

77
## Contents
8-
[Partial FC](https://arxiv.org/abs/2010.05222)
8+
[Partial FC](https://arxiv.org/abs/2203.15565)
99
- [Largest Face Recognition Dataset: **Glint360k**](#Glint360K)
1010
- [Docker](#Docker)
1111
- [Performance On Million Identities](#Benchmark)
@@ -144,15 +144,15 @@ The torrent has been released.
144144
## Citation
145145
If you find Partial-FC or Glint360K useful in your research, please consider to cite the following related paper:
146146

147-
[Partial FC](https://arxiv.org/abs/2010.05222)
147+
[Partial FC](https://arxiv.org/abs/2203.15565)
148148
```
149-
@inproceedings{an2020partical_fc,
150-
title={Partial FC: Training 10 Million Identities on a Single Machine},
151-
author={An, Xiang and Zhu, Xuhan and Xiao, Yang and Wu, Lan and Zhang, Ming and Gao, Yuan and Qin, Bin and
152-
Zhang, Debing and Fu Ying},
153-
booktitle={Arxiv 2010.05222},
154-
year={2020}
149+
@inproceedings{an2022pfc,
150+
title={Killing Two Birds with One Stone: Efficient and Robust Training of Face Recognition CNNs by Partial FC},
151+
author={An, Xiang and Deng, Jiangkang and Guo, Jia and Feng, Ziyong and Zhu, Xuhan and Jing, Yang and Tongliang, Liu},
152+
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
153+
year={2022}
155154
}
155+
156156
```
157157

158158

recognition/partial_fc/mxnet/README_CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 目录
22
## Contents
3-
[Partial FC](https://arxiv.org/abs/2010.05222)
3+
[Partial FC](https://arxiv.org/abs/2203.15565)
44
- [如何安装](#如何安装)
55
- [如何运行](#如何运行)
66
- [错误排查](#错误排查)

recognition/partial_fc/mxnet/memory_module.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class SampleDistributeModule(object):
1919
RTX2080Ti can complete classification tasks with 100 million of identities.
2020
2121
See the original paper:
22-
https://arxiv.org/abs/2010.05222
22+
https://arxiv.org/abs/2203.15565
2323
2424
Parameters
2525
----------

recognition/partial_fc/mxnet/train_memory.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
"""
2-
Author: {Xiang An, XuHan Zhu, Yang Xiao} in DeepGlint,
3-
Partial FC: Training 10 Million Identities on a Single Machine
4-
See the original paper:
5-
https://arxiv.org/abs/2010.05222
6-
"""
7-
81
import argparse
92
import logging
103
import os

0 commit comments

Comments
 (0)