6b7e6b44f1
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
gh-pages / build (push) Has been cancelled
Python Publish (pypi) / Upload release to PyPI (push) Has been cancelled
Spellcheck / spellcheck (push) Has been cancelled
32 lines
890 B
Python
32 lines
890 B
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
|
|
"""Bootstrap definition."""
|
|
|
|
import warnings
|
|
|
|
# Ignore warnings from numba
|
|
warnings.filterwarnings("ignore", message=".*The 'nopython' keyword.*")
|
|
warnings.filterwarnings("ignore", message=".*Use no seed for parallelism.*")
|
|
|
|
initialized_nltk = False
|
|
|
|
|
|
def bootstrap():
|
|
"""Bootstrap definition."""
|
|
global initialized_nltk
|
|
if not initialized_nltk:
|
|
import nltk
|
|
from nltk.corpus import wordnet as wn
|
|
|
|
nltk.download("punkt")
|
|
nltk.download("punkt_tab")
|
|
nltk.download("averaged_perceptron_tagger")
|
|
nltk.download("averaged_perceptron_tagger_eng")
|
|
nltk.download("maxent_ne_chunker")
|
|
nltk.download("maxent_ne_chunker_tab")
|
|
nltk.download("words")
|
|
nltk.download("wordnet")
|
|
wn.ensure_loaded()
|
|
initialized_nltk = True
|