Carrawayang  

2024年3月2日

摘要: title: 计算机组成原理·中央处理器 date: 2021-04-06 12:01:51 type: "计算机组成原理" comments: false top_img: false 中央处理器 控制器:负责协调并控制计算机各部件执行程序的指令序列:取指令、分析指令、执行指令 运算器:对数据加工 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(5) 评论(0) 推荐(0) 编辑
 
摘要: title: 计算机网络·网络层 date: 2023-09-10 12:01:51 type: "计算机网络" comments: false top_img: false {% markmap %} 网络层 功能概述 数据报服务 简单灵活 无连接 尽最大努力交付 为了使路由器简单 可靠通信由传输 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(2) 评论(0) 推荐(0) 编辑
 
摘要: title: 计算机网络·传输层 date: 2023-09-11 12:01:51 type: "计算机网络" comments: false top_img: false {% markmap %} 传输层 功能概述 提供应用进程间的逻辑通信 复用和分用 复用 发送方不同的应用进程使用同一个传输 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(1) 评论(0) 推荐(0) 编辑
 
摘要: title: 计算机组成原理·虚拟存储器页式段式和段页式 date: 2021-04-06 12:01:51 type: "计算机组成原理" comments: false top_img: false 虚拟存储器·页式·段式·段页式 主存和辅存共同构成了虚拟存储器,在硬件和系统软件的共同管理下工作 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(5) 评论(0) 推荐(0) 编辑
 
