PaddleClas icon indicating copy to clipboard operation
PaddleClas copied to clipboard

A treasure chest for visual classification and recognition powered by PaddlePaddle

Results 316 PaddleClas issues
Sort by recently updated
recently updated
newest added

文档image_recognition_pipeline/feature_extraction.md恢复训练部分关键字错误,文档中为-o Global.checkpoint,应该为-o Global.checkpoints #2300

contributor
status: proposed

1.添加自动划分gallery和query库代码 2.添加构建新场景库index索引库代码

@ZeyuChen @QingshuChen @procr @jacquesqiao @zhxfl Can we introduce new pair of Teacher/student models apart from what is provided in /configs/Imagenet/Distillition

欢迎您使用PaddleClas并反馈相关问题,非常感谢您对PaddleClas的贡献! 提出issue时,辛苦您提供以下信息,方便我们快速定位问题并及时有效地解决您的问题: 1. PaddleClas版本以及PaddlePaddle版本:请您提供您使用的版本号或分支信息,如PaddleClas release/2.2和PaddlePaddle 2.1.0 2. 涉及的其他产品使用的版本号:如您在使用PaddleClas的同时还在使用其他产品,如PaddleServing、PaddleInference等,请您提供其版本号 3. 训练环境信息: a. 具体操作系统,如Linux/Windows/MacOS b. Python版本号,如Python3.6/7/8 c. CUDA/cuDNN版本, 如CUDA10.2/cuDNN 7.6.5等 4. 完整的代码(相比于repo中代码,有改动的地方)、详细的错误信息及相关log

num_workers 设置16 但是还是单线程在载入数据 CPU使用率一致在25% ![image](https://user-images.githubusercontent.com/29864557/188530631-c57c976d-af9d-4b3a-ad87-f58a1eba177a.png) # global configs Global: checkpoints: pretrained_model: "../pretrained/PPLCNet_x0_25_pretrained" output_dir: H:/jobs/2/3min device: gpu save_interval: 5 eval_during_train: True eval_interval: 1 epochs: 360 print_batch_step: 10 use_visualdl: False # used...

修改思路在issue101中详细描述

contributor
status: proposed

请问我从数据库Mongo一张张读图片是要先写在硬盘image_root: ./dataset/flowers102/么,然后再进行训练, 有谁知道这还能优化不,能用内存存放数据集嘛,PaddleClas训练时必须ResNet50_vd.yaml从硬盘吗

AdaFace配置文件中提到的数据集需要在哪里下载啊,或者如何制作和分割数据集呢,有无参考demo?

代码位置:PaddleClas/deploy/python/predict_system.py 94-98行: ` # st1: get all detection results results = self.det_predictor.predict(img) # st2: add the whole image for recognition to improve recall results = self.append_self(results, img.shape) ` 这里,首先将主体检测的检测结果放入results,然后为了提高精度,又添加了一张整图的shape。这样理论上没有问题,如果主体检测推理的bbox都不合适的话,整张图像送入特征提取模型一定会得到一个比较好的结果,因为索引库的编码都是整图编码。但是经过多次实验发现,主体检测大多数情况下性能都不错,这样的话检测到效果最好的图像主体分数一般接近1,但是整图的分数会更高,之后nms会将最好的bbox过滤掉,最后输出的可视化结果如下图所示: ![image](https://user-images.githubusercontent.com/77494834/187343304-8ba1ce0b-d729-4965-bc58-49496c3c2488.png)...

在PaddleClas/deploy/paddleserving/recognition/test_cpp_serving_client.py文件中,导入库有这么一句 第18行 :`from paddle_serving_app.reader import *` 我测试了一下,在这个文件中把这句注释掉是不会报错的。 不太明白这句话存在的意义,请教一下。 或者是 paddle_serving_app.reader里面的某些个函数会在一些语境下用到?