mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
Merge pull request #215197 from bcdarwin/pytorch-grad-cam
python310Packages.grad-cam: init at 1.4.6
This commit is contained in:
commit
ecc96be978
65
pkgs/development/python-modules/grad-cam/default.nix
Normal file
65
pkgs/development/python-modules/grad-cam/default.nix
Normal file
@ -0,0 +1,65 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, matplotlib
|
||||
, numpy
|
||||
, opencv4
|
||||
, pillow
|
||||
, scikitlearn
|
||||
, torch
|
||||
, torchvision
|
||||
, ttach
|
||||
, tqdm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "grad-cam";
|
||||
version = "1.4.6";
|
||||
disabled = pythonOlder "3.6";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-sL4+UUfC60JWAgJPvXeVGUHAskuoceVYwYDrYlibUOE=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace requirements.txt --replace "opencv-python" "opencv"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
matplotlib
|
||||
numpy
|
||||
opencv4
|
||||
pillow
|
||||
scikitlearn
|
||||
torchvision
|
||||
ttach
|
||||
tqdm
|
||||
];
|
||||
|
||||
# Let the user bring their own instance (as with torchmetrics)
|
||||
buildInputs = [
|
||||
torch
|
||||
];
|
||||
|
||||
doCheck = false; # every nontrivial test tries to download a pretrained model
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pytorch_grad_cam"
|
||||
"pytorch_grad_cam.metrics"
|
||||
"pytorch_grad_cam.metrics.cam_mult_image"
|
||||
"pytorch_grad_cam.metrics.road"
|
||||
"pytorch_grad_cam.utils"
|
||||
"pytorch_grad_cam.utils.image"
|
||||
"pytorch_grad_cam.utils.model_targets"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Advanced AI explainability for computer vision.";
|
||||
homepage = "https://jacobgil.github.io/pytorch-gradcam-book";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
@ -4065,6 +4065,8 @@ self: super: with self; {
|
||||
|
||||
gql = callPackage ../development/python-modules/gql { };
|
||||
|
||||
grad-cam = callPackage ../development/python-modules/grad-cam { };
|
||||
|
||||
gradient = callPackage ../development/python-modules/gradient { };
|
||||
|
||||
gradient-utils = callPackage ../development/python-modules/gradient-utils { };
|
||||
|
Loading…
Reference in New Issue
Block a user