Post List
Essential knowledge for CNN
# 卷积层做了什么 # 平移不变性 考虑检测某个图像特征的模型 当图像的特征经过平移后,理应对模型的结果影响不大 ==> 对图像的每个位置应用 相同的 weights ==> 卷积核 # 局部性 有时候我们只关注图像的局部特征,距离较远的图像应当对模型的输出影响较小 ==> 考虑某个像素周围一定范围的图像 ==> 卷积核的大小 # 运算 选取一个窗口,进行互相关运算 窗口大小即为卷积核(kernel_size)大小 # Conv2d 12345678910111213class Conv2d( in_channels: int,...
more...Pandas常用指令
整理了 pandas 库的常用指令 iloc 切片,索引 1print(train_data.iloc[0:4, [0, 1, 2, 3, -3, -2, -1]]) concat 拼接 1all_features = pd.concat((train_data.iloc[:, 1:-1], test_data.iloc[:, 1:])) 处理数值 12345678numeric_features = all_features.dtypes[all_features.dtypes != 'object'].index# 获取所有 数值类...
more...matplotlib小技巧
近日使用 matplotlib 绘制图形较多,遂总结一些 matplotlib 的使用技巧 绘制 散点图,并统计散点密度 效果图: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566import numpy as npimport matplotlib.pyplot as pltfrom matplotlib.colors import ListedColormap, LogNormdef...
more...How to build your own blog
介绍如何使用 hexo 搭建博客,并部署到 github.io 上 于 BIT 睿信书院学生科技学会学术部分享 如果以下 pdf 预览不能正常加载,戳这里下载
more...Lecture 3
# Molecular basis of action potential selectivity filter: select ions activation gate 记录单个通道的电流?原理是什么 open probability? 类比作原子的衰变?布朗运动 single channel conductance: 通道打开时的电流(电化学力一定时) 神经元上的离子通道密度是不同的 密度越大,threshold 越小(Na+) passive: how signal decays 2 kinds of resistance membrane resistance...
more...