* change to README

* update README

* frozen versions for v2

* frozen requirements, ISLP==0.3.19

* v2.1 notebooks excluding 10,13

* v2.1 of Ch13

* pairing notebooks

* v2.1 of Ch10

* update README for v2.1

* update README

* remove workflows: notebooks can be tested in ISLP
This commit is contained in:
Jonathan Taylor
2023-08-20 20:48:30 -07:00
committed by GitHub
parent 065a1ae993
commit bec719e809
34 changed files with 3978 additions and 4481 deletions

View File

@@ -1,19 +1,3 @@
---
jupyter:
jupytext:
cell_metadata_filter: -all
formats: ipynb,Rmd
text_representation:
extension: .Rmd
format_name: rmarkdown
format_version: '1.2'
jupytext_version: 1.14.7
kernelspec:
display_name: Python 3 (ipykernel)
language: python
name: python3
---
# Chapter 10
@@ -872,7 +856,7 @@ for idx, (X_ ,Y_) in enumerate(cifar_dm.train_dataloader()):
Before we start, we look at some of the training images; similar code produced
Figure 10.5 on page 164. The example below also illustrates
Figure 10.5 on page 447. The example below also illustrates
that `TensorDataset` objects can be indexed with integers --- we are choosing
random images from the training data by indexing `cifar_train`. In order to display correctly,
we must reorder the dimensions by a call to `np.transpose()`.
@@ -1705,7 +1689,6 @@ early stopping, since then the test performance would be biased.
We form the training dataset similar to
our `Hitters` example.
```{python}
datasets = []