blob: 68b760131346208b538441524506b93fab44fff2 (
plain)
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
|
{
lib,
fetchPypi,
buildPythonPackage,
numpy,
absl-py,
mock,
}:
buildPythonPackage rec {
pname = "tensorflow-estimator";
version = "2.15.0";
format = "wheel";
src = fetchPypi {
pname = "tensorflow_estimator";
inherit version;
format = "wheel";
hash = "sha256-rt8h7sf7LckRUPyRoc4SvETbtyJ4oItY55/4fJ4o8VM=";
};
propagatedBuildInputs = [
mock
numpy
absl-py
];
meta = {
description = "TensorFlow Estimator is a high-level API that encapsulates model training, evaluation, prediction, and exporting";
homepage = "http://tensorflow.org";
license = lib.licenses.asl20;
};
}
|