Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

__init__.py 256 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
  1. from pathlib import Path
  2. from .load_ner_dataset import load_ner_dataset
  3. data_dir = Path(__file__).parent.parent / "data"
  4. vectors_dir = Path(__file__).parent.parent / ".word_vectors_cache"
  5. __all__ = [
  6. load_ner_dataset,
  7. data_dir,
  8. vectors_dir,
  9. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...