python3Packages.test-tube: init at 0.7.5
This commit is contained in:
parent
dc20c58d90
commit
6fdfeda8b1
46
pkgs/development/python-modules/test-tube/default.nix
Normal file
46
pkgs/development/python-modules/test-tube/default.nix
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, isPy27
|
||||||
|
, pytestCheckHook
|
||||||
|
, future
|
||||||
|
, imageio
|
||||||
|
, numpy
|
||||||
|
, pandas
|
||||||
|
, pytorch
|
||||||
|
, tensorflow-tensorboard
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "test-tube";
|
||||||
|
version = "0.7.5";
|
||||||
|
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "williamFalcon";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0zpvlp1ybp2dhgap8jsalpfdyg8ycjhlfi3xrdf5dqffqvh2yhp2";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
future
|
||||||
|
imageio
|
||||||
|
numpy
|
||||||
|
pandas
|
||||||
|
pytorch
|
||||||
|
tensorflow-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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6737,6 +6737,8 @@ in {
|
|||||||
|
|
||||||
terminaltables = callPackage ../development/python-modules/terminaltables { };
|
terminaltables = callPackage ../development/python-modules/terminaltables { };
|
||||||
|
|
||||||
|
test-tube = callPackage ../development/python-modules/test-tube { };
|
||||||
|
|
||||||
testpath = callPackage ../development/python-modules/testpath { };
|
testpath = callPackage ../development/python-modules/testpath { };
|
||||||
|
|
||||||
testrepository = callPackage ../development/python-modules/testrepository { };
|
testrepository = callPackage ../development/python-modules/testrepository { };
|
||||||
|
Loading…
Reference in New Issue
Block a user