HomeSort by relevance Sort by last modified time
    Searched defs:export (Results 1 - 25 of 216) sorted by null

1 2 3 4 5 6 7 8 9

  /external/tensorflow/tensorflow/contrib/learn/python/learn/
export_strategy.py 15 """ExportStrategy class represents different flavors of model export."""
31 """A class representing a type of model export.
37 name: The directory name under the export base directory where exports of
39 export_fn: A function that writes an export, given an estimator, a
43 Note the export_fn() may choose whether or not to export based on the eval
63 def export(self, member in class:ExportStrategy
71 estimator: the Estimator to export.
72 export_path: A string containing a directory where to write the export.
73 checkpoint_path: The checkpoint path to export. If None (the default),
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/
Makefile 13 --export-width=$(word 1, $(subst x, , $(@))) \
14 --export-height=$(word 2, $(subst x, , $(subst /, , $(@)))) \
15 --export-png=hicolor/$(word 1, $(subst /, ,$(@)))/apps/$(word 2, $(subst /, , $@))
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
svm.py 188 def export(self, export_dir, signature_fn=None, member in class:SVM
191 """See BaseEstimator.export."""
207 """Same as BaseEstimator.export, but uses some defaults."""
211 return super(SVM, self).export(export_dir=export_dir,
dnn.py 35 from tensorflow.contrib.learn.python.learn.utils import export
495 def export(self, member in class:DNNClassifier
503 """See BaseEstimator.export."""
509 return super(DNNClassifier, self).export(
515 export.classification_signature_fn_with_prob),
772 def export(self, member in class:DNNRegressor
780 """See BaseEstimator.export."""
785 return super(DNNRegressor, self).export(
790 signature_fn=signature_fn or export.regression_signature_fn,
    [all...]
dnn_linear_combined.py 35 from tensorflow.contrib.learn.python.learn.utils import export
808 def export(self, member in class:DNNLinearCombinedClassifier
1127 def export(self, member in class:DNNLinearCombinedRegressor
    [all...]
linear.py 34 from tensorflow.contrib.learn.python.learn.utils import export
600 def export(self, member in class:LinearClassifier
608 """See BaseEstimator.export."""
613 return super(LinearClassifier, self).export(
619 export.classification_signature_fn_with_prob),
836 def export(self, member in class:LinearRegressor
    [all...]
estimator.py 48 from tensorflow.contrib.learn.python.learn.utils import export
669 def export( member in class:BaseEstimator
672 input_fn=export._default_input_fn, # pylint: disable=protected-access
717 return export._export_estimator(
780 'The signature of the input_fn accepted by export is changing to be '
    [all...]
  /external/tensorflow/tensorflow/contrib/session_bundle/
exporter.py 15 """Export a TensorFlow model.
47 """Callback to copy files using `gfile.Copy` to an export directory.
51 copy additional supplementary files into the export directory (in which case
56 basename in the export directory.
168 clear_devices: If device info of the graph should be cleared upon export.
173 assets_callback: callback with two argument called during export with the
237 def export(self, member in class:Exporter
245 export_dir_base: A string path to the base export dir.
247 global step counter to append to the export directory path and set
258 RuntimeError: if the export would overwrite an existing directory
    [all...]
  /external/tensorflow/tensorflow/python/estimator/
exporter.py 15 """`Exporter` class represents different flavors of model export."""
33 """A class representing a type of model export."""
39 A directory name under the export base directory where exports of
45 def export(self, estimator, export_path, checkpoint_path, eval_result, member in class:Exporter
50 estimator: the `Estimator` to export.
51 export_path: A string containing a directory where to write the export.
52 checkpoint_path: The checkpoint path to export.
54 is_the_final_export: This boolean is True when this is an export in the
62 The string path to the exported directory or `None` if export is skipped.
84 export path
113 def export(self, estimator, export_path, checkpoint_path, eval_result, member in class:_SavedModelExporter
168 def export(self, estimator, export_path, checkpoint_path, eval_result, member in class:FinalExporter
228 def export(self, estimator, export_path, checkpoint_path, eval_result, member in class:LatestExporter
    [all...]
  /external/tensorflow/tensorflow/contrib/lookup/
lookup_ops.py 444 def export(self, name=None): member in class:MutableHashTable
469 tensors = table.export()
648 def export(self, name=None): member in class:MutableDenseHashTable
673 tensors = table.export()
  /external/libcap/libcap/
cap_extint.c 84 const struct cap_ext_struct *export = local
90 if ((export == NULL)
91 || memcmp(export->magic, external_magic, CAP_EXT_MAGIC_SIZE)) {
100 blen = export->length_of_capset;
108 val = export->bytes[bno++][set];
110 val |= export->bytes[bno++][set] << 8;
112 val |= export->bytes[bno++][set] << 16;
114 val |= export->bytes[bno++][set] << 24;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportEditor.java 17 package com.android.ide.eclipse.adt.internal.editors.export;
31 * Multi-page form editor for export.properties in Export Projects.
ExportFieldsPart.java 17 package com.android.ide.eclipse.adt.internal.editors.export;
29 * Section part for editing the properties in an Export editor.
37 section.setText("Export Properties");
38 section.setDescription("Properties of export.properties:");
44 "List of properties you can edit in export.properties"); //tooltip
ExportLinksPart.java 17 package com.android.ide.eclipse.adt.internal.editors.export;
34 * Links section part for export properties page.
55 buf.append(": blah blah do something (like build/export).");
ExportPropertiesPage.java 17 package com.android.ide.eclipse.adt.internal.editors.export;
32 * Page for export properties, used by {@link ExportEditor}.
43 /** Export fields part */
45 /** Export links part */
49 super(editor, PAGE_ID, "Export Properties"); // tab's label, user visible, keep it short
62 form.setText("Android Export Properties");
AbstractPropertiesFieldsPart.java 17 package com.android.ide.eclipse.adt.internal.editors.export;
40 * Section part for editing fields of a properties file in an Export editor.
193 AdtPlugin.log(e, "Failed to replace in export.properties");
230 AdtPlugin.log(e, "Failed to append to export.properties: %s", line);
303 AdtPlugin.log(e, "Failed to set field to export.properties value");
  /device/generic/goldfish-opengl/
common.mk 69 # Module exports are defined by calling emugl-export. Here is an example:
73 # $(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
74 # $(call emugl-export,SHARED_LIBRARIES,libcutils)
99 # This is the list of recognized export types we support for now.
128 $(eval _emugl.$(_mod).export.$(_type) :=)\
134 # $2: Value(s) to append to the export
135 emugl-export = \
136 $(eval _emugl.$(_emugl_MODULE).export.$1 += $2)\
139 emugl-export-outer = \
140 $(eval _emugl.$(_emugl_MODULE).export.$1 += $2
    [all...]
  /prebuilts/go/darwin-x86/src/go/printer/
printer_test.go 34 export checkMode = 1 << iota
50 if mode&export != 0 {
189 {"comments.input", "comments.x", export},
33 export checkMode = 1 << iota const
  /prebuilts/go/linux-x86/src/go/printer/
printer_test.go 34 export checkMode = 1 << iota
50 if mode&export != 0 {
189 {"comments.input", "comments.x", export},
33 export checkMode = 1 << iota const
  /external/scapy/scapy/layers/tls/
cert.py 194 # This deals with the rare RSA 'kx export' call.
708 def export(self, filename, fmt="DER"): member in class:Cert
710 Export certificate in 'fmt' format (DER or PEM) to file 'filename'
    [all...]
  /libcore/ojluni/src/main/java/java/util/prefs/
XmlSupport.java 39 * XML Support for java.util.prefs. Methods to import and export preference
87 * Export the specified preferences node and, if subTree is true, all
98 static void export(OutputStream os, final Preferences p, boolean subTree) method in class:XmlSupport
145 // Node is locked to export its contents and get a
361 * Export the specified Map<String,String> to a map document on
  /prebuilts/go/darwin-x86/src/cmd/api/
goapi.go 173 w.export(pkg)
227 // export emits the exported package features.
228 func (w *Walker) export(pkg *types.Package) { func
  /prebuilts/go/linux-x86/src/cmd/api/
goapi.go 173 w.export(pkg)
227 // export emits the exported package features.
228 func (w *Walker) export(pkg *types.Package) { func
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeySelectionPage.java 17 package com.android.ide.eclipse.adt.internal.wizards.export;
20 import com.android.ide.eclipse.adt.internal.wizards.export.ExportWizard.ExportWizardPage;
163 // get the alias from the project previous export, and look for a match as
KeystoreSelectionPage.java 17 package com.android.ide.eclipse.adt.internal.wizards.export;
20 import com.android.ide.eclipse.adt.internal.wizards.export.ExportWizard.ExportWizardPage;

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 9