Xiaomeng Zhao

Results 690 comments of Xiaomeng Zhao

已修复 https://github.com/opendatalab/MinerU/pull/785 ![image](https://github.com/user-attachments/assets/6eb17240-8868-4c44-8f42-f7d24ad13012)

预编译包只支持python3.10

可以参考https://github.com/opendatalab/MinerU/blob/master/README_zh-CN.md#%E5%BF%AB%E9%80%9F%E5%BC%80%E5%A7%8B 中的步骤进行安装

很有可能是黄色的标注底色影响了视觉模型的判断,这个公式被识别成了title区块。如果可以的话,建议拿没有黄色标注的pdf再试一下。

项目不兼容numpy2.x,需要安装1.x版本,正常安装项目会自动处理依赖版本,请按readme执行操作。

> 我这边就是按照readme的步骤来安装的,在解决了fairscale模块的问题后,又出现了缺少fvcore.transforms模块的问题,然后通过conda安装了fvcore之后,就出现了上述这个ValueError的问题,请问有什么解决方法吗 正常安装流程不应该缺少这么多依赖,而且十分不建议使用conda安装任何依赖,项目所有依赖都应该通过pip安装

> 我刚刚检查了在MinerU环境下的numpy版本为1.26.4,并非2.x版本,仍然出现上述报错 上述报错的原因很明确是由于numpy2.x导致的,1.26.4不会触发这个问题

>If using np.array(obj, copy=False) replace it with np.asarray(obj) to allow a copy when needed (no behavior change in NumPy 1.x). For more details, see https://numpy.org/devdocs/numpy_2_0_migration_guide.html#adapting-to-changes-in-the-copy-keyword. 报错信息里应该很清楚,1.x的numpy是输出不了这个的

看numpy的版本应该使用pip list 而不是conda list吧