forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAUC.cs
More file actions
41 lines (34 loc) · 1.15 KB
/
AUC.cs
File metadata and controls
41 lines (34 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.Metrics
{
public class AUC : Metric
{
public AUC(int num_thresholds= 200, string curve= "ROC", string summation_method= "interpolation",
string name= null, string dtype= null, float thresholds= 0.5f,
bool multi_label= false, Tensor label_weights= null) : base(name, dtype)
{
throw new NotImplementedException();
}
private void _build(TensorShape shape) => throw new NotImplementedException();
public Tensor interpolate_pr_auc() => throw new NotImplementedException();
public override Tensor result()
{
throw new NotImplementedException();
}
public override void update_state(Args args, KwArgs kwargs)
{
throw new NotImplementedException();
}
public override void reset_states()
{
throw new NotImplementedException();
}
public override Hashtable get_config()
{
throw new NotImplementedException();
}
}
}