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
feature/template_enhance 브랜치를 기준으로 작업을 해봤는데 src 이하의 디렉토리 구조를 이해하는데 좀 어려움이 있어서 다음의 변화가 있으면 좋을 것 같아 이슈로 올립니다.
data폴더를 src폴더 하위 'src/data'로 하고 gitignore에 추가.
config 폴더 삭제 및 config.yaml을 'src/config.yaml'에 위치하기.
argparser로 인자 줄 때 경로 정보는 절대 정보로 입력하여 넣기. (os.path.join 등으로)
util, model.py와 같이 src 바로 하위에 있지 않고 디렉토리 안에 들어가 있는 모듈 py의 경우 결국 argparser의 인자를 사용하기 때문에
애초에 처음부터 run.py에서 절대경로로 인자 값을 주면 os path not found error가 생기지 않습니다.
의견 있으시면 자유롭게 답변해주세요
The text was updated successfully, but these errors were encountered:
feature/template_enhance 브랜치를 기준으로 작업을 해봤는데 src 이하의 디렉토리 구조를 이해하는데 좀 어려움이 있어서 다음의 변화가 있으면 좋을 것 같아 이슈로 올립니다.
data폴더를 src폴더 하위 'src/data'로 하고 gitignore에 추가.
config 폴더 삭제 및 config.yaml을 'src/config.yaml'에 위치하기.
argparser로 인자 줄 때 경로 정보는 절대 정보로 입력하여 넣기. (os.path.join 등으로)
util, model.py와 같이 src 바로 하위에 있지 않고 디렉토리 안에 들어가 있는 모듈 py의 경우 결국 argparser의 인자를 사용하기 때문에
애초에 처음부터 run.py에서 절대경로로 인자 값을 주면 os path not found error가 생기지 않습니다.
의견 있으시면 자유롭게 답변해주세요
The text was updated successfully, but these errors were encountered: