91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

tensorflow模型怎么查看參數

小億
105
2024-03-13 20:47:26
欄目: 深度學習

要查看TensorFlow模型的參數,可以使用model.summary()方法來打印出模型的結構和參數數量。示例代碼如下:

import tensorflow as tf

# 創建模型
model = tf.keras.Sequential([
    tf.keras.layers.Dense(64, activation='relu', input_shape=(784,)),
    tf.keras.layers.Dense(64, activation='relu'),
    tf.keras.layers.Dense(10)
])

# 打印模型的參數
model.summary()

運行以上代碼,會輸出類似如下的結果:

Model: "sequential"
_________________________________________________________________
Layer (type)                 Output Shape              Param #   
=================================================================
dense (Dense)                (None, 64)                50240     
_________________________________________________________________
dense_1 (Dense)              (None, 64)                4160      
_________________________________________________________________
dense_2 (Dense)              (None, 10)                650       
=================================================================
Total params: 55,050
Trainable params: 55,050
Non-trainable params: 0
_________________________________________________________________

以上結果中,Param #列顯示了每個層的參數數量,Total params列顯示了總的參數數量。

0
眉山市| 资阳市| 苍梧县| 忻城县| 祁东县| 余干县| 平乡县| 宾阳县| 五原县| 罗江县| 洪洞县| 石首市| 玉门市| 大石桥市| 新津县| 保德县| 烟台市| 安乡县| 凯里市| 尼勒克县| 永年县| 滦平县| 阿城市| 江都市| 汝州市| 洛隆县| 桓台县| 茂名市| 福鼎市| 高阳县| 鲁甸县| 奉节县| 揭阳市| 包头市| 陇南市| 湖北省| 图木舒克市| 荥经县| 庄河市| 都江堰市| 太仓市|