What is the definition of “feature” in neural network?

后端 未结 2 1733
说谎
说谎 2021-02-13 02:10

I am a beginner of the neural network. I am very confused about the word feature. Can you give me a defintion of feature? Are the features the neurons

2条回答
  •  旧巷少年郎
    2021-02-13 02:58

    The features are the elements of your input vectors. The number of features is equal to the number of nodes in the input layer of the network.

    If you were using a neural network to classify people as either men or women, the features would be things like height, weight, hair length etc. Each of these would have an initial value in meters, kilograms and so on, and would then be normalized and centered at zero (within-feature) prior to presentation to the system.

    So this guy:

    height: 1.5m
    weight: 70kg
    hair length: 0.1m

    Would be initially represented by the vector [1.5, 70, 0.1] and then after preprocessing (there would have to be other items in the dataset...) by something like [-0.2, 0.4, .05]

    The features of an image of a letter could be as simple as the greyscale values of pixels. Other features could be generated by processing the images and extracting parameters from power spectra, or finding edges, etc. To learn more about this, seek out information about image processing and feature extraction.

提交回复
热议问题