forked from SciSharp/TensorFlow.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVgg16.cs
More file actions
17 lines (14 loc) · 685 Bytes
/
Vgg16.cs
File metadata and controls
17 lines (14 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow.Keras.Applications
{
public class Vgg16
{
public static Model VGG16(bool include_top = true, string weights = "imagenet",
Tensor input_tensor = null, TensorShape input_shape = null,
string pooling = null, int classes = 1000) => throw new NotImplementedException();
public static Tensor preprocess_input(Tensor x, string data_format = null) => throw new NotImplementedException();
public static Tensor decode_predictions(Tensor preds, int top = 5) => throw new NotImplementedException();
}
}