IssacStudent

Results 1 issues of IssacStudent

# 出现问题的模块 ./Baselines/BERT # 环境 CUDA:10.1 其余版本和类库按照README.md的Requirements配置。 # 表现 在运行到run_leven.py中加载NER模型的时候,会出现Segmentation fault (core dumped)。 ```python ner_model = model_class.from_pretrained( args.model_name_or_path, from_tf=bool(".ckpt" in args.model_name_or_path), config=config, cache_dir=args.cache_dir if args.cache_dir else None, ) ``` #...