当前位置:网站首页>Tensorflow built-in evaluation
Tensorflow built-in evaluation
2022-07-03 10:03:00 【Master Hao】
Sometimes the error function , It can also be used as an evaluation function
Commonly used built-in evaluation indicators
MeanSquaredError( Square error , For regression , I could just write it as MSE, The function form is mse)
MeanAbsoluteError ( Absolute error , For regression , I could just write it as MAE, The function form is mae)
MeanAbsolutePercentageError ( Average percentage error , For regression , I could just write it as MAPE, The function form is mape)
RootMeanSquaredError ( Root mean square error , For regression )
Accuracy ( Accuracy rate , Used for classification , You can use strings "Accuracy" Express ,Accuracy=(TP+TN)/(TP+TN+FP+FN), requirement y_true and y_pred All are category serial numbers )
Precision ( Accuracy , Used for dichotomies ,Precision = TP/(TP+FP))
Recall ( Recall rate , Used for dichotomies ,Recall = TP/(TP+FN))
TruePositives ( Real examples , Used for dichotomies )
TrueNegatives ( What a negative example , Used for dichotomies )
FalsePositives ( False positive example , Used for dichotomies )
FalseNegatives ( False negative example , Used for dichotomies )
AUC(ROC curve (TPR vs FPR) The area under , Used for dichotomies , The intuitive explanation is to randomly select a positive sample and a negative sample , The probability that the predicted value of positive samples is greater than that of negative samples )
CategoricalAccuracy( Classification accuracy , And Accuracy The meaning is the same , requirement y_true(label) by onehot Coding form )
SparseCategoricalAccuracy ( Sparse classification accuracy , And Accuracy The meaning is the same , requirement y_true(label) It is in the form of serial number )
MeanIoU (Intersection-Over-Union, Commonly used in image segmentation )
TopKCategoricalAccuracy ( Many classification TopK Accuracy rate , requirement y_true(label) by onehot Coding form )
SparseTopKCategoricalAccuracy ( Sparse multi classification TopK Accuracy rate , requirement y_true(label) It is in the form of serial number )
Mean ( Average )
Sum ( Sum up )
边栏推荐
- The 4G module designed by the charging pile obtains NTP time through mqtt based on 4G network
- Gpiof6, 7, 8 configuration
- Problems encountered when MySQL saves CSV files
- 新系列单片机还延续了STM32产品家族的低电压和节能两大优势
- Stm32 NVIC interrupt priority management
- Fundamentals of Electronic Technology (III)__ Chapter 6 combinational logic circuit
- Serial communication based on 51 single chip microcomputer
- Adaptiveavgpool1d internal implementation
- 万字手撕七大排序(代码+动图演示)
- Windows下MySQL的安装和删除
猜你喜欢
03 FastJson 解决循环引用
2021-10-27
Exception handling of arm
Quelle langue choisir pour programmer un micro - ordinateur à puce unique
Installation and removal of MySQL under Windows
El table X-axis direction (horizontal) scroll bar slides to the right by default
手机都算是单片机的一种,只不过它用的硬件不是51的芯片
学习开发没有捷径,也几乎不存在带路会学的快一些的情况
RESNET code details
Fundamentals of Electronic Technology (III)__ Fundamentals of circuit analysis__ Basic amplifier operating principle
随机推荐
STM32 general timer 1s delay to realize LED flashing
(2)接口中新增的方法
2020-08-23
Oracle数据库 SQL语句执行计划、语句跟踪与优化实例
Notes on C language learning of migrant workers majoring in electronic information engineering
A lottery like scissors, stone and cloth (C language)
My notes on the development of intelligent charging pile (III): overview of the overall design of the system software
Fundamentals of Electronic Technology (III)__ Chapter 1 resistance of parallel circuit
How does the memory database give full play to the advantages of memory?
Screen display of charging pile design -- led driver ta6932
Project cost management__ Cost management technology__ Article 8 performance review
2. Elment UI date selector formatting problem
对于新入行的同学,如果你完全没有接触单片机,建议51单片机入门
Timer and counter of 51 single chip microcomputer
My notes on intelligent charging pile development (II): overview of system hardware circuit design
要選擇那種語言為單片機編寫程序呢
El table X-axis direction (horizontal) scroll bar slides to the right by default
When you need to use some functions of STM32, but 51 can't realize them, 32 naturally doesn't need to learn
STM32 interrupt switch
Oracle database SQL statement execution plan, statement tracking and optimization instance