diff --git a/docs/graph/CIFAR.png b/docs/graph/CIFAR.png deleted file mode 100644 index 38a11f1..0000000 Binary files a/docs/graph/CIFAR.png and /dev/null differ diff --git a/docs/graph/Data-Parallelism.png b/docs/graph/Data-Parallelism.png deleted file mode 100644 index f7fd6dd..0000000 Binary files a/docs/graph/Data-Parallelism.png and /dev/null differ diff --git a/docs/graph/Pipeline-Parallelism.png b/docs/graph/Pipeline-Parallelism.png deleted file mode 100644 index a0e7980..0000000 Binary files a/docs/graph/Pipeline-Parallelism.png and /dev/null differ diff --git a/docs/graph/Tensor-Parallelism.png b/docs/graph/Tensor-Parallelism.png deleted file mode 100644 index d85e36d..0000000 Binary files a/docs/graph/Tensor-Parallelism.png and /dev/null differ diff --git a/docs/graph/transformer.png b/docs/graph/transformer.png deleted file mode 100644 index 25adac8..0000000 Binary files a/docs/graph/transformer.png and /dev/null differ diff --git a/docs/hw4.md b/docs/hw4.md index a628930..f19a52b 100644 --- a/docs/hw4.md +++ b/docs/hw4.md @@ -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"