Merge pull request #80458 from bcdarwin/pytorch-metric-learning

python3Packages.pytorch-metric-learning: init at 0.9.81
This commit is contained in:
Benjamin Hipple 2020-05-25 21:09:15 -04:00 committed by GitHub
commit 82fbcf6ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, numpy
, scikitlearn
, pytorch
, torchvision
, tqdm
}:
buildPythonPackage rec {
pname = "pytorch-metric-learning";
version = "0.9.81";
disabled = isPy27;
src = fetchFromGitHub {
owner = "KevinMusgrave";
repo = pname;
rev = "cb23328aba64f7f4658374cc2920ef5d56cda5c8"; # no version tag
sha256 = "0c2dyi4qi7clln43481xq66f6r4fadrz84jphjc5phz97bp33ds8";
};
propagatedBuildInputs = [
numpy
pytorch
scikitlearn
torchvision
tqdm
];
meta = {
description = "Metric learning library for PyTorch";
homepage = "https://github.com/KevinMusgrave/pytorch-metric-learning";
changelog = "https://github.com/KevinMusgrave/pytorch-metric-learning/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}

View File

@ -3810,6 +3810,8 @@ in {
cudaSupport = false;
};
pytorch-metric-learning = callPackage ../development/python-modules/pytorch-metric-learning { };
pythondialog = callPackage ../development/python-modules/pythondialog { };
python2-pythondialog = callPackage ../development/python-modules/python2-pythondialog { };