utils폴더
__init__.py
__model__.py
main.py
...
여기서 untils 폴더 안에 있는 model.py에서 BetaVAE_H라는 함수를 main.py에 불러오고 싶을 때 -> from utils.model import BetaVAE_H
[ERROR] No module named 'utils'
해결방법1)
import os
os.getcwd() # 현재 경로 확인
os.chdir('가장 상위 폴더의 경로') # 가장 상위폴더의 경로로 바꿔주기
해결방법2) 추천!!
import os
os.chdir(os.path.dirname(os.path.abspath(file)))
[ERROR] An exception has occurred, use %tb to see the full traceback.
SystemExit: 2
해결방법)
args, unknown = parser.parse_known_args()
참조 : https://stackoverflow.com/questions/66434835/attributeerror-tuple-object-has-no-attribute-convert