当前位置: 首页 > article >正文

机器学习-问答题准备(英文)-更新中

第一章 入门

  1. How would you define Machine Learning?
    Machine Learning is about building systems that can learn from data. Learning means getting better at some task, given some performance measure.

  2. Can you name four types of problems where it shines?
    To replace long lists of hand-tuned rules, like filtering spam emails; to make better recommendations for customers; to build systems that adapt to fluctuating environments; to recognize voice and pictures.

  3. What is a labeled training set?
    It contains desired solution (a.k.a. a label) for each instance.

  4. What are the two most common supervised tasks?
    Regression and classification.

  5. Can you name four common unsupervised tasks?
    Clustering, dimensionality reduction, visualization and association rule learning.

  6. What type of Machine Learning algorithm would you use to allow a robot to walk in various unknown terrains?
    Reinforcement learning.

  7. What type of algorithm would you use to segment your customers into multiple groups?
    If you don’t know what groups you would like to have, then you can use clustering, otherwise use classification instead.

  8. Would you frame the problem of spam detection as a supervised learning problem or an unsupervised learning problem?
    It’s a supercised learning problem.

  9. What is an online learning system?
    It can learn incrementally. This makes it capable of adapting rapidly ro both changing data and autonomous systems, and of training on very large quantities of data.

  10. What is out-of-core learning?
    Out-of-core algorithms can handle vast quantities of data that cannot fit in a computer’s main memory. An out-of-core learning algorithm chops the data into mini-batches and uses online learning techniques to learn from these minibatches.

  11. What type of learning algorithm relies on a similarity measure to make predictions?
    Instance-based learning.

  12. What is the difference between a model parameter and a learning algorithm’s hyperparameter?
    A model has one or more model parameters that determine what it will predict given a new instance, for example, the slope of a linear model. A hyperparameter is a parameter of the learning algorithm itself, not of the model, for example, the amount of regularization to apply.

  13. What do model-based learning algorithms search for? What is the most common strategy they use to succeed? How do they make predictions?
    They search for an optimal value for the model parameters such that the model will generalize well to new instances. We usually train such systems by minimizing a cost function that measures how bad the system is at making predictions on training data, plus a penalty for model complexity if the model is regularized. To make predictions, we feed the new instance’s features into the model’s prediction function, using the parameter values found by the learning system.

  14. Can you name four of the main challenges in Machine Learning?
    Lack of data, poor data quality, nonrepresentative data, excessively complex models that overfit the data.

  15. If your model performs great on the training data but generalizes poorly to new instances, what is happening? Can you name three possible solutions?
    It seems that the model is likely overfitting the training data. Possible solutions such as getting more data, simplifying the model, and reducing the noise in the training data.

  16. What is a test set, and why would you want to use it?
    A test set is used to estimate the generalization error that a model will make on new instances, before the model is launched in production.

  17. What is the purpose of a validation set?
    A validation set is used to compare models. It helps to select the best model and tune the hyperparameters.

  18. What is the train-dev set, when do you need it, and how do you use it?
    The train-dev set is a part of the training set that’s held out(the model is not trained on it).
    It’s used when there is a risk of mismatch between the training data the validation plus test data.
    The model is trained on the rest of the training set, and evaluated on both the train-dev set and the validation set.If the model performs well on the traing set but not on the train-dev set, then the model is overfitting the traing set. If the model performs well on train-dev set, but not on the validation set, then there is probably a significant data mismatch between the traing data and the validation + test data.

  19. What can go wrong if you tune hyperparameters using the test set?
    If you do so, you risk overfitting the test set and the generalization error will be optimistic.


http://www.kler.cn/news/9874.html

相关文章:

  • 用JavaScript实现最大子数组和的动态规划算法
  • Msray-Plus采集工具让您的市场营销更加简单,让您的营销成果更加显著
  • NumPy 秘籍中文第二版:十二、使用 NumPy 进行探索性和预测性数据分析
  • 吐血奉献精心整理的一大波数据集
  • 【C#】程序和sql速度对比
  • 【消息队列】聊一下生产者消息发送流程
  • 7nm舱泊一体SoC的新玩家
  • 三大前端框架Vue, Angular, React
  • 月薪过 3w 的 软件测试工程师 都是怎么做到的?
  • Spring Security 6.0系列【16】授权篇之访问控制
  • 国网B接口调阅实时视频规范解读和代码示例分析
  • 代码随想录_二叉树_leetcode236
  • Java阶段一Day19
  • 值栈的概念和作用是什么?
  • 关于iptables封禁国外IP方法
  • 多模态模型技术综述
  • 第一章 webpack与构建发展简史
  • 【Spring】@ConfigurationProperties 注解的简单使用和介绍
  • Hive概论、架构和基本操作
  • ios逆向工具有那些
  • 2022国赛32:NFS服务
  • 【数据库】面试题合集
  • 【JS运算】分组求和/平均值(reduce函数)
  • 2023 年 MQTT 协议的 7 个技术趋势|描绘物联网的未来
  • 使用Nginx反向代理OpenAI API
  • python内置方法的使用方法及示例
  • Python 小型项目大全 46~50
  • 怎样做好仓库管理?必须记住这八条!
  • 文件:IO流
  • 黑马2023JavaScript笔记