机器学习随笔
PJlei
学生
展开
-
Anaconda配置国内源
# 配置国内源,方便安装Numpy,Matplotlib等conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/# 配置国内源,安装PyTorch用conda config --add channels https://.原创 2021-03-14 21:23:16 · 634 阅读 · 0 评论 -
Visdom不能正常启动问题,python -m visdom.server提示Downloading scripts, this may take a little while
提示:******Checking for scripts. Downloading scripts, this may take a little while等了很长时间一直不能够下载,也不能启动服务最终在网上找到了结局方法,在这分享给大家1.首先打开visdom包下的sever.py文件我的路径如下H:\Anaconda3\Lib\site-packages\visdom,根据...原创 2020-02-08 22:56:47 · 3906 阅读 · 5 评论 -
torch.gather()通俗理解
torch.gather(input, dim, index, out=None) → Tensorinput (Tensor) – 源张量dim (int) – 索引的轴index (LongTensor) – 聚合元素的下标out (Tensor, optional) – 目标张量>>> t = torch.Tensor([[1,2],[3,4]])1 2...原创 2020-01-03 19:37:20 · 14017 阅读 · 0 评论 -
机器学习之代价函数
代价函数:代价函数在机器学习中的每一种算法中都很重要,因为训练模型的过程就是优化代价函数的过程。、1.定义:任何能够衡量模型预测出来的值h(θ)与真实值y之间的差异的函数都可以叫做代价函数C(θ),如果有多个样本,则可以将所有代价函数的取值求均值,记做J(θ)。因此很容易就可以得出以下关于代价函数的性质:对于每种算法来讲,代价函数不是唯一的。 代价函数是参数θ的函数。 总的代价函数J(...原创 2019-06-04 11:30:07 · 1042 阅读 · 0 评论 -
VScode 编写python程序 错误Module 'torch' has no 'from_numpy' memberpylint(no-member)
settings.json文件中添加一行代码问题解决{ "python.pythonPath": "E:\\anaconda\\python.exe", "python.linting.pylintPath":"E:\\anaconda\\pkgs\\pylint-1.8.4-py36_0\\Scripts\\pylint"}...原创 2019-09-20 09:52:17 · 4719 阅读 · 0 评论