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
Hello!
There is one function that I don't understand in /mean_teacher/utils.py def export(fn): mod = sys.modules[fn.__module__] if hasattr(mod, '__all__'): mod.__all__.append(fn.__name__) else: mod.__all__ = [fn.__name__] return fn
Look forward for your reply, thank you so much.
The text was updated successfully, but these errors were encountered:
Hello!
There is one function that I don't understand in /mean_teacher/utils.py
def export(fn): mod = sys.modules[fn.__module__] if hasattr(mod, '__all__'): mod.__all__.append(fn.__name__) else: mod.__all__ = [fn.__name__] return fn
Look forward for your reply, thank you so much.
The text was updated successfully, but these errors were encountered: