Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
새로운 env에서 deberta large 모델의 tokenizer 생성이 가능하도록 변경.
주석 해제를 하면 바로 만들 수 있도록 코드 추가해두었습니다.
tokenizer parallelism 사용 가능하도록 환경 설정
현재 run_train.py파일 실행 시 아래와 같은 오류가 나오고 있습니다.
huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling parallelism to avoid deadlocks... To disable this warning, you can either: - Avoid using
tokenizersbefore the fork if possible - Explicitly set the environment variable TOKENIZERS_PARALLELISM=(true | false)
현재 kaggle top code들과 같이 tokenizer paralleism을 기본적으로 사용하는 env 설정하도록 추가하였습니다.