__init__.py 659 B

12345678910111213141516171819202122
  1. # Copyright (c) 2017-present, Facebook, Inc.
  2. # All rights reserved.
  3. #
  4. # This source code is licensed under the MIT license found in the
  5. # LICENSE file in the root directory of this source tree.
  6. from __future__ import absolute_import
  7. from __future__ import division
  8. from __future__ import print_function
  9. from __future__ import unicode_literals
  10. from .FastText import train_supervised
  11. from .FastText import train_unsupervised
  12. from .FastText import load_model
  13. from .FastText import tokenize
  14. from .FastText import EOS
  15. from .FastText import BOW
  16. from .FastText import EOW
  17. from .FastText import cbow
  18. from .FastText import skipgram
  19. from .FastText import supervised