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
while adet.data.builtin.py contains code in global scope (starting on line 81) which is meant to be run when executing the module from the shell. This causes ipykernel to explode when running any code that imports anything from adet.data in a Notebook or Google Colab. The simple solution is to hide the executable code in an if __name__ == '__main__' block.
The text was updated successfully, but these errors were encountered:
agoryuno
added a commit
to agoryuno/DeepSolo
that referenced
this issue
Sep 2, 2023
adet.data.__init__.py
contains an import:while
adet.data.builtin.py
contains code in global scope (starting on line 81) which is meant to be run when executing the module from the shell. This causesipykernel
to explode when running any code that imports anything fromadet.data
in a Notebook or Google Colab. The simple solution is to hide the executable code in anif __name__ == '__main__'
block.The text was updated successfully, but these errors were encountered: