上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 28 下一页
摘要: Figure,Axes,Axis 关系 Figure: 红色的外框,其实可以把它理解为一个大画板,我们所有的内容都会画在这个“画板”上 Axes: 蓝色的内框,Axis 指 x、y 坐标轴等(如果有三维那就还有 z 轴),代表的是 “坐标轴”。而 Axes 在英文里是 Axis 的复数形式,也就是说 阅读全文
posted @ 2021-06-10 10:52 哈哈哈喽喽喽 阅读(104) 评论(0) 推荐(0) 编辑
摘要: import pandas as pd train_pd = pd.read_csv("train.csv") # print(train_pd) select_pd = train_pd.loc[:,['Sold Price', 'Listed Price']] select_pd = selec 阅读全文
posted @ 2021-06-09 18:06 哈哈哈喽喽喽 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1、Visualize attention weights of multiple heads in this experiment. from matplotlib import pyplot as plt out = attention.attention.attention_weights.d 阅读全文
posted @ 2021-05-27 17:37 哈哈哈喽喽喽 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1、Modify keys in the toy example and visualize attention weights. Do additive attention and scaled dot-product attention still output the same attenti 阅读全文
posted @ 2021-05-27 17:32 哈哈哈喽喽喽 阅读(44) 评论(0) 推荐(0) 编辑
摘要: #2.What is the value of our learned w in the parametric attention pooling experiment? Why does it make the weighted region sharper when visualizing th 阅读全文
posted @ 2021-05-27 17:30 哈哈哈喽喽喽 阅读(84) 评论(0) 推荐(0) 编辑
摘要: #1、What can be the volitional cue when decoding a sequence token by token in machine translation? What are the nonvolitional cues and the sensory inpu 阅读全文
posted @ 2021-05-27 17:26 哈哈哈喽喽喽 阅读(71) 评论(0) 推荐(0) 编辑
摘要: def solution(nn): result = [1] cur = 2 chou = [2,3,5] while len(result) < nn: print(cur, result) if cur in chou: result.append(cur) cur += 1 continue 阅读全文
posted @ 2021-05-26 20:56 哈哈哈喽喽喽 阅读(51) 评论(0) 推荐(0) 编辑
摘要: def solution(nn): result = [1] cur = 2 chou = [2,3,5] while len(result) < nn: print(cur, result) if cur in chou: result.append(cur) cur += 1 continue 阅读全文
posted @ 2021-05-26 20:55 哈哈哈喽喽喽 阅读(54) 评论(0) 推荐(0) 编辑
摘要: huawei.com0.t.keepitpumpin.io 0p0n4lk6y.2gxcy-qhr20rfls9.com 0po3jgx7px4ihpzrkknxpt.3pwu7xi71cg-frzjzgs.com 0rs53w3d7hcn5wpb2.0gpppx5d9.com 1-180-206- 阅读全文
posted @ 2021-05-21 14:58 哈哈哈喽喽喽 阅读(2733) 评论(0) 推荐(0) 编辑
摘要: python3 亲试可行 1、pip install python-whois 2、 def is_registered(domain_name): """ A function that returns a boolean indicating whether a `domain_name` is 阅读全文
posted @ 2021-05-21 14:56 哈哈哈喽喽喽 阅读(97) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 28 下一页