From 107a98723195cd1c46c583caba0392e128713ffc Mon Sep 17 00:00:00 2001 From: Jinyong Yang Date: Tue, 17 Sep 2019 18:54:19 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E8=87=AA=E5=B7=B1=E8=AE=A4=E4=B8=BA=E5=BE=88=E4=B8=8D=E9=94=99?= =?UTF-8?q?=E7=9A=84B=E7=AB=99=E4=B8=8A=E7=9A=84=E8=A7=86=E9=A2=91?= =?UTF-8?q?=E8=B5=84=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -- 金勇 2019-09 --- math/README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/math/README.md b/math/README.md index af34e4b..b7feda2 100644 --- a/math/README.md +++ b/math/README.md @@ -40,12 +40,25 @@ -deadline: 2019.06.20 -链接: + +链接: ## 综合应用 1. 搜索引擎:如何打造一个简单的分布式搜索引擎 2. 人脸识别:如何从亿万候选集中,快速识别出正确的人脸 3. 推荐系统:如何用协同过滤、矩阵分解打造一个推荐系统 + + + +## 视频资料 + +(金勇补充) + +*[B站,白板机器学习系列](https://space.bilibili.com/97068901?spm_id_from=333.788.b_765f7570696e666f.1) + +*[B站,李宏毅机器学习2017](https://www.bilibili.com/video/av10590361?from=search&seid=16461404092812033231) + +*[B站,台大林轩田-机器学习(基石)](https://www.bilibili.com/video/av12463015?from=search&seid=17874823900742104442) +*[B站,台大林轩田-机器学习(技法)](https://www.bilibili.com/video/av36760800?from=search&seid=17874823900742104442) \ No newline at end of file From c74d91f3813e93bc7a79c85fc98c2335ef9a0f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steve-=E9=87=91=E5=8B=87?= Date: Tue, 17 Sep 2019 18:55:10 +0800 Subject: [PATCH 2/2] Update ccpp.yml --- .github/workflows/ccpp.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ccpp.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 0000000..1247fb0 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: configure + run: ./configure + - name: make + run: make + - name: make check + run: make check + - name: make distcheck + run: make distcheck