上一页 1 ··· 136 137 138 139 140 141 142 143 144 ··· 342 下一页
摘要: # ./conda activate py38CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.To initialize your shell, run $ conda 阅读全文
posted @ 2021-02-14 22:44 emanlee 阅读(4412) 评论(0) 推荐(0)
摘要: GOOD POST https://towardsdatascience.com/epoch-vs-iterations-vs-batch-size-4dfb9c7ce9c9 Epoch 英 /ˈiːpɒk/ 美 /ˈepək/ n. 时代,纪元;值得纪念的事件(或日期);世(地质年代,纪下分世); 阅读全文
posted @ 2021-02-14 22:26 emanlee 阅读(9122) 评论(0) 推荐(0)
摘要: figure语法说明 figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True) num: 图像编号或名称,数字为编号 ,字符串为名称 figsize: 指定figure的宽和高,单位为 阅读全文
posted @ 2021-02-14 10:07 emanlee 阅读(12635) 评论(0) 推荐(0)
摘要: 在绘图的标题、坐标轴的文字中用上标或下标 格式:$正常文字^上标$ import matplotlib.pyplot as plt fig, ax = plt.subplots() ax.set(title=r'This is an expression $e^{\sin(\omega\phi)}$ 阅读全文
posted @ 2021-02-13 21:21 emanlee 阅读(657) 评论(0) 推荐(0)
摘要: 安装好了Anaconda3—后,运行开始菜单—>Anaconda3—>Anaconda Prompt ## CPUpip3 install tensorflow -i https://pypi.tuna.tsinghua.edu.cn/simple/## GPUpip3 install tensor 阅读全文
posted @ 2021-02-13 13:21 emanlee 阅读(138) 评论(0) 推荐(0)
摘要: Saving & Loading Model for Inference Save/Load state_dict (Recommended) Save: torch.save(model.state_dict(), PATH) Load: model = TheModelClass(*args, 阅读全文
posted @ 2021-02-12 22:30 emanlee 阅读(63) 评论(0) 推荐(0)
摘要: debug 时,右键, View as Array 阅读全文
posted @ 2021-02-09 16:58 emanlee 阅读(2210) 评论(0) 推荐(0)
摘要: from sklearn.model_selection import GridSearchCVfrom sklearn.model_selection import train_test_split Anaconda 3 \lib\site-packages\sklearn\model_selec 阅读全文
posted @ 2021-02-08 23:08 emanlee 阅读(589) 评论(0) 推荐(0)
摘要: Support Vector Regression(SVR) 资料[机器学习]回归--Support Vector Regression(SVR)https://blog.csdn.net/zwqjoy/article/details/80251707 python 机器学习之支持向量机非线性回归S 阅读全文
posted @ 2021-02-07 21:14 emanlee 阅读(1267) 评论(0) 推荐(0)
摘要: dataframe 列类型 df['客户id'] = df['客户id'].apply(pd.to_numeric) df = pd.DataFrame(a, dtype='float') #示例1 df = pd.DataFrame(data=d, dtype=np.int8) #示例2 df = 阅读全文
posted @ 2021-02-06 12:38 emanlee 阅读(297) 评论(0) 推荐(0)
上一页 1 ··· 136 137 138 139 140 141 142 143 144 ··· 342 下一页