随笔分类 -  tensorflow笔记

摘要:批标准化 tf.keras.layers.BatchNormalization 个人的应用结论:如果在执行批标准化的时候不想使用gamma和beta变量进行平移和缩放,最好还是使用tensorflow 1.*版本,并设置trainable=False就可以了。 参考文献:https://blog.c 阅读全文
posted @ 2022-05-27 10:00 深度机器学习 阅读(261) 评论(0) 推荐(0) 编辑
摘要:1、打印tfrecord,查看样本数据类型 import tensorflow as tf import os import glob count=0 path1='/Users/wangruojing/mt_project/mix_rerank/inputs/part-r-00002' for e 阅读全文
posted @ 2021-10-13 11:32 深度机器学习 阅读(220) 评论(0) 推荐(0) 编辑
摘要:1、 阅读全文
posted @ 2021-09-03 13:24 深度机器学习 阅读(163) 评论(0) 推荐(0) 编辑
摘要:在使用tensorflow搭建模型时会有特征工程的工作,今天介绍一下tensorflow做特征工程的api:tf.feature_column。 1、tf.feature_column.input_layer tf.feature_column.input_layer( features, feat 阅读全文
posted @ 2021-08-29 16:40 深度机器学习 阅读(1142) 评论(0) 推荐(0) 编辑