W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
SparseFeature
定義在:tensorflow/python/ops/parsing_ops.py。
用于解析Example的稀疏輸入要素的配置。
注意,最好使用VarLenFeature(可能與SequenceExample結合使用),以便解析SparseTensors而不是SparseFeature,因為它的簡單性。
通過使用SparseFeature配置解析Example獲得的非常相似的SparseTensor,SparseFeature包含:
例如,我們可以表示以下2D SparseTensor
SparseTensor(indices=[[3, 1], [20, 0]],
values=[0.5, -1.0]
dense_shape=[100, 3])
用Example輸入原型:
features {
feature { key: "val" value { float_list { value: [ 0.5, -1.0 ] } } }
feature { key: "ix0" value { int64_list { value: [ 3, 20 ] } } }
feature { key: "ix1" value { int64_list { value: [ 1, 0 ] } } }
}
SparseFeature配置為2個 index_key:
SparseFeature(index_key=["ix0", "ix1"],
value_key="val",
dtype=tf.float32,
size=[100, 3])
字段:
__new__
@staticmethod
__new__(
cls,
index_key,
value_key,
dtype,
size,
already_sorted=False
)
創(chuàng)建SparseFeature(index_key, value_key, dtype, size, already_sorted)的新實例。
index_key
value_key
dtype
size
already_sorted
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: