Browse Source

Update base_preprocess.py

tags/v0.1.0
Coet GitHub 6 years ago
parent
commit
623f8fa1b2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions
  1. +8
    -8
      fastNLP/loader/base_preprocess.py

+ 8
- 8
fastNLP/loader/base_preprocess.py View File

@@ -11,25 +11,25 @@ class BasePreprocess(object):
self.pickle_path = self.pickle_path + '/'
def word2id(self):
pass
raise NotImplementedError
def id2word(self):
pass
raise NotImplementedError
def class2id(self):
pass
raise NotImplementedError
def id2class(self):
pass
raise NotImplementedError
def embedding(self):
pass
raise NotImplementedError
def data_train(self):
pass
raise NotImplementedError
def data_dev(self):
pass
raise NotImplementedError
def data_test(self):
pass
raise NotImplementedError

Loading…
Cancel
Save