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
70
71
72
73
74
75
76
77
78
79
|
{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
buildPythonPackage,
pytestCheckHook,
setuptools,
matplotlib,
numpy,
packaging,
torch,
tqdm,
flask,
flask-compress,
parameterized,
scikit-learn,
}:
buildPythonPackage rec {
pname = "captum";
version = "0.8.0";
pyproject = true;
build-system = [ setuptools ];
src = fetchFromGitHub {
owner = "pytorch";
repo = "captum";
tag = "v${version}";
hash = "sha256-WuKbMYZPHWaTYYhVseSSkwXQk9LBzGuWfmneDw9V2hg=";
};
dependencies = [
matplotlib
numpy
packaging
torch
tqdm
];
pythonRelaxDeps = [
"numpy"
];
pythonImportsCheck = [ "captum" ];
nativeCheckInputs = [
pytestCheckHook
flask
flask-compress
parameterized
scikit-learn
];
disabledTestPaths =
lib.optionals stdenv.hostPlatform.isDarwin [
# These tests may fail if multiple builds run them at the same time due
# to hardcoded port number used for rendezvous
"tests/attr/test_data_parallel.py"
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
# Issue reported upstream at https://github.com/pytorch/captum/issues/1447
"tests/concept/test_tcav.py"
];
disabledTests = [
# Failing tests
"test_softmax_classification_batch_zero_baseline"
"test_tracin_identity_regression_9_check_idx_none_ArnoldiInfluenceFunction"
];
meta = {
description = "Model interpretability and understanding for PyTorch";
homepage = "https://github.com/pytorch/captum";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|