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.

ResnetV2.cs 1.3 kB

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Keras.Applications
  5. {
  6. public class ResnetV2
  7. {
  8. public static Model ResNet50V2(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 Model ResNet101V2(bool include_top = true, string weights = "imagenet",
  12. Tensor input_tensor = null, TensorShape input_shape = null,
  13. string pooling = null, int classes = 1000) => throw new NotImplementedException();
  14. public static Model ResNet152V2(bool include_top = true, string weights = "imagenet",
  15. Tensor input_tensor = null, TensorShape input_shape = null,
  16. string pooling = null, int classes = 1000) => throw new NotImplementedException();
  17. public static Tensor preprocess_input(Tensor x, string data_format = null) => throw new NotImplementedException();
  18. public static Tensor decode_predictions(Tensor preds, int top = 5) => throw new NotImplementedException();
  19. }
  20. }