-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
69 lines (66 loc) · 1.78 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "sliceguard"
version = "0.0.35"
authors = [
{ name="Renumics GmbH", email="[email protected]"},
{ name="Daniel Klitzke", email="[email protected]"}
]
description = "A library for detecting critical data slices in structured and unstructured data based on features, metadata and model predictions."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"hnne >= 0.1.10",
"numpy>=1.17.2",
"pandas >= 2.0.0",
"fairlearn >= 0.8.0",
"scikit-learn >= 1.3.0",
"umap-learn >= 0.5.3",
"tqdm >= 4.65.0",
"renumics-spotlight >= 1.5.3",
"datasets >= 2.13.1",
"puremagic >= 1.15",
]
[project.optional-dependencies]
automl = [
"flaml >= 2.0.0",
"xgboost >= 1.7.6, < 2.0.0",
"shap >= 0.43.0",
]
embedding = [
"transformers[torch] >= 4.30.2",
"sentence-transformers >= 2.2.1",
"torchaudio >= 2.0.2",
"datasets[audio,vision] >= 2.13.1",
]
all = [
"flaml >= 2.0.0",
"xgboost >= 1.7.6, < 2.0.0",
"shap >= 0.43.0",
"transformers[torch] >= 4.30.2",
"sentence-transformers >= 2.2.1",
"torchaudio >= 2.0.2",
"datasets[audio,vision]>= 2.13.1",
"bing-image-downloader == 1.1.2",
]
docs = [
"sphinxcontrib-applehelp >= 1.0.7",
"sphinxcontrib-devhelp >= 1.0.5",
"sphinxcontrib-htmlhelp >= 2.0.4",
"sphinxcontrib-jsmath >= 1.0.1",
"sphinxcontrib-qthelp >= 1.0.6",
"sphinxcontrib-serializinghtml >= 1.1.9",
"myst-parser >= 2.0.0",
]
tutorials = [
"bing-image-downloader == 1.1.2",
]
[project.urls]
"Homepage" = "https://github.com/Renumics/sliceguard"
"Bug Tracker" = "https://github.com/Renumics/sliceguard/issues"
[tool.setuptools]
packages = ["sliceguard", "sliceguard.models"]