TensorFlow 2.10上线:Windows上扩展GPU支持,TF-DF 1.0发布
机器之心报道
TensorFlow 2.10 已发布,还没有更新的小伙伴现在可以更新了。
import tensorflow as tf
embedding = tf.keras.layers.Embedding(
input_dim=10,
output_dim=3,
mask_zero=True) # Infer a correct padding mask.
# Instantiate a Keras multi-head attention (MHA) layer,
# a layer normalization layer, and an `Add` layer object.
mha = tf.keras.layers.MultiHeadAttention(key_dim=4, num_heads=1)
layernorm = tf.keras.layers.LayerNormalization()
add = tf.keras.layers.Add()
# Test input.
x = tf.constant([[1, 2, 3, 4, 5, 0, 0, 0, 0],
[1, 2, 1, 0, 0, 0, 0, 0, 0]])
# The embedding layer sets the mask.
x = embedding(x)
# The MHA layer uses and propagates the mask.
a = mha(query=x, key=x, value=x, use_causal_mask=True)
x = add([x, a]) # The `Add` layer propagates the mask.
x = layernorm(x)
# The mask made it through all layers.
print(x._keras_mask)
> tf.Tensor(
> [[ True True True True True False False False False]
> [ True True True False False False False False False]], shape=(2, > 9), dtype=bool)
掌握「声纹识别技术」:前20小时交给我,后9980小时……
© THE END
转载请联系本公众号获得授权
投稿或寻求报道:content@jiqizhixin.com
关注公众号:拾黑(shiheibook)了解更多
[广告]赞助链接:
四季很好,只要有你,文娱排行榜:https://www.yaopaiming.com/
让资讯触达的更精准有趣:https://www.0xu.cn/
关注网络尖刀微信公众号
随时掌握互联网精彩
随时掌握互联网精彩
赞助链接
排名
热点
搜索指数
- 1 奋力打开改革发展新天地 7933193
- 2 保时捷断臂求生 7937814
- 3 刘强东提前发年终奖 7814540
- 4 “冷资源”里的“热经济” 7732593
- 5 全球约有1.9亿妇女为内异症患者 7653486
- 6 国足原主帅李铁已上诉 7548264
- 7 中方回应特朗普威胁收回巴拿马运河 7464457
- 8 山姆代购在厕所分装蛋糕 7342244
- 9 喝水后有4种表现提示肾有问题 7299019
- 10 男子闪婚生女后发现妻子结过7次婚 7196848