update config

This commit is contained in:
shuaiqing 2024-01-14 16:54:10 +08:00
parent 88c828e69c
commit b61bf7148d
2 changed files with 5 additions and 1 deletions

View File

@ -171,6 +171,9 @@ class CfgNode(dict):
return "{}"
for k, v in self.items():
seperator = "\n" if isinstance(v, CfgNode) and len(v.keys()) > 0 else " "
if isinstance(v, float):
attr_str = "{}:{}{:f}".format(str(k), seperator, v)
else:
attr_str = "{}:{}{}".format(str(k), seperator, str(v))
attr_str = _indent(attr_str, 4)
s.append(attr_str)

View File

@ -16,6 +16,7 @@ setup(
# test_suite='setup.test_all',
packages=[
'easymocap',
'easymocap.config',
'easymocap.dataset',
'easymocap.smplmodel',
'easymocap.pyfitting',