Skip to content

Commit

Permalink
remove unnecessary things
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouTimeMachine committed Dec 19, 2023
1 parent 1f01f1c commit 85f9579
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 7 deletions.
Binary file removed docs/graph/CIFAR.png
Binary file not shown.
Binary file removed docs/graph/Data-Parallelism.png
Binary file not shown.
Binary file removed docs/graph/Pipeline-Parallelism.png
Binary file not shown.
Binary file removed docs/graph/Tensor-Parallelism.png
Binary file not shown.
Binary file removed docs/graph/transformer.png
Binary file not shown.
7 changes: 0 additions & 7 deletions docs/hw4.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,6 @@ MNIST 数据集 (Mixed National Institute of Standards and Technology database)

一般给出的 MNIST 数据集下载链接为 http://yann.lecun.com/exdb/mnist/index.html,然而目前需要登录验证。建议使用 4.1.1 中 torchvision.datasets 的方法准备该数据集。

```python
# DATA_PATH: where you want to place your dataset
from torchvision import datasets
MNIST_train = datasets.MNIST(DATA_PATH, train=True, download=True, transform=transform)
MNIST_test = datasets.MNIST(DATA_PATH, train=False, download=True, transform=transform)
```

#### [Carvana 数据集](https://www.kaggle.com/competitions/carvana-image-masking-challenge/data)

!!! warning "To be completed"
Expand Down

0 comments on commit 85f9579

Please sign in to comment.