From 2e3cf2495a3b426e339fca7bf4f6a93107b704e5 Mon Sep 17 00:00:00 2001 From: Meinrad Recheis Date: Fri, 12 Jul 2019 18:42:09 +0200 Subject: [PATCH] corrected names for the example folders --- .../{AudioProcess => AudioProcessing}/README.md | 0 .../{ImageProcess => ImageProcessing}/DigitRecognitionCNN.cs | 0 .../{ImageProcess => ImageProcessing}/DigitRecognitionNN.cs | 0 .../{ImageProcess => ImageProcessing}/ImageBackgroundRemoval.cs | 0 .../ImageRecognitionInception.cs | 0 .../{ImageProcess => ImageProcessing}/InceptionArchGoogLeNet.cs | 0 .../{ImageProcess => ImageProcessing}/ObjectDetection.cs | 0 .../{ImageProcess => ImageProcessing}/RetrainImageClassifier.cs | 0 .../{TextProcess => TextProcessing}/BinaryTextClassification.cs | 0 .../{TextProcess => TextProcessing}/CnnTextClassification.cs | 0 .../{TextProcess => TextProcessing}/DataHelpers.cs | 0 .../{TextProcess => TextProcessing}/NER/BiLstmCrfNer.cs | 0 .../{TextProcess => TextProcessing}/NER/CRF.cs | 0 .../{TextProcess => TextProcessing}/NER/LstmCrfNer.cs | 0 .../{TextProcess => TextProcessing}/NamedEntityRecognition.cs | 0 .../{TextProcess => TextProcessing}/Word2Vec.cs | 0 .../{TextProcess => TextProcessing}/cnn_models/CharCnn.cs | 0 .../{TextProcess => TextProcessing}/cnn_models/ITextModel.cs | 0 .../{TextProcess => TextProcessing}/cnn_models/VdCnn.cs | 0 .../{TextProcess => TextProcessing}/cnn_models/WordCnn.cs | 0 20 files changed, 0 insertions(+), 0 deletions(-) rename test/TensorFlowNET.Examples/{AudioProcess => AudioProcessing}/README.md (100%) rename test/TensorFlowNET.Examples/{ImageProcess => ImageProcessing}/DigitRecognitionCNN.cs (100%) rename test/TensorFlowNET.Examples/{ImageProcess => ImageProcessing}/DigitRecognitionNN.cs (100%) rename test/TensorFlowNET.Examples/{ImageProcess => ImageProcessing}/ImageBackgroundRemoval.cs (100%) rename test/TensorFlowNET.Examples/{ImageProcess => ImageProcessing}/ImageRecognitionInception.cs (100%) rename test/TensorFlowNET.Examples/{ImageProcess => ImageProcessing}/InceptionArchGoogLeNet.cs (100%) rename test/TensorFlowNET.Examples/{ImageProcess => ImageProcessing}/ObjectDetection.cs (100%) rename test/TensorFlowNET.Examples/{ImageProcess => ImageProcessing}/RetrainImageClassifier.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/BinaryTextClassification.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/CnnTextClassification.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/DataHelpers.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/NER/BiLstmCrfNer.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/NER/CRF.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/NER/LstmCrfNer.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/NamedEntityRecognition.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/Word2Vec.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/cnn_models/CharCnn.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/cnn_models/ITextModel.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/cnn_models/VdCnn.cs (100%) rename test/TensorFlowNET.Examples/{TextProcess => TextProcessing}/cnn_models/WordCnn.cs (100%) diff --git a/test/TensorFlowNET.Examples/AudioProcess/README.md b/test/TensorFlowNET.Examples/AudioProcessing/README.md similarity index 100% rename from test/TensorFlowNET.Examples/AudioProcess/README.md rename to test/TensorFlowNET.Examples/AudioProcessing/README.md diff --git a/test/TensorFlowNET.Examples/ImageProcess/DigitRecognitionCNN.cs b/test/TensorFlowNET.Examples/ImageProcessing/DigitRecognitionCNN.cs similarity index 100% rename from test/TensorFlowNET.Examples/ImageProcess/DigitRecognitionCNN.cs rename to test/TensorFlowNET.Examples/ImageProcessing/DigitRecognitionCNN.cs diff --git a/test/TensorFlowNET.Examples/ImageProcess/DigitRecognitionNN.cs b/test/TensorFlowNET.Examples/ImageProcessing/DigitRecognitionNN.cs similarity index 100% rename from test/TensorFlowNET.Examples/ImageProcess/DigitRecognitionNN.cs rename to test/TensorFlowNET.Examples/ImageProcessing/DigitRecognitionNN.cs diff --git a/test/TensorFlowNET.Examples/ImageProcess/ImageBackgroundRemoval.cs b/test/TensorFlowNET.Examples/ImageProcessing/ImageBackgroundRemoval.cs similarity index 100% rename from test/TensorFlowNET.Examples/ImageProcess/ImageBackgroundRemoval.cs rename to test/TensorFlowNET.Examples/ImageProcessing/ImageBackgroundRemoval.cs diff --git a/test/TensorFlowNET.Examples/ImageProcess/ImageRecognitionInception.cs b/test/TensorFlowNET.Examples/ImageProcessing/ImageRecognitionInception.cs similarity index 100% rename from test/TensorFlowNET.Examples/ImageProcess/ImageRecognitionInception.cs rename to test/TensorFlowNET.Examples/ImageProcessing/ImageRecognitionInception.cs diff --git a/test/TensorFlowNET.Examples/ImageProcess/InceptionArchGoogLeNet.cs b/test/TensorFlowNET.Examples/ImageProcessing/InceptionArchGoogLeNet.cs similarity index 100% rename from test/TensorFlowNET.Examples/ImageProcess/InceptionArchGoogLeNet.cs rename to test/TensorFlowNET.Examples/ImageProcessing/InceptionArchGoogLeNet.cs diff --git a/test/TensorFlowNET.Examples/ImageProcess/ObjectDetection.cs b/test/TensorFlowNET.Examples/ImageProcessing/ObjectDetection.cs similarity index 100% rename from test/TensorFlowNET.Examples/ImageProcess/ObjectDetection.cs rename to test/TensorFlowNET.Examples/ImageProcessing/ObjectDetection.cs diff --git a/test/TensorFlowNET.Examples/ImageProcess/RetrainImageClassifier.cs b/test/TensorFlowNET.Examples/ImageProcessing/RetrainImageClassifier.cs similarity index 100% rename from test/TensorFlowNET.Examples/ImageProcess/RetrainImageClassifier.cs rename to test/TensorFlowNET.Examples/ImageProcessing/RetrainImageClassifier.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/BinaryTextClassification.cs b/test/TensorFlowNET.Examples/TextProcessing/BinaryTextClassification.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/BinaryTextClassification.cs rename to test/TensorFlowNET.Examples/TextProcessing/BinaryTextClassification.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/CnnTextClassification.cs b/test/TensorFlowNET.Examples/TextProcessing/CnnTextClassification.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/CnnTextClassification.cs rename to test/TensorFlowNET.Examples/TextProcessing/CnnTextClassification.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/DataHelpers.cs b/test/TensorFlowNET.Examples/TextProcessing/DataHelpers.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/DataHelpers.cs rename to test/TensorFlowNET.Examples/TextProcessing/DataHelpers.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/NER/BiLstmCrfNer.cs b/test/TensorFlowNET.Examples/TextProcessing/NER/BiLstmCrfNer.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/NER/BiLstmCrfNer.cs rename to test/TensorFlowNET.Examples/TextProcessing/NER/BiLstmCrfNer.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/NER/CRF.cs b/test/TensorFlowNET.Examples/TextProcessing/NER/CRF.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/NER/CRF.cs rename to test/TensorFlowNET.Examples/TextProcessing/NER/CRF.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/NER/LstmCrfNer.cs b/test/TensorFlowNET.Examples/TextProcessing/NER/LstmCrfNer.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/NER/LstmCrfNer.cs rename to test/TensorFlowNET.Examples/TextProcessing/NER/LstmCrfNer.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/NamedEntityRecognition.cs b/test/TensorFlowNET.Examples/TextProcessing/NamedEntityRecognition.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/NamedEntityRecognition.cs rename to test/TensorFlowNET.Examples/TextProcessing/NamedEntityRecognition.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/Word2Vec.cs b/test/TensorFlowNET.Examples/TextProcessing/Word2Vec.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/Word2Vec.cs rename to test/TensorFlowNET.Examples/TextProcessing/Word2Vec.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/cnn_models/CharCnn.cs b/test/TensorFlowNET.Examples/TextProcessing/cnn_models/CharCnn.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/cnn_models/CharCnn.cs rename to test/TensorFlowNET.Examples/TextProcessing/cnn_models/CharCnn.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/cnn_models/ITextModel.cs b/test/TensorFlowNET.Examples/TextProcessing/cnn_models/ITextModel.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/cnn_models/ITextModel.cs rename to test/TensorFlowNET.Examples/TextProcessing/cnn_models/ITextModel.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/cnn_models/VdCnn.cs b/test/TensorFlowNET.Examples/TextProcessing/cnn_models/VdCnn.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/cnn_models/VdCnn.cs rename to test/TensorFlowNET.Examples/TextProcessing/cnn_models/VdCnn.cs diff --git a/test/TensorFlowNET.Examples/TextProcess/cnn_models/WordCnn.cs b/test/TensorFlowNET.Examples/TextProcessing/cnn_models/WordCnn.cs similarity index 100% rename from test/TensorFlowNET.Examples/TextProcess/cnn_models/WordCnn.cs rename to test/TensorFlowNET.Examples/TextProcessing/cnn_models/WordCnn.cs