69 words 1 mins.

介绍如何使用 hexo 搭建博客,并部署到 github.io 上 于 BIT 睿信书院学生科技学会学术部分享 如果以下 pdf 预览不能正常加载,戳这里下载
324 words 1 mins.

# 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...
309 words 1 mins.

transporter: 回收递质 Ca2+ channel: voltage-gated Ca2 + 内流,促使突触小泡与膜融合,释放递质 receptor: 两种类型 EPSP: 兴奋性突触后电位 短期的神经可塑性 重复的刺激会改变释放的概率 两种情况:抑制 - 促进 # Mechanisms of short term synaptic plasticity # Depression 储存的囊泡的消耗 receptor inactivated # Facilitation 缓冲剂 (buffer) 的抵消,与 Ca2 + 结合? 缓冲剂饱和后,Ca2 +...
544 words 1 mins.

视网膜 retina 视觉 meta: amplification but slow --> vision is slow 25Hz G protein GABA 两种方式 抑制 右图:比较二者的速度 bicuculline -> block GABA_A 电突触 tunnels bridges between cells -> ion channels 同步 (对于神经元)节律与震荡 gap junction 是什么:由 connexin 组成的通道 此外,还允许细胞间的信息传递 (如神经胶质细胞) 研究输入是怎么 integrated...
4.1k words 4 mins.

# Chapter 3 # 3.10 Relative Velocity VABV_{AB} VAB​ Velocity of A with respect to B # Chapter 4 Type of Forces: Contact Gravitational Electromagnetic Force Newton's First Law: Inertial Law Inertial Reference Frame: reference frame where First Law holds Accelerating (non-inertial) Mass: measure...
830 words 1 mins.

# 听觉 嗅觉 躯体感觉 lecturer: 杨国元 # ? 再现感觉的方法 学习的能力 大脑可塑性 脑科学有哪些主要的研究问题 利用人工耳蜗扩展人感知频率的范围? 学习的到底是什么部分(更高级)?初级的部分是与生俱来的吗(胎儿时期形成?) 甜苦 辣?对痛觉的着迷 事件和情感关联? 与联觉的区别 # 听觉 听觉认知神经科学的研究目标:声音到意义的建立(“无序”->” 有序 “) 从声音信号的本质着手研究 怎么表达声音:哪些指标 纯音(正弦波):将声音的物理指标与人的主观感受相联系 振幅:响度 频率:音高(音色 -...
376 words 1 mins.

Liposome micelle are structure made in lab, not found in nature Key functions: Anatomical barrier Regular ionic composition lipid bilayer: ensures polar molecules cannot cross lipophilic molecules and gases can dedicated transport mechanisms # The cellular membrane potential at rest permeable...
6.7k words 6 mins.

# 线性回归的从零实现 主要内容:基于 3.2 介绍的面向对象设计,手动实现线性回归,并重新介绍 3.2 中定义的各种模块以加深对面向对象设计的理解 # 定义模型 定义一个继承自 d2l.Module 的类作为模型,__init__方法中保存模型的参数 1234567class LinearRegressionScratch(d2l.Module): #@save """The linear regression model implemented from scratch."""...
5k words 5 mins.

# 面向对象的设计 ** 主要内容:** 介绍了 d2l 库中面向对象的设计,包括 Utilities, Module, DataModule, Trainer 等设计 (i) Module contains models, losses, and optimization methods; (ii) DataModule provides data loaders for training and validation; (iii) both classes are combined using the Trainer class, which allows us to train...
2.7k words 2 mins.

# 基于 Pytorch 的线性回归简介实现 主要内容:借助 Pytorch 框架,结合 d2l 面向对象设计,完成线性回归的简洁实现 # 准备 1234import numpy as npimport torchfrom torch import nnfrom d2l import torch as d2l torch.nn 包含了常用的神经网络层 # 模型定义 d2l.Module # 参数及其初始化 1234567class LinearRegression(d2l.Module): def __init__(self, lr): super().__init__()...