Tag:euclidean
-
Time:2020-9-30
catalog Write it at the front Cross-Entropy Loss (softmax loss) Contrastive Loss – CVPR2006 Triplet Loss – CVPR2015 Center Loss – ECCV2016 L-Softmax Loss – ICML2016 A-Softmax Loss – CVPR2017 AM-Softmax Loss-CVPR2018 ArcFace Loss – CVPR2019 Euclidean distance or angular distance and normalization reference resources Blog: blog Garden CSDN blog Write it at the front […]
-
Time:2020-7-3
1. Euclidean distanced(x,y) = √( (x[1]-y[1])^2 + (x[1]-y[2])^2 + … + (x[n]-y[n])^2 )2. Square Euclidean distanceThe distance formula of spark kmeans uses the square Euclidean distance. The square Euclidean distance is the square of the Euclidean distance (excluding the open root sign)d(x,y) = (x[1]-y[1])^2 + (x[1]-y[2])^2 + … + (x[n]-y[n])^2 3. Sum of squared error […]
-
Time:2020-5-21
1. Euclidean distanced(x,y) = √( (x[1]-y[1])^2 + (x[1]-y[2])^2 + … + (x[n]-y[n])^2 )2. Squared Euclidean distanceThe distance formula of spark kmeans uses the square Euclidean distance. The square Euclidean distance is the square of the Euclidean distance (without the root sign)d(x,y) = (x[1]-y[1])^2 + (x[1]-y[2])^2 + … + (x[n]-y[n])^2 3. Sum of squared error (SSE)The […]
-
Time:2020-2-8
outline example of machine learning Predicting how a viewer will rate a movie Movie rating – a solution spectrumRangeThe essece of machine learning: A pattern exists We cannot pin it down mathematially. We have data on it. The learning approah Components of learning Metaphor(analogy): Credit approvalApplicant information: kind info age 23 years gender male annual […]