2020年9月11日 星期五

[ Keras 常見問題 ] How to calculate precision and recall in Keras

 Source From Here

Question
I am building a multi-class classifier with Keras 2.02 (with Tensorflow backend),and I do not know how to calculate precision and recall in Keras. Please help me.

How-To
Python package keras-metrics could be useful for this:
  1. import keras  
  2.   
  3. model = models.Sequential()  
  4. model.add(keras.layers.Dense(1, activation="sigmoid", input_dim=2))  
  5. model.add(keras.layers.Dense(1, activation="softmax"))  
  6.   
  7. m_preccision = keras.metrics.Precision()  
  8. m_recall = keras.metrics.Recall()  
  9. model.compile(optimizer="sgd",  
  10.               loss="binary_crossentropy",  
  11.               metrics = [m_preccision, m_recall])  


沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...