Wiwi's Blog


  • Home

  • About

  • Tags

  • Categories

  • Search

MySql存储引擎InnoDB

Posted on 2021-08-14 | In 面试准备
Words count in article: 742 | Reading time ≈ 2

存储引擎:对数据库进行写入和读取,不同存储引擎使用不同的格式存放数据
Mysql服务器支持多种存储引擎,默认是InnoDB
对数据进行操作需要在内存上进行,而数据是存储在磁盘上的,磁盘读写比内存读写慢很多,从磁盘上一条一条地读数据很慢,所以InnoDB将数据划分为若干个页,以页作为磁盘和内存之间交互的基本单位,InnoDB中页的大小一般为 16 KB

Read more »

MapReduce and Hadoop

Posted on 2021-08-13 | In Big-Data Analytics Technology
Words count in article: 312 | Reading time ≈ 1

Why Parallelism

Increasing data size
Limitations of single node architecture(bandwidth/memory limitation..)
Emerging affordable cluster architecture(Clusters of Linux nodes, Gigabit Ethernet connection)

Read more »

Big Data Analytics

Posted on 2021-08-06 | In Big-Data Analytics Technology
Words count in article: 211 | Reading time ≈ 1

Scalable and Interpretable Data Analytics

Interactive Visualization

User’s Interpretation and Control

Statistical Learning

Statistical Patterns and Models. i.e. Machine Learning

Database

Scalable Data Processing and Data Semantics Modelling. i.e. capture information behind data

Parallel Processing

Massively Parallel Computation on Modern Hardware

Read more »

Spring -- IoC

Posted on 2021-05-18 | In Spring -- from 0
Words count in article: 1.1k | Reading time ≈ 5

IOC 容器具有依赖注入功能的容器,它可以创建对象,IOC 容器负责实例化、定位、配置应用程序中的对象及建立这些对象间的依赖。通常 new 一个实例,是由程序员控制的,而控制反转是指该工作不由程序员来做而是交给Spring容器来做。在Spring中BeanFactory是IOC容器的实际代表者。

Read more »

Spring -- 构建源码

Posted on 2021-05-15 | In Spring -- from 0
Words count in article: 854 | Reading time ≈ 4

首先从github上下载源代码
用IDEA打开

Read more »

Overview of Spring

Posted on 2021-05-11 | In Spring -- from 0
Words count in article: 986 | Reading time ≈ 3

暑假回国隔离中,想来自学一下java框架,以免实习的时候一问三不知。目前对开发的印象就是大二的时候在实验室,有mapper还有一些别的xml文件,当时就是简单的运用数据库、注册api之类的。虽然在写代码,但是没有一个总体对框架的概念。当年应该是简单的Mybatis,最近看了看决定还是从最popular的Spring开始看吧,过程可能很煎熬,毕竟想要同步看用法和源码。之前看hashmap源码的时候就在想,如果当时自学java查用法的时候顺手就把数据结构的源码看了,是不是未来会方便很多。Anyway就在blog记录一下自学Spring的进程啦,真就从0开始呗!

Read more »

Reinforcement Learning

Posted on 2021-03-22 | In AI Planning and Decision Making
Words count in article: 40 | Reading time ≈ 1

RL:

  • figure out what leads to good result / bad result
  • do something to get the good result

Adaptive Dynamic Programming:

  • Learn the model (transition & reward function): supervised learning
  • policy evaluation
Read more »

Latest on Transformers -- New Techniques after BERT

Posted on 2021-03-12 | In Neural Network and Deep Learning 2
Words count in article: 309 | Reading time ≈ 1

Review on Transformers

self-attention

Idea: building a relationship between any 2 inputs (including itself)
RNN compute the hidden states sequentially, while in Attention they are computed in parallel.
q: query (to match others) $q^i = W^qa^i$
k: key (to be matched) $k^i = W^ka^i$
v: value (to be extracted) $v^i = W^va^i$
$\alpha_{i,j}$: the strength of the relationship between $x_i$ and $x_j$, We use each query $q$ to match each key $k$.

Read more »

Partially Observable Markov Decision Processes

Posted on 2021-03-10 | In AI Planning and Decision Making
Words count in article: 7 | Reading time ≈ 1
POMDPConditional PlanPOMDP Value IterationDynamic Decision NetworkScaling up!
Read more »

Markov Decision Process - Tree search

Posted on 2021-03-03 | In AI Planning and Decision Making
Words count in article: 60 | Reading time ≈ 1

Online search (approximate solution)

Read more »
12…7Next Page

HUANG Liu

Love always wins.

65 posts
12 categories
22 tags
GitHub E-Mail
0%
© 2021 HUANG Liu | Site words total count: 74.9k
Powered by Hexo
|
Theme — NexT.Pisces v5.1.4