You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Vgg19.cs 685 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Keras.Applications
  5. {
  6. public class Vgg19
  7. {
  8. public static Model VGG19(bool include_top = true, string weights = "imagenet",
  9. Tensor input_tensor = null, TensorShape input_shape = null,
  10. string pooling = null, int classes = 1000) => throw new NotImplementedException();
  11. public static Tensor preprocess_input(Tensor x, string data_format = null) => throw new NotImplementedException();
  12. public static Tensor decode_predictions(Tensor preds, int top = 5) => throw new NotImplementedException();
  13. }
  14. }