摘要: title: 计算机组成原理·数据表示与运算 date: 2021-04-06 12:01:51 type: "计算机组成原理" comments: false top_img: false 数据表示和运算 进制 r进制 \(K_{n} K_{n-1} K_{n-2} \dots K_{0} K_{ 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(1) 评论(0) 推荐(0) 编辑
 
摘要: title: 计算机组成原理·指令系统 date: 2021-04-06 12:01:51 type: "计算机组成原理" comments: false top_img: false 指令系统 指令系统 是指令集体系结构ISA的核心 ISA主要包括: 指令格式 数据类型及格式 操作数的存放方式 程 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: title: 操作系统·同步问题 date: 2021-04-06 12:01:51 type: "操作系统" comments: false top_img: false 经典同步问题 1.生产者消费者问题 一组生产者进程(Producer) 一组消费者进程(Consumer) 共享初始为空 大小 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(1) 评论(0) 推荐(0) 编辑
 
摘要: title: 操作系统·简述 date: 2021-04-06 12:01:51 type: "操作系统" comments: false top_img: false 第一章 计算机系统概述 并发、共享、虚拟、异步 没有并发和共享,就没有虚拟和异步 并发和共享互为存在条件 只有系统有并发性,才能导 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(2) 评论(0) 推荐(0) 编辑
 
摘要: title: 数据结构·基本概念 date: 2021-04-06 12:01:51 type: "数据结构" comments: false top_img: false Data Structure Notes Author : "ebxeax" Version : 1.0 Refresh Da 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(2) 评论(0) 推荐(0) 编辑
 
摘要: title: 数据结构·查找算法 date: 2021-04-06 12:01:51 type: "数据结构" comments: false top_img: false 查找 1.顺序查找 一般表 (1)代码 typedef struct{ ElemType *elem; int tableLe 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: title: 数据结构·线性表 date: 2021-04-06 12:01:51 type: "数据结构" comments: false top_img: false 线性表 一、逻辑结构和基本操作 1. 逻辑结构 具有相同数据类型的n个数据元素的有限序列,表长n,n=0为空表 表头:第一个元素 阅读全文
posted @ 2024-03-02 22:04 Carraway 阅读(3) 评论(0) 推荐(0) 编辑
 
摘要: title: 数据结构·简述 date: 2021-04-06 12:01:51 type: "数据结构" comments: false top_img: false 数据结构绪论 一、数据结构:相互存在一种或多种特定关系的集合 结构:任何问题,数据元素不孤立存在,之间存在关系 逻辑结构 存储结构 阅读全文
posted @ 2024-03-02 22:03 Carraway 阅读(4) 评论(0) 推荐(0) 编辑
 
摘要: title: 数据结构·栈和队列 date: 2021-04-06 12:01:51 type: "数据结构" comments: false top_img: false 栈 栈(Stack):只允许在一端插入或删除的线性表 栈顶:线性表允许进行插入或删除的那一端 栈底:固定的,不允许进行插入和删 阅读全文
posted @ 2024-03-02 22:03 Carraway 阅读(1) 评论(0) 推荐(0) 编辑
 
摘要: title: 数据库·简述 date: 2021-04-06 12:01:51 type: "数据库" comments: false top_img: false 数据库DB 一、数据库系统概论 基本概念 数据库的四个基本概念:数据、数据库、数据库管理系统、数据库系统 数据DATA:描述事物的符号 阅读全文
posted @ 2024-03-02 22:02 Carraway 阅读(4) 评论(0) 推荐(0) 编辑
 
摘要: title: 计算机组成原理·Cache和主存的映射替换算法和写策略 date: 2021-04-06 12:01:51 type: "计算机组成原理" comments: false top_img: false Cache和主存的映射·替换算法·写策略 映射 Cache行中的信息是主存某个块的副 阅读全文
posted @ 2024-03-02 22:01 Carraway 阅读(14) 评论(0) 推荐(0) 编辑

2023年8月10日

摘要: sudo apt purge nodejs sudo apt autoremove sudo apt update sudo apt install -y curl curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - s 阅读全文
posted @ 2023-08-10 17:58 Carraway 阅读(601) 评论(0) 推荐(0) 编辑

2022年3月18日

摘要: 语法分析之 LL1分析法实现 一、设计目的 根据某一文法编制调试LL(1)分析程序,以便对任意输入的符号串进行分析。本次实验的目的主要是加深对预测分析LL(1)分析法的理解。 二、设计要求 程序输入/输出示例: 对下列文法,用LL(1)分析法对任意输入的符号串进行分析: 原文法: E->E+T|E- 阅读全文
posted @ 2022-03-18 21:40 Carraway 阅读(845) 评论(0) 推荐(0) 编辑

2022年2月1日

摘要: 一、指针说明 指针是包含另一变量的地址变量。 1、int *p p是一个指针,指向整型数。 2、int *P() p是一个函数,该函数返回一个指向整型的指针。 3、int (*p)() p是一个指针,该指针指向一个函数,这个函数返回一个整数。 4、int *p[] p是一个数组,该数组的每一个元素是 阅读全文
posted @ 2022-02-01 23:57 Carraway 阅读(117) 评论(0) 推荐(0) 编辑

2022年1月27日

摘要: Derivative Rules $$ \begin{aligned} &\frac{\delta E}{\delta w^1_{jk}}=\frac{\delta E}{\delta O_k^1}\frac{\delta O_k^1}{\delta w^1_{jk}}=\frac{\delta E 阅读全文
posted @ 2022-01-27 07:53 Carraway 阅读(42) 评论(0) 推荐(0) 编辑
 
摘要: 单层感知机 $$ \begin{aligned} & y = XW + b \ & y = \sum x_i*w_i+b\ \end{aligned} $$ Derivative $$ \begin{aligned} &E=\frac{1}{2}(O^1_0-t)^2\ &\frac{\delta 阅读全文
posted @ 2022-01-27 07:52 Carraway 阅读(45) 评论(0) 推荐(0) 编辑
 
摘要: Entropy Uncetainly measure of surprise higher entropy = less info $$Entropy = -\sum_i P(i)\log P(i)$$ Lottery import torch a = torch.full([4], 1/4.) a 阅读全文
posted @ 2022-01-27 07:45 Carraway 阅读(26) 评论(0) 推荐(0) 编辑
 
摘要: import torch import torch.nn.functional as F import torch import torch.nn as nn import torch.nn.functional as F import torch.optim as optim from torch 阅读全文
posted @ 2022-01-27 07:40 Carraway 阅读(140) 评论(0) 推荐(0) 编辑

2022年1月23日

摘要: 1 初识PyTorch¶ 1.1 张量 1.导入pytorch包 In [1]: import torch 2.创建一个未初始化的5x3张量 In [3]: x = torch.empty(5, 3) print(x) 3.创建一个随机初始化的5x3张量 In [4]: x = torch.rand 阅读全文
posted @ 2022-01-23 15:57 Carraway 阅读(498) 评论(0) 推荐(0) 编辑

2022年1月18日

摘要: 单层感知机 $$ \begin{aligned} & y = XW + b \ & y = \sum x_i*w_i+b\ \end{aligned} $$ Derivative $$ \begin{aligned} &E=\frac{1}{2}(O^1_0-t)^2\ &\frac{\delta 阅读全文
posted @ 2022-01-18 18:58 Carraway 阅读(61) 评论(0) 推荐(0) 编辑
 
摘要: Derivative Rules $$ \begin{aligned} &\frac{\delta E}{\delta w^1_{jk}}=\frac{\delta E}{\delta O_k^1}\frac{\delta O_k^1}{\delta w^1_{jk}}=\frac{\delta E 阅读全文
posted @ 2022-01-18 18:55 Carraway 阅读(35) 评论(0) 推荐(0) 编辑
 
摘要: MLP backward $$ \begin{aligned} &For \space an \space output \space layer \space node \space k\in K\ &\frac{\delta E}{\delta W_{jk}}=O_j\delta_k\ &whe 阅读全文
posted @ 2022-01-18 18:54 Carraway 阅读(34) 评论(0) 推荐(0) 编辑
 
摘要: Minima $$ f(x,y)=(x^2+y-11)^2+(x+y^2-7)^2 $$ $$ f(3.0, 2.0)=0.0\ f(-2.8505118, 3.131312)=0.0\ f(-3.779310, -3.283186)=0.0\ f(3.584428, -1.84126)=0.0\ 阅读全文
posted @ 2022-01-18 18:54 Carraway 阅读(31) 评论(0) 推荐(0) 编辑

2022年1月17日

摘要: 降维递推关系式 void view(){ int array[2][3][4]; int i, j, k, p, q, r; p = 2; q = 3; r = 4; for (int i = 0; i < p; ++i) { for (int j = 0; j < q; ++j) { for (i 阅读全文
posted @ 2022-01-17 16:32 Carraway 阅读(26) 评论(0) 推荐(0) 编辑

2022年1月14日

摘要: Activation Functions Sigmoid/Logstic 可能有梯度离散现象(导数接近0时) MSE $$ \begin{aligned} &loss = \sum[y-(xw+b)]^2\ &L2 -norm = ||y-(xw+b)||2\ &loss = norm(y-(xw+ 阅读全文
posted @ 2022-01-14 22:00 Carraway 阅读(197) 评论(0) 推荐(0) 编辑
 
摘要: Gradient Clarificaton 导数,derivate 偏微分,partial derivate 梯度,gradient $$ \begin{aligned} &\bigtriangledown{f} = (\frac{\delta{f}}{\delta{x_1}};\frac{\del 阅读全文
posted @ 2022-01-14 11:28 Carraway 阅读(33) 评论(0) 推荐(0) 编辑

2022年1月13日

摘要: basic data structure |Python|Pytorch| | | | |int|intTensor| |float|floatTensor| |int array|intTensor[d1, d2, ...]| |float array|floatTensor [d1, d2, . 阅读全文
posted @ 2022-01-13 18:51 Carraway 阅读(29) 评论(0) 推荐(0) 编辑

2021年12月29日

摘要: Ubuntu 21.04 On android A tweaked ubuntu-21.04 with xfce4 runs on android with termux/proot-distro This means now you can install ubuntu like above sc 阅读全文
posted @ 2021-12-29 22:18 Carraway 阅读(1074) 评论(0) 推荐(0) 编辑

2021年11月22日

摘要: https://www.cs.usfca.edu/~galles/visualization/Algorithms.html 阅读全文
posted @ 2021-11-22 14:25 Carraway 阅读(454) 评论(0) 推荐(0) 编辑

2021年11月7日

摘要: 1 阅读全文
posted @ 2021-11-07 19:52 Carraway 阅读(59) 评论(0) 推荐(0) 编辑

2021年9月7日

摘要: | # 🍭Tmoe-linux | | | | shell | | . <(curl -L gitee.com/mo2/linux/raw/2/2) | | | | | | > If you do not understand the following readme, please report 阅读全文
posted @ 2021-09-07 12:41 Carraway 阅读(1500) 评论(0) 推荐(0) 编辑

2021年8月19日

摘要: 第二章 数据的表示和运算 数制与编码 进制转换 使用二进制的原因 二进制与八进制、十六进制的转换 各种进制的书写方式 十进制转换为任意进制 整数部分 $$ \begin{align} &十进制转换二进制\ &如(75)_{10}\ &\frac{75}{2}=37……1\space K_0\ &\f 阅读全文
posted @ 2021-08-19 17:16 Carraway 阅读(219) 评论(0) 推荐(0) 编辑

2021年8月14日

摘要: 第一章 计算机系统概述 发展历程 | 计算机 | 时代 | | | | | | | 第一代计算机 | 电子管时代 | | | 第二代计算机 | 晶体管时代 | | | 第三代计算机 | 中小规模集成电路时代 | | | 第四代计算机 | 超大规模集成电路时代 | 产生了微处理器 | 计算机硬件的基本 阅读全文
posted @ 2021-08-14 21:03 Carraway 阅读(153) 评论(0) 推荐(0) 编辑

2021年8月11日

摘要: $$ \begin{align} &\lim_{n\rightarrow \infty}\frac{1}{n}(\sqrt{1+\cos{\frac{\pi}{n}}}+\sqrt{1+\cos{\frac{2\pi}{n}}}+...+\sqrt{1+\cos{\frac{n\pi}{n}}})\ 阅读全文
posted @ 2021-08-11 18:54 Carraway 阅读(77) 评论(0) 推荐(0) 编辑

2021年8月9日

摘要: 任务进度 408一刷完成 高数1单元结束 #8.9-8.15 408二刷强化 数学继续 英语三刷复习法 阅读全文
posted @ 2021-08-09 00:39 Carraway 阅读(18) 评论(0) 推荐(0) 编辑

2021年8月6日

摘要: I/O系统 CPU如何控制键盘I/O的完成? $$ \begin{align} &I/O控制方式 \begin{cases} &程序查询方式\ &程序中断方式\ &DMA控制方式\ \end{cases} \end{align} $$ I/O硬件 程序查询方式 程序中断方式 DMA控制方式 DMA控 阅读全文
posted @ 2021-08-06 18:25 Carraway 阅读(100) 评论(0) 推荐(0) 编辑