|
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace Tensorflow.Keras.Applications
- {
- public class ResnetV2
- {
- public static Model ResNet50V2(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 Model ResNet101V2(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 Model ResNet152V2(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();
- }
- }
|