<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Muggledy&#39;s Blog</title>
  <icon>https://muggledy.top/icon.png</icon>
  
  <link href="https://muggledy.top/atom.xml" rel="self"/>
  
  <link href="https://muggledy.top/"/>
  <updated>2023-12-28T14:06:39.000Z</updated>
  <id>https://muggledy.top/</id>
  
  <author>
    <name>Muggledy</name>
    
  </author>
  
  <generator uri="https://hexo.io/">Hexo</generator>
  
  <entry>
    <title>SM.MS图片资源下载</title>
    <link href="https://muggledy.top/posts/43947/"/>
    <id>https://muggledy.top/posts/43947/</id>
    <published>2023-12-22T00:51:23.000Z</published>
    <updated>2023-12-28T14:06:39.000Z</updated>
    
    
    <summary type="html">基于Selenium+Request+Python线程池批量下载SM.MS个人图片资源数据...</summary>
    
    
    
    
    <category term="Python" scheme="https://muggledy.top/tags/Python/"/>
    
    <category term="爬虫" scheme="https://muggledy.top/tags/%E7%88%AC%E8%99%AB/"/>
    
  </entry>
  
  <entry>
    <title>Pytorch入门教程</title>
    <link href="https://muggledy.top/posts/35908/"/>
    <id>https://muggledy.top/posts/35908/</id>
    <published>2021-06-08T01:39:12.000Z</published>
    <updated>2021-06-09T02:34:08.000Z</updated>
    
    
    <summary type="html">首先简要介绍了反向传播的原理，然后以线性回归模型、Softmax多分类模型以及MLP多层感知器模型为例从头搭建网络并训练，相应地还给出了代码的简洁写法...</summary>
    
    
    
    <category term="深度学习" scheme="https://muggledy.top/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/"/>
    
    <category term="DL基础" scheme="https://muggledy.top/categories/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0/DL%E5%9F%BA%E7%A1%80/"/>
    
    
    <category term="Pytorch" scheme="https://muggledy.top/tags/Pytorch/"/>
    
  </entry>
  
  <entry>
    <title>Python基础 - 面向对象编程</title>
    <link href="https://muggledy.top/posts/22901/"/>
    <id>https://muggledy.top/posts/22901/</id>
    <published>2021-05-01T13:05:41.000Z</published>
    <updated>2021-05-05T15:36:03.000Z</updated>
    
    
    <summary type="html">类是创建新对象类型的机制，当解决一个问题的时候，面向对象会把事物抽象成对象的概念，就是说这个问题里面有哪些对象，然后给对象赋一些属性和方法，然后让每个对象去执行自己的方法，问题得到解决...</summary>
    
    
    
    <category term="计算机基础" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/"/>
    
    <category term="编程语言" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/"/>
    
    
    <category term="Python" scheme="https://muggledy.top/tags/Python/"/>
    
  </entry>
  
  <entry>
    <title>Python基础 - 程序结构与函数编程</title>
    <link href="https://muggledy.top/posts/176/"/>
    <id>https://muggledy.top/posts/176/</id>
    <published>2021-04-27T03:45:30.000Z</published>
    <updated>2021-05-05T07:12:53.000Z</updated>
    
    
    <summary type="html">介绍python程序结构与控制流，同时为了更好地实现模块化，会将实现指定功能的程序封装为函数...</summary>
    
    
    
    <category term="计算机基础" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/"/>
    
    <category term="编程语言" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/"/>
    
    
    <category term="Python" scheme="https://muggledy.top/tags/Python/"/>
    
  </entry>
  
  <entry>
    <title>Python基础 - 类型和对象</title>
    <link href="https://muggledy.top/posts/5311/"/>
    <id>https://muggledy.top/posts/5311/</id>
    <published>2021-04-24T12:55:45.000Z</published>
    <updated>2021-05-01T11:32:11.000Z</updated>
    
    
    <summary type="html">Python程序中保存的所有数据都是围绕对象这一概念来构建的，对象包括一些基本的数据类型，如数字、字符串、列表和字典，也可以通过类的形式创建用户自定义的对象...</summary>
    
    
    
    <category term="计算机基础" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/"/>
    
    <category term="编程语言" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/"/>
    
    
    <category term="Python" scheme="https://muggledy.top/tags/Python/"/>
    
  </entry>
  
  <entry>
    <title>Numpy基础教程</title>
    <link href="https://muggledy.top/posts/10423/"/>
    <id>https://muggledy.top/posts/10423/</id>
    <published>2021-04-21T12:25:45.000Z</published>
    <updated>2024-06-23T16:40:44.832Z</updated>
    
    
    <summary type="html">NumPy是Python语言的一个扩展程序库，支持大量的维度数组与矩阵运算，此外也针对数组运算提供大量的数学函数库。在机器学习和图像处理方向，使用numpy替代原生python计算能够带来极大的速度提升...</summary>
    
    
    
    <category term="计算机基础" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/"/>
    
    <category term="编程语言" scheme="https://muggledy.top/categories/%E8%AE%A1%E7%AE%97%E6%9C%BA%E5%9F%BA%E7%A1%80/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/"/>
    
    
    <category term="Python" scheme="https://muggledy.top/tags/Python/"/>
    
  </entry>
  
  <entry>
    <title>Butterfly魔改部分记录</title>
    <link href="https://muggledy.top/posts/65257/"/>
    <id>https://muggledy.top/posts/65257/</id>
    <published>2021-03-25T07:53:40.000Z</published>
    <updated>2021-09-08T06:29:53.000Z</updated>
    
    
    <summary type="html">在原主题基础上参考小冰、Akilar、乐特等人的魔改对主题样式及细节进行修改和完善，对其中部分改动进行记录以供后续参考...</summary>
    
    
    
    
    <category term="Butterfly" scheme="https://muggledy.top/tags/Butterfly/"/>
    
  </entry>
  
</feed>
