上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页
摘要: import matplotlib.pyplot as plt from matplotlib import ticker import seaborn as sns import pandas as pd import numpy as np plt.style.use('ggplot') # f 阅读全文
posted @ 2022-02-27 19:48 呦呦南山 阅读(93) 评论(0) 推荐(0) 编辑
摘要: import numpy as np import pandas as pd import matplotlib.pyplot as plt #matplotlib inline # 画第1个图:折线图 x=np.arange(1,100) plt.subplot(221) plt.plot(x,x 阅读全文
posted @ 2022-02-27 16:34 呦呦南山 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 在使用TSNE对高维数据进行降维可视化处理时发现: 1.数据样本量对于TSNE很关键。以2类样本为例,至少需要1类数据样本多于20个,或者是数据样本量总数大于40个。 2.在数据样本量充足的情况下,TSNE的效果要好于PCA。但在数据样本量较少的情况下,TSNE的效果不如PCA。 阅读全文
posted @ 2022-02-27 10:02 呦呦南山 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 论文写出来一定要投,一定要多写,多投稿,脸皮要厚,通过被拒能直面挫折失败。 1.what is the most important for you to write a paper in English (1)The ability to communicate in Chinese Think 阅读全文
posted @ 2022-02-26 16:44 呦呦南山 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1.Basic introduction to the field, which is comprehensible to a scientist in any discipline. 2.Detailed background , comprehensible to a scientist in 阅读全文
posted @ 2022-02-26 11:21 呦呦南山 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 使用 model.device 阅读全文
posted @ 2022-02-23 15:17 呦呦南山 阅读(100) 评论(0) 推荐(0) 编辑
摘要: print(f"./feature_model/save_feature_state_aug_{num_item[i]}_{k}_bcq")其中 num_item[i],k是变量 阅读全文
posted @ 2022-02-23 15:00 呦呦南山 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 问题: c = F.relu(policy_model.Q.c1(exp_list[i][k].unsqueeze(0)))error: *** RuntimeError: Expected all tensors to be on the same device, but found at lea 阅读全文
posted @ 2022-02-23 14:52 呦呦南山 阅读(3135) 评论(0) 推荐(0) 编辑
摘要: import csv #导入csv模块,该模块包含于python标准库中 filename='111.csv' with open(filename,'r')as file: #1.创建阅读器对象 reader=csv.reader(file) #2.读取文件头信息 header_row=next( 阅读全文
posted @ 2022-02-16 18:28 呦呦南山 阅读(438) 评论(0) 推荐(0) 编辑
摘要: { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https: 阅读全文
posted @ 2022-02-15 11:11 呦呦南山 阅读(290) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 16 下一页