lukashelff commited on
Commit ·
a89c086
1
Parent(s): 1383d87
remove subfolder
Browse files- IsomorphicPerturbationTesting.py +1 -1
- ipt/__init__.py +0 -3
- ipt/verifier.py → ipt_verifier.py +0 -0
- pyproject.toml +9 -0
IsomorphicPerturbationTesting.py
CHANGED
|
@@ -42,7 +42,7 @@ import datasets
|
|
| 42 |
import evaluate
|
| 43 |
from tqdm import tqdm
|
| 44 |
|
| 45 |
-
from
|
| 46 |
|
| 47 |
logger = logging.getLogger(__name__)
|
| 48 |
|
|
|
|
| 42 |
import evaluate
|
| 43 |
from tqdm import tqdm
|
| 44 |
|
| 45 |
+
from .ipt_verifier import verify_ipt
|
| 46 |
|
| 47 |
logger = logging.getLogger(__name__)
|
| 48 |
|
ipt/__init__.py
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
from .verifier import verify, extract_hypothesis
|
| 2 |
-
|
| 3 |
-
__all__ = ["verify", "extract_hypothesis"]
|
|
|
|
|
|
|
|
|
|
|
|
ipt/verifier.py → ipt_verifier.py
RENAMED
|
File without changes
|
pyproject.toml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "ipt"
|
| 7 |
+
version = "0.1.0"
|
| 8 |
+
requires-python = ">=3.9"
|
| 9 |
+
dependencies = []
|