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.

Nasnet.cs 2.0 kB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Tensorflow.Keras.Applications
  5. {
  6. public class Nasnet
  7. {
  8. public static Model NASNet(TensorShape input_shape = null, int penultimate_filters = 4032, int num_blocks = 6, int stem_block_filters = 96,
  9. bool skip_reduction = true, int filter_multiplier = 2, bool include_top = true, string weights = null,
  10. Tensor input_tensor = null, string pooling = null, int classes = 1000, int? default_size = null) => throw new NotImplementedException();
  11. public static Model NASNetMobile(TensorShape input_shape = null, bool include_top = true, string weights = "imagenet",
  12. Tensor input_tensor = null, string pooling = null, int classes = 1000) => throw new NotImplementedException();
  13. public static Model NASNetLarge(TensorShape input_shape = null, bool include_top = true, string weights = "imagenet",
  14. Tensor input_tensor = null, string pooling = null, int classes = 1000) => throw new NotImplementedException();
  15. public static Tensor _separable_conv_block(Tensor ip, int filters, (int, int)? kernel_size= null, (int, int)? strides= null, string block_id= null) => throw new NotImplementedException();
  16. public static Tensor _adjust_block(Tensor p, Tensor ip, int filters, string block_id= null) => throw new NotImplementedException();
  17. public static Tensor _normal_a_cell(Tensor p, Tensor ip, int filters, string block_id = null) => throw new NotImplementedException();
  18. public static Tensor _reduction_a_cell(Tensor p, Tensor ip, int filters, string block_id = null) => throw new NotImplementedException();
  19. public static Tensor preprocess_input(Tensor x, string data_format = null) => throw new NotImplementedException();
  20. public static Tensor decode_predictions(Tensor preds, int top = 5) => throw new NotImplementedException();
  21. }
  22. }