浏览代码

Delete of models submodule

Jérôme BUISINE 4 年之前
父节点
当前提交
9f25d747c8
共有 2 个文件被更改,包括 0 次插入8 次删除
  1. 0 0
      models/__init__.py
  2. 0 8
      models/metrics.py

+ 0 - 0
models/__init__.py


+ 0 - 8
models/metrics.py

@@ -1,8 +0,0 @@
-from keras import backend as K
-import tensorflow as tf
-
-def auc(y_true, y_pred):
-    auc = tf.metrics.auc(y_true, y_pred)[1]
-    K.get_session().run(tf.local_variables_initializer())
-    
-    return auc