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
80
81
82
83
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
absl-py,
etils,
flax,
jax,
jaxlib,
ml-collections,
numpy,
packaging,
typing-extensions,
wrapt,
# tests
keras,
pytestCheckHook,
tensorflow,
tensorflow-datasets,
torch,
}:
buildPythonPackage rec {
pname = "clu";
version = "0.0.12";
pyproject = true;
src = fetchFromGitHub {
owner = "google";
repo = "CommonLoopUtils";
tag = "v${version}";
hash = "sha256-ntqRz3fCXMf0EDQsddT68Mdi105ECBVQpVsStzk2kvQ=";
};
build-system = [
setuptools
];
dependencies = [
absl-py
etils
flax
jax
jaxlib
ml-collections
numpy
packaging
typing-extensions
wrapt
]
++ etils.optional-dependencies.epath;
pythonImportsCheck = [ "clu" ];
nativeCheckInputs = [
keras
pytestCheckHook
tensorflow
tensorflow-datasets
torch
];
disabledTests = [
# AssertionError: [Chex] Assertion assert_trees_all_close failed
"test_collection_mixed_async"
# flaky under load
"test_async_execution"
];
meta = {
description = "Common training loops in JAX";
homepage = "https://github.com/google/CommonLoopUtils";
changelog = "https://github.com/google/CommonLoopUtils/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|