深度学习--深度学习术语表

---- from《Deep Learning with PyTorch》

  • Sample or input or data point: These mean particular instances of training a set. In our image classification problem seen in the last chapter, each image can be referred to as a sample, input, or data point.

  • Prediction or output: The value our algorithm generates as an output. For example, in our previous example our algorithm predicted a particular image as 0, which is the label given to cat, so the number 0 is our prediction or output.

  • Target or label: The actual tagged label for an image.

  • Loss value or prediction error: Some measure of distance between the predicted value and actual value. The smaller the value, the better the accuracy.

  • Classes: Possible set of values or labels for a given dataset. In the example in our previous chapter, we had two classes—cats and dogs.

  • Binary classification: A classification task where each input example should be classified as either one of the two exclusive categories.

  • Multi-class classification: A classification task where each input example can be classified into of more than two different categories.

  • Multi-label classification: An input example can be tagged with multiple labels—for example, tagging a restaurant with different types of food it serves such as Italian, Mexican, and Indian. Another commonly-used example is object detection in an image, where the algorithm identifies different objects in the image.

  • Scalar regression: Each input data point will be associated with one scalar quality, which is a number. Some examples could be predicting house prices, stock prices, and cricket scores.

  • Vector regression: Where the algorithm needs to predict more than one scalar quantity. One good example is when you try to identify the bounding box that contains the location of a fish in an image. In order to predict the bounding box, your algorithm needs to predict four scalar quantities denoting the edges of a square.

  • Batch: For most cases, we train our algorithm on a bunch of input samples referred to as the batch. The batch size varies generally from 2 to 256, depending on the GPU’s memory. The weights are also updated for each batch, so the algorithms tend to learn faster than when trained on a single example.

  • Epoch: Running the algorithm through a complete dataset is called an epoch. It is common to train (update the weights) for several epochs.

中文:

——-- 摘自《PyTorch深度学习》

  • 样本或输入或数据点:这些是指训练一个集合的特定实例。在我们上一章看到的图像分类问题中,每个图像都可以被称为样本、输入或数据点。
  • 预测或输出:我们的算法生成的输出值。例如,在前面的例子中,我们的算法将特定的图像预测为0,这是给cat的标签,所以数字0是我们的预测或输出。
  • 目标或标签:图像的实际标签。
  • 损失值或预测误差:预测值与实际值之间的距离的某种度量。数值越小,精度越好。
  • :给定数据集的可能的值或标签集。在前一章的例子中,我们有两个类——猫和狗。
  • 二进制分类:一个分类任务,其中每个输入示例应该被分类为两个排他的类别之一。
  • 多类分类:一个分类任务,其中每个输入示例可以分为两个以上不同的类别。
  • 多标签分类:输入示例可以使用多个标签进行标记—例如,用不同类型的食物(如意大利、墨西哥和印度)标记餐馆。另一个常用的例子是图像中的对象检测,该算法识别图像中的不同对象。
  • 标量回归:每个输入数据点都与一个标量质量相关联,它是一个数字。一些例子可以用来预测房价、股票价格和板球比分。
  • 向量回归:算法需要预测一个以上的标量。一个很好的例子是当你试图识别一个包含一条鱼在图像中的位置的边界框。为了预测边界框,您的算法需要预测表示正方形边缘的四个标量。
  • Batch:对于大多数情况,我们在一堆输入样本上训练我们的算法。批处理大小通常在2到256之间变化,这取决于GPU的内存。每个批处理的权重也会更新,因此算法的学习速度往往比在单个示例上训练的速度要快。
  • Epoch:在完整数据集上运行算法称为Epoch。训练(更新重量)几个时代是很常见的。

你可能感兴趣的:(深度学习,机器学习)