We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf894e1 commit 02f0f25Copy full SHA for 02f0f25
1 file changed
test/TensorFlowNET.Examples/TextProcess/CnnTextClassification.cs
@@ -26,11 +26,11 @@ public class CnnTextClassification : IExample
26
public int? DataLimit = null;
27
public bool IsImportingGraph { get; set; } = false;
28
29
- private string dataDir = "word_cnn";
+ private const string dataDir = "word_cnn";
30
private string dataFileName = "dbpedia_csv.tar.gz";
31
32
- private const string TRAIN_PATH = "text_classification/dbpedia_csv/train.csv";
33
- private const string TEST_PATH = "text_classification/dbpedia_csv/test.csv";
+ private const string TRAIN_PATH = "word_cnn/dbpedia_csv/train.csv";
+ private const string TEST_PATH = "word_cnn/dbpedia_csv/test.csv";
34
35
private const int NUM_CLASS = 14;
36
private const int BATCH_SIZE = 64;
0 commit comments