Upload dyve_tts/eval/math/setup.py with huggingface_hub
Browse files- dyve_tts/eval/math/setup.py +14 -0
dyve_tts/eval/math/setup.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import setuptools
|
| 2 |
+
|
| 3 |
+
setuptools.setup(
|
| 4 |
+
name="math_equivalence",
|
| 5 |
+
description="A utility for determining whether 2 answers for a problem in the MATH dataset are equivalent.",
|
| 6 |
+
url="https://github.com/hendrycks/math",
|
| 7 |
+
classifiers=[
|
| 8 |
+
"Programming Language :: Python :: 3",
|
| 9 |
+
"License :: OSI Approved :: MIT License",
|
| 10 |
+
"Operating System :: OS Independent",
|
| 11 |
+
],
|
| 12 |
+
package_dir = {"": "modeling"},
|
| 13 |
+
py_modules = ["math_equivalence"],
|
| 14 |
+
)
|