All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.wrappers.FileJsonPyTorch.gate-lf-pytorch-json.setup.py Maven / Gradle / Ivy

Go to download

A GATE plugin that provides many different machine learning algorithms for a wide range of NLP-related machine learning tasks like text classification, tagging, or chunking.

There is a newer version: 4.2
Show newest version
import os
from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))


def read(fname):
    return open(os.path.join(here, fname)).read()


readme = read('README.md')

setup(
    name="gatelfpytorchjson",
    version="0.2",
    description="Library to build and use pytorch NN models for GATE Learning Framework",
    author="Johann Petrak",
    author_email="[email protected]",
    # url="http://packages.python.org/an_example_pypi_project",
    license="Apache 2.0",
    # keywords="",
    packages=['gatelfpytorchjson'],
    long_description=readme,
    install_requires=['torch>=0.4.1', 'numpy'],
    python_requires=">=3",
    # scripts=['some.py'],
    # entry_points = {'console_scripts': ['some=some:main']},
    tests_require=['nose'],
    test_suite='nose.collector',
    classifiers=[],
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy