Skip to content

Commit b062357

Browse files
committed
Update
1 parent 63c1fe1 commit b062357

File tree

6 files changed

+69
-32
lines changed

6 files changed

+69
-32
lines changed

B-自然语言处理/B-专题-句嵌入.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
专题-句向量(Sentence Embedding)
1+
专题-句嵌入(Sentence Embedding)
22
===
33

44
Reference
@@ -19,6 +19,7 @@ Index
1919
- [词袋模型](#词袋模型)
2020
- [[2018] Power Mean 均值模型](#2018-power-mean-均值模型)
2121
- [[2017] SIF 加权模型](#2017-sif-加权模型)
22+
- [[]](#)
2223
- [无监督模型](#无监督模型)
2324
- [[2015] Skip-Thought Vector](#2015-skip-thought-vector)
2425
- [[2018] Quick-Thought Vectors](#2018-quick-thought-vectors)
@@ -121,6 +122,9 @@ Index
121122
-->
122123

123124

125+
### []
126+
127+
124128
## 无监督模型
125129

126130
### [2015] Skip-Thought Vector
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
专题-多模态
2+
===
3+
4+
Index
5+
---
6+
<!-- TOC -->
7+
8+
- [多模态词向量](#多模态词向量)
9+
- [Papers](#papers)
10+
11+
<!-- /TOC -->
12+
13+
# 多模态词向量
14+
15+
## Papers
16+
> [pdf](_papers/pdf/多模态(Multimodal)/多模态词向量)
17+
18+
19+

B-计算机视觉/B-专题-基本模型.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
> [Applications](https://keras.io/applications/) - Keras Documentation
44
55
- [2015] VGGNet(16/19) [2]
6+
- [2015] GoogleNet [10]
67
- [2016] Inception-v1/v2/v3 [4]
78
- [2016] ResNet [3]
89
- [2017] Xception [1]
@@ -39,4 +40,5 @@ Index
3940
- [6] MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications, arXiv 2017.
4041
- [7] Densely Connected Convolutional Networks, CVPR 2017.
4142
- [8] Learning Transferable Architectures for Scalable Image Recognition, arXiv 2017.
42-
- [9] MobileNetV2: Inverted Residuals and Linear Bottlenecks, CVPR 2018.
43+
- [9] MobileNetV2: Inverted Residuals and Linear Bottlenecks, CVPR 2018.
44+
- [10]

C-编程语言/Cpp-A-基础知识.md renamed to C-编程语言/Cpp-A-基础.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@
33
<!-- TOC -->
44

55
- [指针与引用](#指针与引用)
6-
- [左值引用与右值引用](#左值引用与右值引用)
6+
- [左值引用与右值引用](#左值引用与右值引用)
77
- [static 与 const](#static-与-const)
8-
- [const 相关代码](#const-相关代码)
8+
- [const 相关代码](#const-相关代码)
99
- [this 指针](#this-指针)
1010
- [inline 内联函数](#inline-内联函数)
11-
- [编译器对 inline 函数的处理步骤](#编译器对-inline-函数的处理步骤)
12-
- [inline 的优缺点](#inline-的优缺点)
13-
- [虚函数可以内联吗?](#虚函数可以内联吗)
11+
- [编译器对 inline 函数的处理步骤](#编译器对-inline-函数的处理步骤)
12+
- [inline 的优缺点](#inline-的优缺点)
13+
- [虚函数可以内联吗?](#虚函数可以内联吗)
1414
- [assert 与 sizeof](#assert-与-sizeof)
1515
- [C++ 中 struct、union、class](#c-中-structunionclass)
16-
- [C 与 C++ 中的结构体](#c-与-c-中的结构体)
17-
- [C++ 中 struct 和 class 的区别](#c-中-struct-和-class-的区别)
18-
- [联合体 union](#联合体-union)
16+
- [C 与 C++ 中的结构体](#c-与-c-中的结构体)
17+
- [C++ 中 struct 和 class 的区别](#c-中-struct-和-class-的区别)
18+
- [联合体 union](#联合体-union)
1919
- [用 C 实现 C++ 中的封装、继承和多态](#用-c-实现-c-中的封装继承和多态)
2020
- [友元函数与友元类](#友元函数与友元类)
2121
- [枚举类型 enum](#枚举类型-enum)
2222
- [其他](#其他)
23-
- [#pragma pack(n)](#pragma-packn)
24-
- [位域 Bit mode](#位域-bit-mode)
25-
- [关键字 volatile](#关键字-volatile)
26-
- [关键字 extern "C"](#关键字-extern-c)
27-
- [关键字 explicit](#关键字-explicit)
28-
- [关键字 using](#关键字-using)
29-
- [范围解析运算符 ::](#范围解析运算符-)
30-
- [关键字 decltype](#关键字-decltype)
23+
- [#pragma pack(n)](#pragma-packn)
24+
- [位域 Bit mode](#位域-bit-mode)
25+
- [关键字 volatile](#关键字-volatile)
26+
- [关键字 extern "C"](#关键字-extern-c)
27+
- [关键字 explicit](#关键字-explicit)
28+
- [关键字 using](#关键字-using)
29+
- [范围解析运算符 ::](#范围解析运算符-)
30+
- [关键字 decltype](#关键字-decltype)
3131

3232
<!-- /TOC -->
3333

C-编程语言/Python-A-基础.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Python-基础知识
2+
===
3+
4+
Index
5+
---
6+
7+
<!-- TOC -->
8+
9+
- [Python 中的垃圾回收机制](#python-中的垃圾回收机制)
10+
- [字符串格式化输出](#字符串格式化输出)
11+
- [旧式(%)](#旧式%)
12+
- [新式(`.format()`](#新式format)
13+
14+
<!-- /TOC -->
15+
16+
## Python 中的垃圾回收机制
17+
> [Python垃圾回收机制详解 - Xjng](http://www.cnblogs.com/Xjng/p/5128269.html) - 博客园
18+
19+
20+
## 字符串格式化输出
21+
22+
### 旧式(%)
23+
24+
25+
### 新式(`.format()`
26+

C-编程语言/Python-A-基础知识.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)