en_pipeline / setup.py
khanzaid's picture
Update spaCy pipeline
3bb86a4
raw
history blame contribute delete
No virus
411 Bytes
from setuptools import setup, find_packages
setup(
name='spacy_fine_tune_news',
version='0.1.0',
packages=find_packages(),
package_data={'spacy_fine_tune_news': ['/content/drive/MyDrive/industry_sector_NER/model/model-best/transformer/*']}, # Include model data
include_package_data=True,
install_requires=[
'spacy>=3.0.0', # Declare spaCy dependency
# Other dependencies if needed
],
)