Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
giovannivolpe committed Apr 15, 2024
1 parent e175b3f commit 1be74b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tutorials/getting-started/GS111_first_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Training your first model\n",
"# Training Your First Model\n",
"\n",
"In this section, you'll train a simple feedforward neural network on MNIST using Deeplay. You'll define the model, loss function, optimizer, and training loop, and then train the model on the dataset."
"In this section, you'll train a simple feedforward neural network on the MNIST using Deeplay. You'll define the model, loss function, optimizer, and training loop, and then train the model on the dataset."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Loading the dataset\n",
"## Loading the Dataset\n",
"\n",
"Data can come from anywhere. MNIST is most easily loaded using the torchvision library, which provides a simple interface for downloading and loading common datasets. Here, you'll load the MNIST dataset and create a PyTorch DataLoader to iterate over the dataset in batches."
]
Expand Down
2 changes: 1 addition & 1 deletion tutorials/getting-started/GS121_configure.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Working with Deeplay Modules\n",
"# Configuring Deeplay Objects\n",
"\n",
"In this section, you'll explore the difference between Deeplay and PyTorch modules. You'll learn how to create and build Deeplay modules as well as how to configure their properties."
]
Expand Down

0 comments on commit 1be74b4

Please sign in to comment.