blob: d133362c3fb2fe2a24232b85149ae273b5dfd4dd (
plain) (
blame)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
isPy27,
pytestCheckHook,
future,
imageio,
numpy,
pandas,
torch,
tensorboard,
}:
buildPythonPackage rec {
pname = "test-tube";
version = "0.628";
format = "setuptools";
disabled = isPy27;
src = fetchFromGitHub {
owner = "williamFalcon";
repo = pname;
rev = version;
sha256 = "0w60xarmcw06gc4002sy7bjfykdz34gbgniswxkl0lw8a1v0xn2m";
};
nativeCheckInputs = [ pytestCheckHook ];
propagatedBuildInputs = [
future
imageio
numpy
pandas
torch
tensorboard
];
meta = with lib; {
homepage = "https://github.com/williamFalcon/test-tube";
description = "Framework-agnostic library to track and parallelize hyperparameter search in machine learning experiments";
license = licenses.mit;
maintainers = [ maintainers.tbenst ];
};
}
|