Robin An
Robin An
when load the local trained model, and do the model inference based on the given example, error occurs, below is the full information. anyone can helps, thanks. Exception has occurred:...
### Installation Method | 安装方法与平台 Pip Install (I used latest requirements.txt) ### Version | 版本 Latest | 最新版 ### OS | 操作系统 Windows ### Describe the bug | 简述 使用Arxiv论文翻译模块时,默认pdflatex编译器经常无法编译成功,建议默认tex编译器替换为xelatex。...
配置arxiv下载加速,并显示下载进度条
### Class | 类型 程序主体 ### Feature Request | 功能请求 直接使用原始arxiv_download代码,经常出现从网站下载文件失败的状况,建议配置国内访问加速。比较简易的更改方式是在requests.get请求参数中增加headers,配置方法为: ```python url = file_url headers = { 'User-Agent': 'Lynx' } response = requests.get(url, headers=headers, stream=True) ``` 另外,增加进度条可直观显示下载进度,可通过以下代码实现: ```python total_size...