机器学习
文章平均质量分 76
羊城迷鹿
你相信魔法吗?
展开
-
点赞收藏:PyTorch常用代码段整理合集
转载机器之心来源:知乎作者:张皓众所周知,程序猿在写代码时通常会在网上搜索大量资料,其中大部分是代码段。然而,这项工作常常令人心累身疲,耗费大量时间。所以,今天小编转载了知乎上的一篇文章,介绍了一些常用PyTorch代码段,希望能够为奋战在电脑桌前的众多程序猿们提供帮助!本文代码基于 PyTorch 1.0 版本,需要用到以下包import collectionsimport os...转载 2019-08-14 10:03:34 · 276 阅读 · 1 评论 -
pytorch加载模型时使用map_location来在CPU、GPU间辗转腾挪
假设我们只保存了模型的参数(model.state_dict())到文件名为modelparameters.pth, model = Net()cpu -> cpu或者gpu -> gpu:checkpoint = torch.load('modelparameters.pth')model.load_state_dict(checkpoint)cpu -> g...转载 2020-01-03 19:06:49 · 15333 阅读 · 2 评论 -
对近期学到的一些分类函数的整理
cross-entrophy(交叉熵)单标签多分类任务任务表述为从n个候选类别中选1个目标类别t,假设第i类的得分为sis_isi,目标类的得分为sts_tst【注意这里的得分就是模型直接输出的一个结果,并没有经过sigmod之类的处理,也没有要求其在01之间的约束】,则损失函数如下−logest∑i=1nesi=−st+log∑i=1nesi-\log \frac{e^{s_t}}{\sum\limits_{i=1}^n e^{s_i}}= - s_t + \log \sum\lim原创 2021-11-09 16:47:53 · 796 阅读 · 0 评论 -
基于随机森林的偏置-方差分解实验
引入包和超参数设置import pandas as pdfrom sklearn.model_selection import train_test_splitfrom sklearn.datasets import load_bostonfrom sklearn.ensemble import RandomForestRegressorfrom sklearn.metrics import mean_squared_errorimport matplotlib.pyplot as pltt原创 2021-03-06 20:02:03 · 846 阅读 · 1 评论 -
手动实现随机森林并做数据实验
获取波士顿房价数据集import numpy as npfrom numpy import *import randomfrom sklearn.model_selection import train_test_splitfrom sklearn.datasets import load_bostonfrom sklearn.metrics import r2_scorebost...原创 2019-10-31 14:19:33 · 1686 阅读 · 0 评论 -
Logistic回归总结
原文:http://blog.csdn.net/dongtingzhizi/article/details/15962797PDF下载地址:http://download.csdn.net/detail/lewsn2008/65474631.引言 看了Stanford的Andrew Ng老师的机器学习公开课中关于Logistic Regression的讲解,然后又看了《机器学习实战...转载 2019-04-01 11:23:58 · 190 阅读 · 0 评论 -
xgboost下载时提示xgboost-xxx.whl is not a supported wheel on this platform.
出错命令 python3 -m pip install xgboost-0.82-cp37-cp37m-win_amd64.whl输入如下命令:import pip._internalprint(pip._internal.pep425tags.get_supported())[('cp37', 'cp37m', 'win32'), ('cp37', 'none', 'win3...原创 2019-04-02 22:26:30 · 1020 阅读 · 0 评论 -
使用sklearn的逻辑回归预测鸢尾花
文章目录导入所需的库导入鸢尾花数据集划分训练集和测试集将特征使用均值方差法缩放缩放将特征使用最大最小值法缩放LogisticRegression类的参数含义LogisticRegression类的具体使用将交叉验证与网格搜索相结合:GridSearchCVRandomizedSearchCV进行实际检验导入所需的库from sklearn import datasetsimport nump...原创 2019-04-24 11:27:55 · 2522 阅读 · 0 评论