2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchPypi, buildPythonPackage
|
2019-02-28 10:57:08 +00:00
|
|
|
, numpy
|
2020-02-28 09:15:28 +00:00
|
|
|
, absl-py
|
2019-02-28 10:57:08 +00:00
|
|
|
, mock
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tensorflow-estimator";
|
2020-08-20 03:47:45 +01:00
|
|
|
version = "2.3.0";
|
2019-02-28 10:57:08 +00:00
|
|
|
format = "wheel";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "tensorflow_estimator";
|
|
|
|
inherit version format;
|
2020-08-20 03:47:45 +01:00
|
|
|
sha256 = "11n4sl9wfr00fv1i837b7a36ink86ggmlsgj7i06kcfc011h6pmp";
|
2019-02-28 10:57:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ mock numpy absl-py ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-02-28 10:57:08 +00:00
|
|
|
description = "TensorFlow Estimator is a high-level API that encapsulates model training, evaluation, prediction, and exporting.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://tensorflow.org";
|
2019-02-28 10:57:08 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ jyp ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|