about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytorch-metric-learning/default.nix
blob: ec57a02f0acd48b47823c5dbd88608070c6c565c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
  stdenv,
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  isPy27,
  numpy,
  scikit-learn,
  pytestCheckHook,
  torch,
  torchvision,
  tqdm,
  faiss,
}:

buildPythonPackage rec {
  pname = "pytorch-metric-learning";
  version = "2.5.0";
  format = "setuptools";

  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "KevinMusgrave";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-1y7VCnzgwFOMeMloVdYyszNhf/zZlBJUjuF4qgA5c0A=";
  };

  propagatedBuildInputs = [
    numpy
    torch
    scikit-learn
    torchvision
    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
  nativeCheckInputs = [
    faiss
    pytestCheckHook
  ];

  disabledTests =
    [
      # TypeError: setup() missing 1 required positional argument: 'world_size'
      "TestDistributedLossWrapper"
      # require network access:
      "TestInference"
      "test_get_nearest_neighbors"
      "test_tuplestoweights_sampler"
      "test_untrained_indexer"
      "test_metric_loss_only"
      "test_pca"
      # flaky
      "test_distributed_classifier_loss_and_miner"
    ]
    ++ lib.optionals (stdenv.isLinux && stdenv.isAarch64) [
      # RuntimeError: DataLoader worker (pid(s) <...>) exited unexpectedly
      "test_global_embedding_space_tester"
      "test_with_same_parent_label_tester"
    ];

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