-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
去除transformAttention评估模型时,是怎么处理维度不匹配的问题的? #16
Comments
您好,我想请教一下 作者原始的这个代码是如何跑通的?我在utils的73,74行 timeofday = (Time.hour * 3600 + Time.minute * 60 + Time.second) // Time.freq.delta.total_seconds() 这部分会报错 跪求指点😭 |
This comment has been minimized.
This comment has been minimized.
您好,我想请教下 作者代码的而两个文件在那个位置啊 /data/pems-bay.h5 /data/GMAN.pkl |
Dcrnn论文里面找
发自我的 iPhone
… 在 2021年4月8日,22:09,bingkuaibaoer ***@***.***> 写道:
您好,我想请教下 作者代码的而两个文件在那个位置啊 /data/pems-bay.h5 /data/GMAN.pkl
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
可是我只找到了pems这个文件,GMAN这个文件是自己处理得到的吗?感谢您的回复呀!
…------------------ 原始邮件 ------------------
发件人: "zhengchuanpan/GMAN" ***@***.***>;
发送时间: 2021年4月9日(星期五) 凌晨0:18
***@***.***>;
***@***.******@***.***>;
主题: Re: [zhengchuanpan/GMAN] 去除transformAttention评估模型时,是怎么处理维度不匹配的问题的? (#16)
Dcrnn论文里面找
发自我的 iPhone
> 在 2021年4月8日,22:09,bingkuaibaoer ***@***.***> 写道:
>
> 您好,我想请教下 作者代码的而两个文件在那个位置啊 /data/pems-bay.h5 /data/GMAN.pkl
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub, or unsubscribe.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
timeofday = (Time.hour * 3600 + Time.minute * 60 + Time.second) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
为了研究模型中各部分的影响,作者去除了transformAttention部分来评估模型性能,如果直接将此部分的代码注释,在执行decoder部分的spatialAttention的 X = tf.concat((X, STE), axis = -1)这一行代码会报维度不匹配错误,所以想请教作者在去除transformAttention模块来评估模型的性能时,是如何处理维度的
The text was updated successfully, but these errors were encountered: