admin 管理员组 文章数量: 1184232
文章数量: 1184232
Suppose you are running a sliding window detector to find
text in images. Your input images are 1000x1000 pixels. You
will run your sliding windows detector at two scales, 10x10
and 20x20 (i.e., you will run your classifier on lots of 10x10
patches to decide if they contain text or not; and also on
lots of 20x20 patches), and you will "step" your detector by 2
pixels each time. About how many times will you end up
running your classifier on a single 1000x1000 test set image?
答案D
250,000
100,000
1,000,000
500,000
Suppose that you just joined a product team that has been
developing a machine learning application, using m=1,000
training examples. You discover that you have the option of
hiring additional personnel to help collect and label data.
You estimate that you would have to pay each of the labellers
$10 per hour, and that each labeller can label 4 examples per
minute. About how much will it cost to hire labellers to
label 10,000 new training examples?
答案C
$600
$250
$400
$10,000
What are the benefits of performing a ceiling analysis? Check all that apply.
答案CD
If we have a low-performing component, the ceiling analysis can tell us if that component has a high bias problem or a high variance problem.
It is a way of providing additional training data to the algorithm.
It helps us decide on allocation of resources in terms of which component in a machine learning pipeline to spend more effort on.
It can help indicate that certain components of a system might not be worth a significant amount of work improving, because even if it had perfect performance its impact on the overall system may be small.
Suppose you are building an object classifier, that takes as input an image, and recognizes that image as either containing a car (y=1) or not (y=0). For example, here are a positive example and a negative example:
After carefully analyzing the performance of your algorithm, you conclude that you need more positive (y=1) training examples. Which of the following might be a good way to get additional positive examples?
答案A
Apply translations, distortions, and rotations to the images already in your training set.
Select two car images and average them to make a third example.
Take a few images from your training set, and add random, gaussian noise to every pixel.
Make two copies of each image in the training set; this immediately doubles your training set size.
Suppose you have a PhotoOCR system, where you have the following pipeline:
You have decided to perform a ceiling analysis on this system, and find the following:
Which of the following statements are true?
答案AB
If the text detection system was trained using gradient descent, running gradient descent for more iterations is unlikely to help much.
If we conclude that the character recognition's errors are mostly due to the character recognition system having high variance, then it may be worth significant effort obtaining additional training data for character recognition.
We should dedicate significant effort to collecting additional training data for the text detection system.
The least promising component to work on is the character recognition system, since it is already obtaining 100% accuracy.
本文标签: learning machine Coursera Quiz OCR
版权声明:本文标题:Coursera Machine Learning 第十一周 quiz Application: Photo OCR 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://roclinux.cn/b/1754940311a3052445.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
Structure-Aware Transformer for Graph Representation Learning(ICML22)摘要Transformer 架构最近在图表示学习中受到越
ABSTRACT当原始图结构中存在噪声连接时,gnn的性能会下降;此外,gnn对显式结构的依赖使其无法应用于一般的非结构化场景。为了解决这些问题,最近出现的深度图结构学习(G
Machine Learning A Bayesian_and Optimization Perspective(MLBOP)机器学习:基于贝叶斯的优化。关注公号【开发小鸽】,回复“贝叶斯”。获取
本文论证了值分布的基本重要性:强化学习智能体收到的随机回报的分布。这与强化学习的常见方法相反,后者对这种回报或价值的期望进行建模。尽管已经建立了研究价值分布的文献体系,但迄今为止ÿ
近日看一本关于Reinforcement Learning的入门书《Deep Reinforcement Learning Hands On》,甚有收获。该书由PacktPublishing在2018年出版,它不仅介绍了RL的基础理论,而且
The Deep Learning Compiler: A Comprehensive SurveyReferences https:arxivabs2002.03794v4
转载公众号 深度学习与图网络 2020新综述-Machine Learning on Graphs:A Model and Comprehensive Taxonomy 【斯坦福谷歌】最新《图机器学习》综述论文,
因为里面的图片实在是多,就用贴图代替了~
A Comprehensive survey of Deep Learning for image CaptionINTRODUCTION作者通过归纳不同的方面,将目前主流的caption方法归类为以下几种&
Comprehensive Privacy Analysis of Deep Learning(针对深度学习的白盒成员推理攻击)1. Abstract 设计白盒推理攻击对深度学习模型进
【ICML2007】Learning to Rank: From Pairwise Approach to Listwise Approach 原文链接 目录 Abstract intro probability models Permu
文章目录 摘要 1.引言 2.相关工作 3.提出的方法(PROVID) 3.1 概述 3.2 外观特征提取(by CNN) 3.3 基于SNN的车牌识别 3.4 基于时空关系重排序 4.实验 4.1 数据集 4.2 实验设置 4.3 车牌验
《A Spatiotemporal Deep Learning Approach for Unsupervised Anomaly Detection in Cloud Systems》-2020-TNNLS-B类背景整体结构GraphL
知识点 了解few-shot learning: 理解1,理解2 欧式距离Contribution We present multimodal social relation datasets, which
ICLR 2018的一篇文献,看Multiple Instance Active Learning for Object Detection的在评价性能的时候看到了这个模型,由于是第一次接触主动学
Abstract 深度RL已经为复杂的任务提供了精通的控制器。但是,这些控制器的内存有限,并且依赖于能够在每个决策点感知完整的游戏画面。为了解决这些缺点,本文研究了用循环LS
摘要深度强化学习已经为复杂任务提供了精准的控制器。但是,这些控制器的内存有限,并且依赖于能够在每个决策点感知完整的游戏画面。为了解决这些缺点,本文研究了用循环LSTM替换卷
按键精灵通过实践,也可以接入百度的OCR,百度OCR免费额度为,每日50000次普通调用,对于日常应用已经足够,返回识别内容时间在
1.安装在GitHub上搜索下载tesseract-ocr-setup-4.00.00dev.exe安装文件双击安装,一路next>>,需注意要选择语言包,mat
文章目录 综述:基于深度学习的文本分类 《Deep Learning Based Text Classification: A Comprehensive Review》论文总结(一) 总结 1.Introduction 文本分类任务 2.
发表评论