zeju-0727's picture
Upload dyve_tts/eval/math/setup.py with huggingface_hub
ff8a95e verified
raw
history blame contribute delete
470 Bytes
import setuptools
setuptools.setup(
name="math_equivalence",
description="A utility for determining whether 2 answers for a problem in the MATH dataset are equivalent.",
url="https://github.com/hendrycks/math",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir = {"": "modeling"},
py_modules = ["math_equivalence"],
)