SYMBOL INDEX (15 symbols across 4 files) FILE: config.py class Config (line 4) | class Config(object): method __init__ (line 5) | def __init__(self, word_embedding_dimension=100, word_num=20000, FILE: data/dataset.py class TextDataset (line 5) | class TextDataset(data.Dataset): method __init__ (line 7) | def __init__(self, path): method __getitem__ (line 10) | def __getitem__(self, index): method __len__ (line 13) | def __len__(self): FILE: model/BasicModule.py class BasicModule (line 6) | class BasicModule(nn.Module): method __init__ (line 7) | def __init__(self): method load (line 11) | def load(self, path): method save (line 14) | def save(self, path): FILE: model/DPCNN.py class DPCNN (line 7) | class DPCNN(BasicModule): method __init__ (line 11) | def __init__(self, config): method forward (line 23) | def forward(self, x): method _block (line 44) | def _block(self, x): method predict (line 63) | def predict(self, x):