723 1 分钟

# 概述 用到的资料包括: 课程主页: 6.851: Advanced Data Structures 课程视频: 【MIT 公开课】6.851 高级数据结构(完结・中英字幕・机翻) # 计算模型 数据结构的讨论基于 pointer machine 模型。该模型包括一个根节点 (root), 合法的操作包括 新建节点 x = new node 域查找 look up fields x = y.field 域设置 set up fields x.field = y 基本计算 x = y+z etc. 其中, x, y 是根节点的域。删除节点的操作暂时不讨论。 # Temporal...
1.4k 1 分钟

# Experiment 10: Random Forest This is the report of Experiment 10: Random Forest. # Purpose This is a relaxing experiment. In this experiment, we need to complete some requirements according to the experimental instructions, which are about implementing a random forest. # Procedure and Results We...
5.6k 5 分钟

# Experiment 5: SVM This is the report of Experiment 5: SVM. # Linear SVM - basic # Purpose In this part, we will use a basic linear SVM to classify a group of data. The train set and test set are given as file training_1.txt and test_1.txt. # Procedure A basic linear SVM with regular term can be...
17k 15 分钟

# 基本概念 # 概念、功能和分类 # 概念 计算机网络是一些采用单一技术的、互联的、自治的计算机系统的集合,用来实现资源共享和信息传递。 其包括三个基本要求: 自治的 (autonomous): 需要具有独立的硬件和操作系统 互联的 (interconnected): 通过通讯模块和接口交换信息 单一技术 (a single technology): 采用相同的协议和标准 # 因特网 因特网 (Internet) 是一些互联网子网连接而成的逻辑网络,其遵循的顶层协议是 TCP/IP 协议。因特网是最大的互连网。 从拓扑结构上看,因特网由结点 (node) 和连接结点的链路 (link)...
1.6k 1 分钟

# Experiment 9: Decision Tree This is the report of Experiment 9: Decision Tree. # Purpose In this experiment, we want to classify the given wine dataset with a decision tree. I chose the ID3 algorithm, which decides whether it's a leaf node with information gain. # Procedure # generate training...
558 1 分钟

# 概述 # 传输层的功能 # 传输层的寻址 # UDP 协议 UDP 协议全称用户数据报协议 (User Datagram Protocol, UDP), 是运输层上最主要的无连接传输协议。UDP 只在 IP 的数据报服务之上增加了以下功能: 复用 (multiplexing) 和分用 (inverse multiplexing) 差错检测 # UDP 的数据报格式 # UDP 的应用场景 # 实时传输协议 (RTP) 用于传输流媒体信息,在实时应用中采用。 # 实时传输控制协议 (RCTP) 用来处理流同步信息,为源提供反馈信息。 # TCP 协议 TCP 协议全称传输控制协议...
1k 1 分钟

# 作者及单位 # 相关工作 Deep Image Prior Deep Geometric Prior # 三维重建的基本知识 # 数据的采集方法 数据采集方法可以分为以下几种: # 表面重建 去噪、光滑化、上池化 是基本操作 # 模型的平滑化 # 一般的表面重建流程 # 泊松重建 # Method # 符号约定 符号 含义 \hat 第lll 次迭代后的网格模型 \Delta \hat 第lll 次迭代产生的顶点位移 ClC_lCl​ 第lll 次迭代前输入的随机噪声 # pipeline # 初始化 采用凸包或更为泛化的 α\alphaα-shape...