Kirino 的技术档案
文章简介分类 Light Dark
文章归档
  • 2021-09-26

    字典推导

    构造字典 'China': 86, 'India': 91, 'United States': 1, 'Indonesia': 62, 'Brazil': 55, 'Pakistan': 92, 'Bangladesh': 880, 'Nigeria': 234, 'Russia': 7, 'Japan':…
    Read more ⟶
  • 2021-09-26

    0.618法(最优化方法)Python实现

    0.618法(最优化方法)Python实现
    Read more ⟶
  • 2021-09-19

    构建MLP模型、数据可视化及神经网络超参数微调

    利用顺序API构建回归MLP 用回归神经网络解决加州的住房问题 用Sickit-Learn中的fetch california housing 函数加载数据 使用顺序API来构建、训练、评估和使用回归MLP进行预测与我们进行分类非常相似 主要区别在于输出层只有一个神经元,并且不使用激活函数,而损失函数是均方误…
    Read more ⟶
  • 2021-09-19

    机器学习实战部分代码记录

    <div <style scoped .dataframe tbody tr th:only-of-type vertical-align: middle; .dataframe tbody tr th vertical-align: top; .dataframe thead th text-align:…
    Read more ⟶
  • 2021-09-19

    Python机器学习基础教程代码记录

    Keys of iris dataset: dict keys 'data', 'target', 'frame', 'target names', 'DESCR', 'feature names', 'filename' .. iris dataset: Iris plants dataset ------…
    Read more ⟶
  • 2021-09-19

    什么是可散列的数据类型

    什么是可散列的数据类型 &emsp;在Python词汇表( https://docs.python.org/3/glossary.html term-hashable https://docs.python.org/3/glossary.html term-hashable )中,关于可散列类型的定义有这样一…
    Read more ⟶
  • 2021-09-19

    当列表不是首选时

    数组 0.39807560121397423 0.39807560121397423 True 内存视图 5 -2 254, 255, 255, 255, 0, 0, 1, 0, 2, 0 array 'h', -2, -1, 1024, 1, 2 256 NumPy和SciPy array 0, 1, 2,…
    Read more ⟶
  • 2021-09-18

    列表操作

    为什么切片和区间会忽略最后一个元素 + 当只有最后一个位置信息时,可以快速看出切片和区间里有几个元素:range 3 和my list :3 都返回三个元素 + 当起止位置信息都可见时,我们可以快速计算出切片和区间长度,用最后一个数减去第一个下标(stop-start 即可 + 方便用任意一个下标来把序列分割…
    Read more ⟶
  • 2021-09-15

    具体命名元组

    City name='Tokyo', country='JP', population=36.933, coordinates= 35.68722, 139.691667 36.933 35.68722, 139.691667 'name', 'country', 'population', 'coordin…
    Read more ⟶
  • 2021-09-13

    第二周作业

    第二周作业 计算矩形面积 格式化输出 字符串逆序输出 照猫画虎求阶乘 天天向上的力量 B 同符号数学运算 快乐的数字 凯撒密码 B 括号配对检测 A 字符串反码 运行超市抹零结账行为 计算学生成绩的分差和平均分 使用比较运算符比较大小关系 手机店打折活动 新建一个文件,并保存一段话
    Read more ⟶
  • 2021-09-11

    残差神经网络(ResidualNet)

    残差神经网络(ResNet) 为什么神经网络的层数越来越深 由图可知随着神经网络层数的增加,神经网络的训练误差和测试误差相较于较低层数的神经网络都要更高。但是这个与越深的网络,训练误差和测试误差都要更小这个第一感觉相违背。 在相同的迭代次数下,更深的神经网络的误差更容易趋向于平稳。 神经网络随着层数增加误差率…
    Read more ⟶
  • 2021-09-09

    卷积神经网络(高级篇)

    构建高级卷积神经网络 以Google Net为例 GoogleNet的模型图为 可以看到其中有一个模块反复使用 Inception Module Inception Module 模型的具体结构图为 个人理解这个模块是将数据经过不同的卷积方式并保持图像大小不变得到不同的通来获得更多的信息,然后将最后的数据按通…
    Read more ⟶
    ← Prev Next →