Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:

permissions:
id-token: write
contents: read
contents: write

jobs:
build_docker_image:
Expand All @@ -32,6 +32,8 @@ jobs:
working-directory: ./ci/docker
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.CI_PAT}}
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down
Binary file added anaconda_projects/db/project_filebrowser.db
Binary file not shown.
1 change: 1 addition & 0 deletions chapter_linear-networks/linear-regression-concise.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ trainer = gluon.Trainer(net.collect_params(), 'sgd', {'learning_rate': 0.03})

```{.python .input}
#@tab pytorch
#创建随机梯度下降(SGD)优化器,传入模型参数并设置学习率为0.03
trainer = torch.optim.SGD(net.parameters(), lr=0.03)
```

Expand Down
Loading