mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
72 lines
2 KiB
Nix
72 lines
2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pytest-xdist
|
|
, torchvision
|
|
, pythonOlder
|
|
, matplotlib
|
|
, mock
|
|
, pytorch
|
|
, pynvml
|
|
, scikit-learn
|
|
, tqdm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ignite";
|
|
version = "0.4.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pytorch";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-dlKGXjUUnyYmPDilo0LQg9OkSkBnMYNgzlFLIfI0T6I=";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook matplotlib mock pytest-xdist torchvision ];
|
|
propagatedBuildInputs = [ pytorch scikit-learn tqdm pynvml ];
|
|
|
|
# runs succesfully in 3.9, however, async isn't correctly closed so it will fail after test suite.
|
|
doCheck = pythonOlder "3.9";
|
|
|
|
# Some packages are not in NixPkgs; other tests try to build distributed
|
|
# models, which doesn't work in the sandbox.
|
|
# avoid tests which need special packages
|
|
pytestFlagsArray = [
|
|
"--ignore=tests/ignite/contrib/handlers/test_clearml_logger.py"
|
|
"--ignore=tests/ignite/contrib/handlers/test_lr_finder.py"
|
|
"--ignore=tests/ignite/contrib/handlers/test_trains_logger.py"
|
|
"--ignore=tests/ignite/metrics/nlp/test_bleu.py"
|
|
"--ignore=tests/ignite/metrics/nlp/test_rouge.py"
|
|
"--ignore=tests/ignite/metrics/gan" # requires pytorch_fid; tries to download model to $HOME
|
|
"--ignore=tests/ignite/metrics/test_dill.py"
|
|
"--ignore=tests/ignite/metrics/test_psnr.py"
|
|
"--ignore=tests/ignite/metrics/test_ssim.py"
|
|
"tests/"
|
|
];
|
|
|
|
# disable tests which need specific packages
|
|
disabledTests = [
|
|
"idist"
|
|
"mlflow"
|
|
"tensorboard"
|
|
"test_integration"
|
|
"test_output_handler" # needs mlflow
|
|
"test_pbar" # slight output differences
|
|
"test_setup_clearml_logging"
|
|
"test_setup_neptune"
|
|
"test_setup_plx"
|
|
"test_write_results"
|
|
"trains"
|
|
"visdom"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "High-level training library for PyTorch";
|
|
homepage = "https://pytorch.org/ignite";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
};
|
|
}
|