2022年9月21日

【python模块】email

摘要: 参考官方文档:https://docs.python.org/zh-cn/3/library/email.message.html 阅读全文

posted @ 2022-09-21 00:38 yesuuu 阅读(15) 评论(0) 推荐(0) 编辑

2022年3月25日

【linux学习】大学教程

摘要: 【一】什么是Unix/Linux 内核:引导过程最后启动的一个很复杂的程序。内核是操作系统的核心。 内核服务:内存管理,进程管理,进程间通信,输入输出,文件管理,安全和访问控制,网络访问。 内核两大类:单内核 vs 微内核 单内核是一个大程序做所有事情。速度快,规模大,不易维护,大多数Unix是单内 阅读全文

posted @ 2022-03-25 21:42 yesuuu 阅读(121) 评论(0) 推荐(0) 编辑

2022年3月16日

【python】pip的配置

摘要: 参考链接:https://www.runoob.com/w3cnote/pip-cn-mirror.html pip指定镜像: pip install pandas -i https://pypi.douban.com/simple pip install pandas --trusted-host 阅读全文

posted @ 2022-03-16 17:52 yesuuu 阅读(520) 评论(0) 推荐(0) 编辑

【python】python环境:使用virtualenv和virtualenvwrapper来管理

摘要: 一个很详细的环境配置文章:https://note.qidong.name/2018/03/python-data-analyze-init/ 还是他写的很好的知乎答案:https://www.zhihu.com/question/404402864 【新建virtualenv】 1、virtual 阅读全文

posted @ 2022-03-16 15:45 yesuuu 阅读(35) 评论(0) 推荐(0) 编辑

2022年1月13日

【python】迭代器与可迭代对象

摘要: 【可迭代对象】 可以直接作用在for循环的对象,拥有__iter__方法,该方法返回一个迭代器(甚至可以只返回一个含__next__方法的对象) 使用 isinstance(obj, Iterable)判断是否为可迭代对象 【迭代器】 在可迭代对象基础上额外拥有__next__方法。 (事实上,一个 阅读全文

posted @ 2022-01-13 16:38 yesuuu 阅读(100) 评论(0) 推荐(0) 编辑

【linux】加密/认证 & SSH

摘要: 参考文章:https://blog.csdn.net/u014675548/article/details/51915380 阅读全文

posted @ 2022-01-13 15:08 yesuuu 阅读(27) 评论(0) 推荐(0) 编辑

【深度学习】RNN论文合集

摘要: 【一】How to Construct Deep Recurrent Neural Networks 很好的读书笔记:https://www.cnblogs.com/lucifer1997/p/13615116.html 这篇是讲怎么把RNN扩展成deep的 【二】convolutional lon 阅读全文

posted @ 2022-01-13 15:07 yesuuu 阅读(1018) 评论(0) 推荐(0) 编辑

【torch】dataset, dataloader, sampler

摘要: 【dataset】 主要工作:处理idx到sample的映射,每个sample有x, y或者其他的 分两种:map式,iterable式 map dataset的实现: 1、数据长度:__len__ 2、取数据:__getitem__ iterable dataset要继承data.Iterable 阅读全文

posted @ 2022-01-13 15:05 yesuuu 阅读(579) 评论(0) 推荐(0) 编辑

2022年1月11日

【python】多重继承

摘要: 参考问题:https://stackoverflow.com/questions/9575409/calling-parent-class-init-with-multiple-inheritance-whats-the-right-way 多重继承方式: 1、如果都是普通类, 最好逐个 2、搞一个 阅读全文

posted @ 2022-01-11 16:53 yesuuu 阅读(39) 评论(0) 推荐(0) 编辑

2022年1月8日

【深度学习】沐神领读论文:ResNet

摘要: 【摘要】 提出问题:深的神经网络难训练。使用残差学习使容易。非常容易训练,很好的精度,增加层。Imagenet 152层的深度,比vgg更低的复杂度 CIFAR-10小数据,居然能训练100-1000层! COCO的目标检测数据集,用之前学习的残差网络,提升了28%。 【图】 图1:56层不如20层 阅读全文

posted @ 2022-01-08 22:09 yesuuu 阅读(79) 评论(0) 推荐(0) 编辑

导航