OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Estimator
(Results
1 - 6
of
6
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
Estimator.java
40
public interface
Estimator
{
62
* criterion that is minimized by the
estimator
as follows: if
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
estimator.py
15
"""Base
Estimator
class."""
85
'
Estimator
is decoupled from Scikit Learn interface by moving into\n'
87
'available in the SKCompat class,
Estimator
will only accept input_fn.\n'
89
' est =
Estimator
(...) -> est = SKCompat(
Estimator
(...))')
393
`
Estimator
`.
407
also be used to load checkpoints from the directory into a
estimator
to
668
@deprecated('2017-03-25', 'Please use
Estimator
.export_savedmodel() instead.')
718
estimator
=self,
781
'consistent with what\'s used by tf.Learn
Estimator
\'s train/evaluate,
[
all
...]
/external/tensorflow/tensorflow/contrib/learn/python/learn/
learn_runner_test.py
31
from tensorflow.python.
estimator
import run_config as core_run_config_lib
56
"`RunConfig` instance is expected to be used by the `
Estimator
`")
58
"Pass `run_config` argument of the `experiment_fn` to the
Estimator
")
69
class
Estimator
(evaluable.Evaluable, trainable.Trainable):
85
super(TestExperiment, self).__init__(
Estimator
(), None, None)
/external/tensorflow/tensorflow/python/estimator/
estimator.py
16
"""Base
Estimator
class."""
35
from tensorflow.python.
estimator
import model_fn as model_fn_lib
36
from tensorflow.python.
estimator
import run_config
37
from tensorflow.python.
estimator
import util
38
from tensorflow.python.
estimator
import warm_starting_util
39
from tensorflow.python.
estimator
.export.export import build_all_signature_defs
40
from tensorflow.python.
estimator
.export.export import get_temp_export_dir
41
from tensorflow.python.
estimator
.export.export import get_timestamped_export_dir
67
@tf_export('
estimator
.
Estimator
')
[
all
...]
/frameworks/base/core/java/android/view/
VelocityTracker.java
47
private static native boolean nativeGetEstimator(long ptr, int id,
Estimator
outEstimator);
199
* Get an
estimator
for the movements of a pointer using past movements of the
206
* @param outEstimator The
estimator
to populate.
207
* @return True if an
estimator
was obtained, false if there is no information
212
public boolean getEstimator(int id,
Estimator
outEstimator) {
220
* An
estimator
for the movements of a pointer based on a polynomial model.
231
public static final class
Estimator
{
232
// Must match VelocityTracker::
Estimator
::MAX_DEGREE
/frameworks/native/include/input/
VelocityTracker.h
37
struct
Estimator
{
40
//
Estimator
time base.
93
// Gets an
estimator
for the recent movements of the specified pointer id.
94
// Returns false and clears the
estimator
if there is no information available
96
bool getEstimator(uint32_t id,
Estimator
* outEstimator) const;
132
virtual bool getEstimator(uint32_t id, VelocityTracker::
Estimator
* outEstimator) const = 0;
156
// Degree must be no greater than
Estimator
::MAX_DEGREE.
164
virtual bool getEstimator(uint32_t id, VelocityTracker::
Estimator
* outEstimator) const;
207
virtual bool getEstimator(uint32_t id, VelocityTracker::
Estimator
* outEstimator) const;
225
void populateEstimator(const State& state, VelocityTracker::
Estimator
* outEstimator) const
[
all
...]
Completed in 610 milliseconds