fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
96 lines
2.1 KiB
Nix
96 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
numpy,
|
|
lightning-utilities,
|
|
cloudpickle,
|
|
scikit-learn,
|
|
scikit-image,
|
|
packaging,
|
|
pretty-errors,
|
|
psutil,
|
|
py-deprecate,
|
|
torch,
|
|
pytestCheckHook,
|
|
torchmetrics,
|
|
pytorch-lightning,
|
|
pytest-doctestplus,
|
|
pytest-xdist,
|
|
}:
|
|
|
|
let
|
|
pname = "torchmetrics";
|
|
version = "1.4.0.post0";
|
|
in
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lightning-AI";
|
|
repo = "torchmetrics";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-tQqlLfdk8rSJqwR3rC7kqnM+pLFYZSPHfI7RmIi2Iq4=";
|
|
};
|
|
|
|
dependencies = [
|
|
numpy
|
|
lightning-utilities
|
|
packaging
|
|
pretty-errors
|
|
py-deprecate
|
|
];
|
|
|
|
# Let the user bring their own instance
|
|
buildInputs = [ torch ];
|
|
|
|
nativeCheckInputs = [
|
|
pytorch-lightning
|
|
scikit-learn
|
|
scikit-image
|
|
cloudpickle
|
|
psutil
|
|
pytestCheckHook
|
|
pytest-doctestplus
|
|
pytest-xdist
|
|
];
|
|
|
|
# A cyclic dependency in: integrations/test_lightning.py
|
|
doCheck = false;
|
|
passthru.tests.check = torchmetrics.overridePythonAttrs (_: {
|
|
pname = "${pname}-check";
|
|
doCheck = true;
|
|
# We don't have to install because the only purpose
|
|
# of this passthru test is to, well, test.
|
|
# This fixes having to set `catchConflicts` to false.
|
|
dontInstall = true;
|
|
});
|
|
|
|
disabledTests = [
|
|
# `IndexError: list index out of range`
|
|
"test_metric_lightning_log"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# These require too many "leftpad-level" dependencies
|
|
# Also too cross-dependent
|
|
"tests/unittests"
|
|
|
|
# A trillion import path mismatch errors
|
|
"src/torchmetrics"
|
|
];
|
|
|
|
pythonImportsCheck = [ "torchmetrics" ];
|
|
|
|
meta = with lib; {
|
|
description = "Machine learning metrics for distributed, scalable PyTorch applications (used in pytorch-lightning)";
|
|
homepage = "https://lightning.ai/docs/torchmetrics/";
|
|
changelog = "https://github.com/Lightning-AI/torchmetrics/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SomeoneSerge ];
|
|
};
|
|
}
|