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.

InceptionResnetV2.cs 1.2 kB

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Keras.Applications
  5. {
  6. public class InceptionResnetV2
  7. {
  8. public static Model InceptionResNetV2(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 conv2d_bn(Tensor x, int filters, (int, int) kernel_size, (int, int) strides, string padding= "same",
  12. string activation= "relu", bool use_bias= false, string name= null) => throw new NotImplementedException();
  13. public static Tensor inception_resnet_block(Tensor x, float scale, string block_type, int block_idx, string activation= "relu") => throw new NotImplementedException();
  14. public static Tensor preprocess_input(Tensor x, string data_format = null) => throw new NotImplementedException();
  15. public static Tensor decode_predictions(Tensor preds, int top = 5) => throw new NotImplementedException();
  16. }
  17. }