|
- using System;
- using System.Collections.Generic;
- using System.IO;
- using Tensorflow;
- using NumSharp.Core;
- using Newtonsoft.Json;
- using System.Linq;
- using System.Text.RegularExpressions;
-
- namespace TensorFlowNET.Examples
- {
- public class TextClassificationWithMovieReviews : Python, IExample
- {
- string dir = "text_classification_with_movie_reviews";
- string dataFile = "imdb.zip";
-
- public void Run()
- {
- var((train_data, train_labels), (test_data, test_labels)) = PrepareData();
-
- Console.WriteLine($"Training entries: {train_data.size}, labels: {train_labels.size}");
-
- // A dictionary mapping words to an integer index
- var word_index = GetWordIndex();
-
- train_data = keras.preprocessing.sequence.pad_sequences(train_data,
- value: word_index["<PAD>"],
- padding: "post",
- maxlen: 256);
-
- test_data = keras.preprocessing.sequence.pad_sequences(test_data,
- value: word_index["<PAD>"],
- padding: "post",
- maxlen: 256);
-
- // input shape is the vocabulary count used for the movie reviews (10,000 words)
- int vocab_size = 10000;
-
- var model = keras.Sequential();
- }
-
- private ((NDArray, NDArray), (NDArray, NDArray)) PrepareData()
- {
- Directory.CreateDirectory(dir);
-
- // get model file
- string url = $"https://github.com/SciSharp/TensorFlow.NET/raw/master/data/{dataFile}";
-
- string zipFile = Path.Join(dir, $"imdb.zip");
- Utility.Web.Download(url, zipFile);
- Utility.Compress.UnZip(zipFile, dir);
-
- // prepare training dataset
- var x_train = ReadData(Path.Join(dir, "x_train.txt"));
- var labels_train = ReadData(Path.Join(dir, "y_train.txt"));
- var indices_train = ReadData(Path.Join(dir, "indices_train.txt"));
- x_train = x_train[indices_train];
- labels_train = labels_train[indices_train];
-
- var x_test = ReadData(Path.Join(dir, "x_test.txt"));
- var labels_test = ReadData(Path.Join(dir, "y_test.txt"));
- var indices_test = ReadData(Path.Join(dir, "indices_test.txt"));
- x_test = x_test[indices_test];
- labels_test = labels_test[indices_test];
-
- // not completed
- var xs = x_train.hstack(x_test);
- var labels = labels_train.hstack(labels_test);
-
- var idx = x_train.size;
- var y_train = labels_train;
- var y_test = labels_test;
-
- return ((x_train, y_train), (x_test, y_test));
- }
-
- private NDArray ReadData(string file)
- {
- var lines = File.ReadAllLines(file);
- var nd = new NDArray(lines[0].StartsWith("[") ? typeof(object) : np.int32, new Shape(lines.Length));
-
- if (lines[0].StartsWith("["))
- {
- for (int i = 0; i < lines.Length; i++)
- {
- var matches = Regex.Matches(lines[i], @"\d+\s*");
- var data = new int[matches.Count];
- for (int j = 0; j < data.Length; j++)
- data[j] = Convert.ToInt32(matches[j].Value);
- nd[i] = data.ToArray();
- }
- }
- else
- {
- for (int i = 0; i < lines.Length; i++)
- nd[i] = Convert.ToInt32(lines[i]);
- }
- return nd;
- }
-
- private Dictionary<string, int> GetWordIndex()
- {
- var result = new Dictionary<string, int>();
- var json = File.ReadAllText(Path.Join(dir, "imdb_word_index.json"));
- var dict = JsonConvert.DeserializeObject<Dictionary<string, int>>(json);
-
- dict.Keys.Select(k => result[k] = dict[k] + 3).ToList();
- result["<PAD>"] = 0;
- result["<START>"] = 1;
- result["<UNK>"] = 2; // unknown
- result["<UNUSED>"] = 3;
-
- return result;
- }
- }
- }
|