- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在研究tensorflow的object_detection教程: https://github.com/tensorflow/models/blob/master/object_detection/object_detection_tutorial.ipynb
实际检测发生的部分是:
# Each box represents a part of the image where a particular object was detected.
boxes = detection_graph.get_tensor_by_name('detection_boxes:0')
# Each score represent how level of confidence for each of the objects.
# Score is shown on the result image, together with the class label.
scores = detection_graph.get_tensor_by_name('detection_scores:0')
classes = detection_graph.get_tensor_by_name('detection_classes:0')
num_detections = detection_graph.get_tensor_by_name('num_detections:0')
# Actual detection.
(boxes, scores, classes, num_detections) = sess.run(
[boxes, scores, classes, num_detections],
feed_dict={image_tensor: image_np_expanded})
但是,每个结果张量,即框、分数和类都恰好有 100 个条目长,我找不到任何线索,可以在哪里定义这个数字,但我想更改它。
有人可以向我提供这些信息或提示吗?
最诚挚的问候,
G·布朗
最佳答案
由于您使用的是卡住图表,因此您无法控制更改图表进行预测的方式。为了获得所需的结果,您可以使用硬阈值来减少边界框和误报的数量。
Suppose you want the predictions to be 80% sure than use thresholding to remove all prediction with `scores < 0.8`
注意:您可以通过其他方式控制它;为此,您需要获取原始检查点文件并使用export_inference_graph 文件。您需要更改行号 132-133。相同的概念适用于其他模型配置文件。 mobile ssd config file
关于python - 更改tensorflow object_detection教程中的结果数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45454126/
我正在使用来自 https://github.com/tensorflow/models 的 tensorflow 对象检测 api我正在尝试使用带有 tensorflow 的 open cv 制作一
我正在运行在 github 存储库 tensorflow/object_deteciton 中找到的典型代码: https://github.com/tensorflow/models/tree/ma
我在虚拟机上运行 Ubuntu。我通过目录 ~/models/research/中的终端安装了 object_detection protoc object_detection/protos/*.pr
我正在尝试训练 TF2 进行对象检测。当我运行 model_main_tf2.py 时,出现以下错误: Traceback (most recent call last): File "C:\Py
我正在按照本教程 ( https://towardsdatascience.com/creating-your-own-object-detector-ad69dda69c85 ) 创建我自己的对象检
当我检查张量板以观察训练性能时,只显示了 eval_0(蓝色)结果。 虽然它应该是一个单独的火车(橙色)和 eval(蓝色)结果,如 tensorboard 的网站(https://www.tenso
我在 github 的 python 中使用来自 tensorflow 的官方代码,但我没有通过该错误: import tensorflow as tf import cv2 cap = cv2.Vi
我正在运行 Tensorflow 对象检测 API,使用 object_detection/train.py 脚本训练我自己的检测器,发现 here 。问题是我不断收到CUDA_ERROR_OUT_O
我只是想知道对象检测 API 中可用检查点的“分类”和“检测”微调类型之间有什么区别。他们都有资格培养小说类吗?从此类训练中获得的检查点可以使用完全相同的 pipeline.config 进行进一步训
我正在使用Tensorflow对象检测API重新训练mobilenet v2 SSD,并且在Windows和Ubuntu环境中都遇到此特定错误。 我在下面的环境是带有python 3.5,cuda 9
我按照找到的例子 here .但是每当我输入命令“C:/Program Files/protoc/bin/protoc”object_detection/protos/.proto --python_
不确定这是一个错误(文件报告),还是我做错了什么。 系统信息: Linux 17.04 tensorflow 版本:1.9.0 python 版本:2.7.13 我使用的命令: gcloud ml-e
不确定这是一个错误(文件报告),还是我做错了什么。 系统信息: Linux 17.04 tensorflow 版本:1.9.0 python 版本:2.7.13 我使用的命令: gcloud ml-e
我正在尝试从网络摄像头拍摄的视频中检测人脸和眼睛。我在 ubuntu 11.10 上使用 eclipse 和 opencv-2.3.1。我想用 C/C++ 编写这段代码。我通过查看教程配置了 Ecli
我运行的时候出现这个错误 %cd !git clone --quiet https://github.com/tensorflow/models.git !apt-get install -qq pr
我正在通用集成学习范例中训练多个模型,目前我正在使用一些探测器,每次训练时我必须编辑每个检测器的配置文件,这显然会导致困惑,有几次我开始使用错误的配置进行训练文件。 作为解决方案,我正在尝试为 Goo
我是一名优秀的程序员,十分优秀!