작성한 질문수
TensorFlow 2.0으로 배우는 딥러닝 입문
TensorFlow 2.0을 이용한 Char-RNN 구현
작성
·
345
1
colab에서 github에 있는 Char-RNN을 이용한 텍스트 생성 (TF v2 Keras Code) 를 실행하면 아래와 같은 에러 메시지가 나옵니다~ 어떻게 해결해야 할까요? ^^
FATAL Flags parsing error: Unknown command line flag 'f' Pass --helpshort or --helpfull to see help on flags.
An exception has occurred, use %tb to see the full traceback.
SystemExit: 1
답변 1
0
안녕하세요~. 반갑습니다.
코드 상단에 아래 코드를 추가하고 실행해보세요~.
from absl import flagsflags.DEFINE_string('f', '', 'kernel')
감사합니다~.