python3Packages.pytorch-metric-learning: 0.9.81 -> 0.9.94
This commit is contained in:
parent
888703c026
commit
c881ca60ed
|
@ -4,6 +4,7 @@
|
||||||
, isPy27
|
, isPy27
|
||||||
, numpy
|
, numpy
|
||||||
, scikitlearn
|
, scikitlearn
|
||||||
|
, pytestCheckHook
|
||||||
, pytorch
|
, pytorch
|
||||||
, torchvision
|
, torchvision
|
||||||
, tqdm
|
, tqdm
|
||||||
|
@ -11,15 +12,15 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytorch-metric-learning";
|
pname = "pytorch-metric-learning";
|
||||||
version = "0.9.81";
|
version = "0.9.94";
|
||||||
|
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "KevinMusgrave";
|
owner = "KevinMusgrave";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "cb23328aba64f7f4658374cc2920ef5d56cda5c8"; # no version tag
|
rev = "v${version}";
|
||||||
sha256 = "0c2dyi4qi7clln43481xq66f6r4fadrz84jphjc5phz97bp33ds8";
|
sha256 = "1i2m651isa6xk3zj8dhzdbmd1bdzl51bh6rxifx6gg22hfa5dj9a";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -30,6 +31,22 @@ buildPythonPackage rec {
|
||||||
tqdm
|
tqdm
|
||||||
];
|
];
|
||||||
|
|
||||||
|
preCheck = ''
|
||||||
|
export HOME=$TMP
|
||||||
|
export TEST_DEVICE=cpu
|
||||||
|
export TEST_DTYPES=float32,float64 # half-precision tests fail on CPU
|
||||||
|
'';
|
||||||
|
# package only requires `unittest`, but use `pytest` to exclude tests
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
disabledTests = [
|
||||||
|
# requires FAISS (not in Nixpkgs)
|
||||||
|
"test_accuracy_calculator_and_faiss"
|
||||||
|
# require network access:
|
||||||
|
"test_get_nearest_neighbors"
|
||||||
|
"test_tuplestoweights_sampler"
|
||||||
|
"test_untrained_indexer"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Metric learning library for PyTorch";
|
description = "Metric learning library for PyTorch";
|
||||||
homepage = "https://github.com/KevinMusgrave/pytorch-metric-learning";
|
homepage = "https://github.com/KevinMusgrave/pytorch-metric-learning";
|
||||||
|
|
Loading…
Reference in New Issue