码迷,mamicode.com
首页 > 其他好文 > 详细

序列表示方法

时间:2019-06-01 21:32:58      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:http   ras   and   shuf   zed   image   als   embed   info   

Spatial signals

技术图片

Temporal signals

技术图片

# Sequence

技术图片

Sequence embedding

  • [b,seq_len,feature_len] # 1个句子10个单词每个单词4个意思,[1,10,4]

  • e.g. I like it.

import tensorflow as tf

tf.convert_to_tensor([[1,0,0],[0,1,0],[0,0,1]])
<tf.Tensor: id=4, shape=(3, 3), dtype=int32, numpy=
array([[1, 0, 0],
       [0, 1, 0],
       [0, 0, 1]], dtype=int32)>

[b,100,1]

  • [price,scalar,1] # 1-->1个点表示一个价格

技术图片

[b,28,28]

技术图片

  • 对图片扫描的次数变成了时间的概念

技术图片

Batch

  • [b,word num,word vec]

  • [word num,b,word vec]

技术图片

[words,word vec]

  • How to represent a word
    • [Rome, Italy, ...]
  • one hot

技术图片

  • sparse

  • high-dim

技术图片

  • semantic similarity

  • trainable

Word embedding

技术图片

  • Word2Vec vs GloVe

技术图片

Embedding Layer

  • Random initialized embedding
from tensorflow.keras import layers

x = tf.range(5)
x = tf.random.shuffle(x)
x
<tf.Tensor: id=10, shape=(5,), dtype=int32, numpy=array([0, 4, 3, 2, 1], dtype=int32)>
net = layers.Embedding(10,4)
net(x)
<tf.Tensor: id=26, shape=(5, 4), dtype=float32, numpy=
array([[-0.04665176, -0.00618398, -0.02745042, -0.0418861 ],
       [-0.00495533, -0.02990632, -0.04187028, -0.03159492],
       [ 0.00022942, -0.01628833, -0.00680885, -0.03196504],
       [-0.0023623 ,  0.04522124,  0.02052191, -0.02518519],
       [ 0.0211277 , -0.03581526,  0.00149528,  0.04243053]],
      dtype=float32)>
net.trainable
True
net.trainable_variables
[<tf.Variable 'embedding/embeddings:0' shape=(10, 4) dtype=float32, numpy=
 array([[-0.04665176, -0.00618398, -0.02745042, -0.0418861 ],
        [ 0.0211277 , -0.03581526,  0.00149528,  0.04243053],
        [-0.0023623 ,  0.04522124,  0.02052191, -0.02518519],
        [ 0.00022942, -0.01628833, -0.00680885, -0.03196504],
        [-0.00495533, -0.02990632, -0.04187028, -0.03159492],
        [ 0.04476041,  0.00983595,  0.01300793, -0.00486787],
        [ 0.00272337,  0.00402355, -0.04166143,  0.01867583],
        [-0.01088942,  0.02177001,  0.01363814, -0.04016535],
        [-0.04173249, -0.03866537, -0.0426992 ,  0.00479555],
        [ 0.02334514,  0.01809745, -0.03649411, -0.00876436]],
       dtype=float32)>]

序列表示方法

标签:http   ras   and   shuf   zed   image   als   embed   info   

原文地址:https://www.cnblogs.com/nickchen121/p/10960760.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!