代码拉取完成,页面将自动刷新
from setuptools import setup, find_packages
import unittest
import codecs
def test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover("compare_mt/tests", pattern="test_*.py")
return test_suite
exec(open('compare_mt/version_info.py').read())
setup(
name="compare_mt",
version=__version__,
description="Holistic comparison of the output of text generation models",
long_description=codecs.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/neulab/compare-mt",
author="Graham Neubig",
license="BSD 3-Clause",
test_suite="setup.test_suite",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Text Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
entry_points={
"console_scripts": [
"compare-mt=compare_mt.compare_mt_main:main",
"compare-ll=compare_mt.compare_ll_main:main",
],
},
install_requires=[
"nltk>=3.2",
"numpy",
"matplotlib",
"absl-py",
"sacrebleu"
],
include_package_data=True,
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。