python3Packages.test-tube: init at 0.7.5

This commit is contained in:
Ben Darwin 2020-08-23 16:27:38 -04:00 committed by Jon
parent dc20c58d90
commit 6fdfeda8b1
2 changed files with 48 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };