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 习近平访问金砖国家新开发银行 7904068
- 2 拒绝肖飞打招呼的医生3天涨粉4.6万 7808144
- 3 李铁案二审维持原判刑期20年 7712690
- 4 网警守护“数字世界身份信息” 7617188
- 5 86岁老人与已故儿子的女友结婚 7522919
- 6 抗癌博主等到女儿放学回家才离世 7425555
- 7 蔡澜被曝病危 本人深夜回应 7331750
- 8 部分中国供应商按原价向美恢复发货 7233217
- 9 曾黎团队傲慢公关丢了人心 7140895
- 10 神十九乘组撤离空间站 7040904