forked from mirrors/nixpkgs
python3Packages.pytorch-lightning: init at 0.8.5
This commit is contained in:
parent
ef39cba42f
commit
7ab4ee9613
|
@ -0,0 +1,46 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, isPy27
|
||||||
|
, future
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytorch
|
||||||
|
, pyyaml
|
||||||
|
, tensorflow-tensorboard
|
||||||
|
, tqdm }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytorch-lightning";
|
||||||
|
version = "0.8.5";
|
||||||
|
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "PyTorchLightning";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "12zhq4pnfcwbgcx7cs99c751gp3w0ysaf5ykv2lv8f4i360w3r5a";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
future
|
||||||
|
pytorch
|
||||||
|
pyyaml
|
||||||
|
tensorflow-tensorboard
|
||||||
|
tqdm
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
# Some packages are not in NixPkgs; other tests try to build distributed
|
||||||
|
# models, which doesn't work in the sandbox.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pytorch_lightning" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Lightweight PyTorch wrapper for machine learning researchers";
|
||||||
|
homepage = "https://pytorch-lightning.readthedocs.io";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ tbenst ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4083,6 +4083,8 @@ in {
|
||||||
cudaSupport = false;
|
cudaSupport = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pytorch-lightning = callPackage ../development/python-modules/pytorch-lightning { };
|
||||||
|
|
||||||
pytorch-metric-learning = callPackage ../development/python-modules/pytorch-metric-learning { };
|
pytorch-metric-learning = callPackage ../development/python-modules/pytorch-metric-learning { };
|
||||||
|
|
||||||
pythondialog = callPackage ../development/python-modules/pythondialog { };
|
pythondialog = callPackage ../development/python-modules/pythondialog { };
|
||||||
|
|
Loading…
Reference in a new issue