-
Notifications
You must be signed in to change notification settings - Fork 48
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
没看懂论文Alogrithm1 逻辑 #73
Comments
@dujifeng Here is an example. |
感谢您的回答!图中的意思我明白了。有一个点比较困惑,二进制表示的weight,为什么0代表-1,1代表+1?想请教一下这样做的内在逻辑 |
@dujifeng This can maximize the precision of calculation by making the values symmetric. |
您好!感谢您的回答。下面是我的理解,希望您看看哪里不太对: |
@dujifeng We have an arithmerical conversion from [-1, 1] to [0,1] as well as other biases of the number representation. You can check the LUT kernel code for details. Take 2-bit as an example, the origin numbers are x=[-2 -1 0 1], our numbers are y=[-3 -1 1 3], then x=(y-1)/2. |
Here are some discussions related to the problems: #35 |
您好,请问这张图来自哪篇文章? |
@x2e500614 This is provided by our team, not from any public paper. |
能否用简单的话或者举个例子说明论文对于权重的比特拆分逻辑和查找表构造的逻辑。
The text was updated successfully, but these errors were encountered: