Skip to content

Commit

Permalink
See if removing pip installs help
Browse files Browse the repository at this point in the history
  • Loading branch information
calebrob6 committed Sep 20, 2024
1 parent d71853c commit 82dd69e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 16 deletions.
9 changes: 1 addition & 8 deletions docs/tutorials/custom_raster_dataset.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,6 @@
},
{
"cell_type": "code",
"custom": {
"metadata": {
"tags": [
"skip-execution"
]
}
},
"execution_count": null,
"metadata": {
"colab": {
Expand All @@ -101,7 +94,7 @@
},
"outputs": [],
"source": [
"%pip install torchgeo planetary_computer pystac"
"# %pip install torchgeo planetary_computer pystac"
]
},
{
Expand Down
10 changes: 7 additions & 3 deletions docs/tutorials/custom_segmentation_trainer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install torchgeo"
"# %pip install torchgeo"
]
},
{
Expand Down Expand Up @@ -287,7 +287,11 @@
"source": [
"# The following Trainer config is useful just for testing the code in this notebook.\n",
"trainer = pl.Trainer(\n",
" limit_train_batches=1, limit_val_batches=1, num_sanity_val_steps=0, max_epochs=1\n",
" limit_train_batches=1,\n",
" limit_val_batches=1,\n",
" num_sanity_val_steps=0,\n",
" max_epochs=1,\n",
" accelerator='cpu',\n",
")\n",
"# You can use the following for actual training runs.\n",
"# trainer = pl.Trainer(min_epochs=150, max_epochs=250, log_every_n_steps=50)"
Expand Down Expand Up @@ -498,7 +502,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.5"
"version": "3.10.14"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"metadata": {},
"outputs": [],
"source": [
"#%pip install torchgeo"
"# %pip install torchgeo"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/indices.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
},
"outputs": [],
"source": [
"%pip install torchgeo"
"# %pip install torchgeo"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/pretrained_weights.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"outputs": [],
"source": [
"%pip install torchgeo"
"# %pip install torchgeo"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/trainers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"outputs": [],
"source": [
"%pip install torchgeo tensorboard"
"# %pip install torchgeo tensorboard"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/transforms.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
"outputs": [],
"source": [
"%pip install torchgeo"
"# %pip install torchgeo"
]
},
{
Expand Down

0 comments on commit 82dd69e

Please sign in to comment.