sliceline 0.2.12__tar.gz → 0.2.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sliceline-0.2.12 → sliceline-0.2.13}/PKG-INFO +11 -4
- sliceline-0.2.13/pyproject.toml +69 -0
- sliceline-0.2.12/pyproject.toml +0 -44
- {sliceline-0.2.12 → sliceline-0.2.13}/LICENSE +0 -0
- {sliceline-0.2.12 → sliceline-0.2.13}/README.rst +0 -0
- {sliceline-0.2.12 → sliceline-0.2.13}/sliceline/__init__.py +0 -0
- {sliceline-0.2.12 → sliceline-0.2.13}/sliceline/slicefinder.py +0 -0
- {sliceline-0.2.12 → sliceline-0.2.13}/sliceline/validation.py +0 -0
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sliceline
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.13
|
|
4
4
|
Summary: ✂️ Fast slice finding for Machine Learning model debugging.
|
|
5
5
|
Home-page: https://github.com/DataDome/sliceline
|
|
6
6
|
License: BSD-3-Clause
|
|
7
7
|
Author: Antoine de Daran
|
|
8
|
-
Requires-Python: >=3.7,<3.
|
|
8
|
+
Requires-Python: >=3.7,<3.12
|
|
9
9
|
Classifier: License :: OSI Approved :: BSD License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.7
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.8
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Requires-Dist: numpy (>=1.21,<2.0) ; python_version < "3.9"
|
|
17
|
+
Requires-Dist: numpy (>=1.25,<2.0) ; python_version >= "3.9"
|
|
18
|
+
Requires-Dist: scikit-learn (>=1,<2) ; python_version < "3.8"
|
|
19
|
+
Requires-Dist: scikit-learn (>=1.3,<2.0) ; python_version >= "3.8" and python_version < "3.9"
|
|
20
|
+
Requires-Dist: scikit-learn (>=1.4,<2.0) ; python_version >= "3.9"
|
|
21
|
+
Requires-Dist: scipy (>=1,<2) ; python_version < "3.9"
|
|
22
|
+
Requires-Dist: scipy (>=1.12,<2.0) ; python_version >= "3.9"
|
|
16
23
|
Project-URL: Documentation, https://sliceline.readthedocs.io/en/stable/
|
|
17
24
|
Project-URL: Repository, https://github.com/DataDome/sliceline
|
|
18
25
|
Description-Content-Type: text/x-rst
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["poetry_core>=1.0.0"]
|
|
3
|
+
build-backend = "poetry.core.masonry.api"
|
|
4
|
+
|
|
5
|
+
[tool.poetry]
|
|
6
|
+
name = "sliceline"
|
|
7
|
+
version = "0.2.13" # This version is a generic placeholder. It should not be changed.
|
|
8
|
+
description = "✂️ Fast slice finding for Machine Learning model debugging."
|
|
9
|
+
authors = ["Antoine de Daran"]
|
|
10
|
+
readme = "README.rst"
|
|
11
|
+
license = "BSD-3-Clause"
|
|
12
|
+
repository = "https://github.com/DataDome/sliceline"
|
|
13
|
+
documentation = "https://sliceline.readthedocs.io/en/stable/"
|
|
14
|
+
|
|
15
|
+
[tool.poetry.dependencies]
|
|
16
|
+
python = ">=3.7, <3.12"
|
|
17
|
+
numpy = [
|
|
18
|
+
{ version = "^1.21", python = "<3.9" },
|
|
19
|
+
{ version = "^1.25", python = ">=3.9" },
|
|
20
|
+
]
|
|
21
|
+
scikit-learn = [
|
|
22
|
+
{ version = "^1", python = "<3.8" },
|
|
23
|
+
{ version = "^1.3", python = ">=3.8,<3.9" },
|
|
24
|
+
{ version = "^1.4", python = ">=3.9" },
|
|
25
|
+
]
|
|
26
|
+
scipy = [
|
|
27
|
+
{ version = "^1", python = "<3.9" },
|
|
28
|
+
{ version = "^1.12", python = ">=3.9" },
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[tool.poetry.dev-dependencies]
|
|
32
|
+
black = [
|
|
33
|
+
{ version = "^23", python = "<3.8" },
|
|
34
|
+
{ version = "^24", python = ">=3.8" },
|
|
35
|
+
]
|
|
36
|
+
flake8 = [
|
|
37
|
+
{ version = "^5", python = "<3.8.1" },
|
|
38
|
+
{ version = "^6", python = ">=3.8.1" },
|
|
39
|
+
]
|
|
40
|
+
jupyter = "^1.0.0"
|
|
41
|
+
matplotlib = [
|
|
42
|
+
{ version = "^3", python = "<3.8" },
|
|
43
|
+
{ version = "^3.7", python = ">=3.8,<3.9" },
|
|
44
|
+
{ version = "^3.8", python = ">=3.9" },
|
|
45
|
+
]
|
|
46
|
+
nbconvert = "^6.5.0"
|
|
47
|
+
optbinning = "^0.15.0"
|
|
48
|
+
pandas = [
|
|
49
|
+
{ version = "^1", python = "<3.9" },
|
|
50
|
+
{ version = "^1.5", python = ">=3.9" },
|
|
51
|
+
]
|
|
52
|
+
pytest = "^6.2.5"
|
|
53
|
+
pytest-benchmark = "^3.4.1"
|
|
54
|
+
pytest-cov = "^3.0.0"
|
|
55
|
+
Sphinx = "^4.0.0"
|
|
56
|
+
sphinx-rtd-theme = "^1.0.0"
|
|
57
|
+
|
|
58
|
+
[tool.black]
|
|
59
|
+
line-length = 79
|
|
60
|
+
include = '\.pyi?$'
|
|
61
|
+
|
|
62
|
+
[tool.isort]
|
|
63
|
+
profile = "black"
|
|
64
|
+
|
|
65
|
+
[tool.coverage.run]
|
|
66
|
+
omit = [".*", "*/site-packages/*", "tests/*", "*/validation.py"]
|
|
67
|
+
|
|
68
|
+
[tool.coverage.report]
|
|
69
|
+
fail_under = 80
|
sliceline-0.2.12/pyproject.toml
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["poetry_core>=1.0.0"]
|
|
3
|
-
build-backend = "poetry.core.masonry.api"
|
|
4
|
-
|
|
5
|
-
[tool.poetry]
|
|
6
|
-
name = "sliceline"
|
|
7
|
-
version = "0.2.12" # This version is a generic placeholder. It should not be changed.
|
|
8
|
-
description = "✂️ Fast slice finding for Machine Learning model debugging."
|
|
9
|
-
authors = ["Antoine de Daran"]
|
|
10
|
-
readme = "README.rst"
|
|
11
|
-
license = "BSD-3-Clause"
|
|
12
|
-
repository = "https://github.com/DataDome/sliceline"
|
|
13
|
-
documentation = "https://sliceline.readthedocs.io/en/stable/"
|
|
14
|
-
|
|
15
|
-
[tool.poetry.dependencies]
|
|
16
|
-
python = ">=3.7, <3.10"
|
|
17
|
-
numpy = "^1.0.0"
|
|
18
|
-
scikit-learn = "^1.0.1"
|
|
19
|
-
|
|
20
|
-
[tool.poetry.dev-dependencies]
|
|
21
|
-
black = "^22.3.0"
|
|
22
|
-
flake8 = "^3.0.0"
|
|
23
|
-
jupyter = "^1.0.0"
|
|
24
|
-
nbconvert = "^6.5.0"
|
|
25
|
-
optbinning = "^0.15.0"
|
|
26
|
-
pandas = "^1.1.0"
|
|
27
|
-
pytest = "^6.2.5"
|
|
28
|
-
pytest-benchmark = "^3.4.1"
|
|
29
|
-
pytest-cov = "^3.0.0"
|
|
30
|
-
Sphinx = "^4.0.0"
|
|
31
|
-
sphinx-rtd-theme = "^1.0.0"
|
|
32
|
-
|
|
33
|
-
[tool.black]
|
|
34
|
-
line-length = 79
|
|
35
|
-
include = '\.pyi?$'
|
|
36
|
-
|
|
37
|
-
[tool.isort]
|
|
38
|
-
profile = "black"
|
|
39
|
-
|
|
40
|
-
[tool.coverage.run]
|
|
41
|
-
omit = [".*", "*/site-packages/*", "tests/*", "*/validation.py"]
|
|
42
|
-
|
|
43
|
-
[tool.coverage.report]
|
|
44
|
-
fail_under = 80
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|