codecamp

TensorFlow模块:tf.keras

模块:tf.keras

用于Python API的导入.

此文件是计算机生成的!请勿编辑.生成者:tensorflow/tools/api/generator/create_python_api.py脚本.

模块

activations模块:用于Python API的导入.

applications模块:用于Python API的导入.

backend模块:用于Python API的导入.

callbacks模块:用于Python API的导入.

constraints模块:用于Python API的导入.

datasets模块:用于Python API的导入.

estimator模块:用于Python API的导入.

initializers模块:用于Python API的导入.

layers模块:用于Python API的导入.

losses模块:用于Python API的导入.

metrics模块:用于Python API的导入.

models模块:用于Python API的导入.

optimizers模块:用于Python API的导入.

preprocessing模块:用于Python API的导入.

regularizers模块:用于Python API的导入.

utils模块:用于Python API的导入.

wrappers模块:用于Python API的导入.

class Model:Model将图层分组为具有训练和推理功能的对象.

class Sequential:线性叠层.

功能

Input(...):Input()用于实例化Keras张量.

其他成员

__cached__

__loader__

__spec__

TensorFlow函数教程:tf.io.gfile.walk
TensorFlow函数:tf.keras.Input
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

TensorFlow 函数介绍

TensorFlow 函数模块:tf

TensorFlow的image模块

TensorFlow使用之tf.io

TensorFlow使用之tf.keras

TensorFlow函数教程:tf.keras.applications

TensorFlow函数教程:tf.keras.backend

TensorFlow使用之tf.metrics

TensorFlow使用之tf.nn

TensorFlow使用之tf.python_io

TensorFlow 功能函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }