-
Notifications
You must be signed in to change notification settings - Fork 113
/
libs.py
24 lines (21 loc) · 838 Bytes
/
libs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Added a new paper to the list.
# Author: Yinyu Nie
# Updated data: 23 June, 2021
import argparse
existing_topics = ['3D Detection & Segmentation',
'Shape Representation',
'Shape & Scene Completion',
'Shape Reconstruction',
'3D Scene Understanding',
'3D Scene Reconstruction',
'NeRF',
'About Human Body',
'General Methods',
'Others',
'Survey, Resources and Tools']
class ParseKwargs(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
setattr(namespace, self.dest, dict())
for value in values:
key, value = value.split('=')
getattr(namespace, self.dest)[key] = value