From 29e58eb4fda9f4188bf1d3da2c789cc81f0d3e27 Mon Sep 17 00:00:00 2001 From: Aman Goyal Date: Tue, 2 Jul 2019 03:38:00 +0530 Subject: [PATCH] Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8394c2f..65ffc4e 100644 --- a/README.md +++ b/README.md @@ -536,7 +536,7 @@ loss_fn = torch.nn.MSELoss(reduction='sum') # Use the optim package to define an Optimizer that will update the weights of # the model for us. Here we will use Adam; the optim package contains many other -# optimization algoriths. The first argument to the Adam constructor tells the +# optimization algorithms. The first argument to the Adam constructor tells the # optimizer which Tensors it should update. learning_rate = 1e-4 optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)