"""Deep learning for NLP applications."""__author__='Paul Landes'
[docs]definit(*args,**kwargs):"""Initalize the deep NLP system and PyTorch. This calls the initialization of the PyTorch system by passing ``kwargs`` to :meth:`~zensols.deeplearn.TorchConfig.init`. """importosfromzensols.deeplearn.torchconfigimportTorchConfigTorchConfig.init(*args,**kwargs)# allow huggingface transformers parallelizationos.environ['TOKENIZERS_PARALLELISM']='true'