Yilun Jin

Results 5 comments of Yilun Jin

@nrkarthikeyan Really appreciate your help!

@nrkarthikeyan I adopted the method you recommended but still resulting in large memory consumption in the repeated running. I found that the problem caused by function ' ClassificationMetric()', has possible...

I've solved the problem. The problem was caused by the code, `self.dataset = dataset self.classified_dataset = classified_dataset` Just use these codes to replace the original initial codes: ` def __init__(self,...

```python def chat_reviewer_main(args): reviewer1 = Reviewer(args=args) # 开始判断是路径还是文件: paper_list = [] if args.paper_path.endswith(".pdf"): paper_list.append(Paper(path=args.paper_path)) else: for root, dirs, files in os.walk(args.paper_path): print("root:", root, "dirs:", dirs, 'files:', files) # 当前目录路径 for...