You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assumes class name is in CamelCase and file name is the same
name but in snake_case.
Can be used for models and datasets.
'''
toks=re.findall('[A-Z][^A-Z]*', class_name)
toks= [tok.lower() fortokintoks]
file_name='_'.join(toks)
returnfile_name
For example, AMASSFitDataset is not supported. There might be an elegant way to do this by inspecting the name spaces of all the files in the library that this function should support, but to be honest a hardcoded dictionary might be better because it will at least fail in a predictable and easy to debug way.
The text was updated successfully, but these errors were encountered:
humor/humor/utils/logging.py
Lines 25 to 35 in b86c2d9
For example,
AMASSFitDataset
is not supported. There might be an elegant way to do this by inspecting the name spaces of all the files in the library that this function should support, but to be honest a hardcoded dictionary might be better because it will at least fail in a predictable and easy to debug way.The text was updated successfully, but these errors were encountered: