机器学习
文章平均质量分 72
robator
这个作者很懒,什么都没留下…
展开
-
python将子目录文件复制至新根目录
将子目录文件复制至另一新目录,并保留目录名称原创 2022-06-08 10:29:50 · 1043 阅读 · 0 评论 -
python print 函数出错
python 内置函数print报错解析原创 2022-06-07 16:27:13 · 2113 阅读 · 0 评论 -
pytorch 实现MLP(多层感知机)
pytorch 实现多层感知机,主要使用torch.nn.Linear(in_features,out_features),因为torch.nn.Linear是全连接的层,就代表MLP的全连接层本文实例MNIST数据,输入层28×28=784个节点,2个隐含层,隐含层各100个,输出层10个节点开发平台,windows 平台,python 3.8.5,torch版本1.8.1+cpu#minist 用MLP实现,MLP也是使用pytorch实现的import torchvisionimpo原创 2021-12-09 08:42:39 · 28581 阅读 · 1 评论 -
RBF(Radial-Basis Function)网路之一:多元插值法
1 插值:在离散数学的基础上补插连续函数,使得这条连续曲线通过全部给定的离散数据点。(来自百度百科)插值除了给定的离散数据点外,连续曲线的其他点都属于“插入”进来的,所以称插值。对以一给定数据点的集合,可能会有多条插值曲线。插值和拟合的区别:插值要求曲线(或曲面)过全部的离散数据点,而拟合是寻求全局最接近的结果,...原创 2021-10-12 14:44:07 · 6394 阅读 · 1 评论 -
linux 下 pytorch 安装
参考资料:1https://github.com/pytorch/pytorch1彻底解决git clone和recursive慢的问题https://sirjamie.github.io/2020/10/18/git-clone/2解决 fatal error: third_party/lss/linux_syscall_support.h: 没有那个文件或目录2https://github.com/linux-on-ibm-z/linux-syscall-supp...原创 2021-10-12 14:05:27 · 2832 阅读 · 0 评论 -
jupyter notebook 某个cell 一直在运行
近期调试程序,发现一简单的代码一直在运行,很长时间不终止,代码如下:whole_df=pd.read_csv(r'./train.csv')community=whole_df['COMMUNITY_ID'].unique()for community_id in community: temp=check_result[check_result['COMMUNITY_ID']==community_id] start=temp.index.tolist()[0]原创 2021-08-25 21:47:26 · 1863 阅读 · 0 评论 -
deep learning 深度学习中英文版下载地址
度学习权威Yoshua Bengio和GAN之父Ian Goodfellow等人合著的DeepLearning经典教程《Deep Learning》。废话不多说,直接上链接。中文版pdf下载地址:https://pan.baidu.com/s/1hr8qadY中文版github地址:https://github.com/exacity/deeplearningbook-chinese英文版pdf下载地址:https://pan.baidu.com/s/1qYc1PkK英文版github地址:http原创 2021-07-12 09:48:41 · 10823 阅读 · 0 评论