Spaces:
Running
Running
Commit
·
547f094
1
Parent(s):
918bea3
add pyproject
Browse files- pyproject.toml +17 -0
pyproject.toml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "TransformerRanker"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "CPU-only Spaces Demo (NAACL 2k25)"
|
5 |
+
requires-python = ">=3.11"
|
6 |
+
|
7 |
+
dependencies = [
|
8 |
+
"gradio>=5.0",
|
9 |
+
"transformers==4.41.0",
|
10 |
+
"transformer-ranker==0.1.2",
|
11 |
+
"datasets==3.6",
|
12 |
+
"protobuf>=6.30"
|
13 |
+
]
|
14 |
+
|
15 |
+
[build-system]
|
16 |
+
requires = ["setuptools>=80.0"]
|
17 |
+
build-backend = "setuptools.build_meta"
|