-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
16 lines (14 loc) · 1.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup, find_packages
setup(name='SpCL',
version='1.0.0',
description='Self-paced Contrastive Learning with Hybrid Memory for Domain Adaptive Object Re-ID',
author='Yixiao Ge',
author_email='geyixiao831@gmail.com',
url='https://github.com/yxgeee/SpCL',
packages=find_packages(),
keywords=[
'Unsupervised Learning',
'Unsupervised Domain Adaptation',
'Contrastive Learning',
'Object Re-identification'
])