mirror of
https://github.com/microsoft/ai-edu.git
synced 2026-08-31 01:10:28 +08:00
76e2ae134d
* Update 04.1-最小二乘法.md 公式修复 * Update 04.2-梯度下降法.md 公式修复 * Update 04.4-多样本计算.md 公式修复 * Update 04.5-梯度下降的三种形式.md * Update 04.5-梯度下降的三种形式.md * Update 05.2-神经网络法.md 公式修复 * Update 05.4-还原参数值.md 公式修复 * Update 04.5-梯度下降的三种形式.md 复原 * Update 06.2-线性二分类实现.md 公式修复 * Update 01.3-神经网络的基本工作原理.md 公式修复 * Update 02.1-线性反向传播.md 公式修复 * Update 17.3-卷积的反向传播原理.md * Update 17.3-卷积的反向传播原理.md 公式修复 * Update README.md 可能解决 #751 * Update 05.1-正规方程法.md * Update 04.0-单入单出单层-单变量线性回归.md * Update Deploy_website.yml
44 lines
1.4 KiB
YAML
44 lines
1.4 KiB
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: CI
|
|
|
|
# Controls when the action will run.
|
|
on:
|
|
# Triggers the workflow on push or pull request events but only for the main branch
|
|
# push:
|
|
# branches: [ master ]
|
|
# pull_request:
|
|
# branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
# This workflow contains a single job called "build"
|
|
build:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v2
|
|
|
|
# Set up Python env
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
|
|
# Set up Node.js env
|
|
- uses: actions/setup-node@v2.1.5
|
|
|
|
# Move content to Docs
|
|
- run: mv './基础教程' ./docs/基础教程
|
|
- run: mv './实践案例' ./docs/实践案例
|
|
|
|
# Installation dependency
|
|
- run: pip install git+https://github.com/IMSUVEN/mkdocs.git
|
|
- run: pip install mkdocs-material==7.1.8 mkdocs-material-extensions==1.0.1 pymdown-extensions==8.2 jieba==0.42.1 pygments==2.11.0
|
|
|
|
# Deploy website
|
|
- run: mkdocs gh-deploy --force
|