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.

IMDB.cs 617 B

123456789101112131415
  1. using Newtonsoft.Json.Linq;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Tensorflow.Keras.Datasets
  6. {
  7. public class IMDB
  8. {
  9. public static ((Tensor, Tensor), (Tensor, Tensor)) load_data(string path= "imdb.npz", int? num_words= null, int skip_top= 0, int? maxlen= null,
  10. int seed= 113,int start_char= 1, int oov_char= 2, int index_from= 3) => throw new NotImplementedException();
  11. public static JObject get_word_index(string path= "imdb_word_index.json") => throw new NotImplementedException();
  12. }
  13. }