Skip to content

Commit 093f10c

Browse files
committed
Fix: Fixed path to tutorial notebooks
1 parent c28fcde commit 093f10c

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

docs/annotations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This tutorial will look at how to use annotations.
44

55
!!! info "Note"
6-
For every option and more detailed examples refer to Jupyter notebook [`annotations`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/annotations.ipynb).
6+
For every option and more detailed examples refer to Jupyter notebook [`annotations`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/annotations.ipynb).
77

88
## Basics
99

docs/benchmarks_tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This tutorial will look at how to use benchmarks.
55
Only time-based will be used, because all methods work almost the same way for series-based.
66

77
!!! info "Note"
8-
For every option and more detailed examples refer to Jupyter notebook [`benchmarks`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/benchmarks.ipynb)
8+
For every option and more detailed examples refer to Jupyter notebook [`benchmarks`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/benchmarks.ipynb)
99

1010
Benchmarks can consist of various parts:
1111

docs/choosing_data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Each dataset type will have its own part because of multiple differences of avai
77
## [`TimeBasedCesnetDataset`][cesnet_tszoo.datasets.time_based_cesnet_dataset.TimeBasedCesnetDataset] dataset
88

99
!!! info "Note"
10-
For every configuration and more detailed examples refer to Jupyter notebook [`time_based_choosing_data`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/time_based_choosing_data.ipynb)
10+
For every configuration and more detailed examples refer to Jupyter notebook [`time_based_choosing_data`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/time_based_choosing_data.ipynb)
1111

1212
Relevant configuration values:
1313

@@ -130,7 +130,7 @@ time_based_dataset.set_dataset_config_and_initialize(config)
130130
## [`SeriesBasedCesnetDataset`][cesnet_tszoo.datasets.series_based_cesnet_dataset.SeriesBasedCesnetDataset] dataset
131131

132132
!!! info "Note"
133-
For every configuration and more detailed examples refer to Jupyter notebook [`series_based_choosing_data`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/series_based_choosing_data.ipynb)
133+
For every configuration and more detailed examples refer to Jupyter notebook [`series_based_choosing_data`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/series_based_choosing_data.ipynb)
134134

135135
Relevant configuration values:
136136

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Getting started
22

33
!!! info "Note"
4-
For a demonstration of usage for simple forecasting refer to Jupyter notebook [`simple_forecasting`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/simple_forecasting.ipynb)
4+
For a demonstration of usage for simple forecasting refer to Jupyter notebook [`simple_forecasting`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/simple_forecasting.ipynb)
55

66
## Code snippets
77

docs/handling_missing_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This tutorial will look at some configuration options used for handling missing
55
Only time-based will be used, because all methods work almost the same way for series-based.
66

77
!!! info "Note"
8-
For every configuration and more detailed examples refer to Jupyter notebook [`handling_missing_data`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/handling_missing_data.ipynb)
8+
For every configuration and more detailed examples refer to Jupyter notebook [`handling_missing_data`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/handling_missing_data.ipynb)
99

1010
Relevant configuration values:
1111

docs/loading_data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Each dataset type will have its own part because of multiple differences of avai
77
## [`TimeBasedCesnetDataset`][cesnet_tszoo.datasets.time_based_cesnet_dataset.TimeBasedCesnetDataset] dataset
88

99
!!! info "Note"
10-
For every configuration and more detailed examples refer to Jupyter notebook [`time_based_loading_data`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/time_based_loading_data.ipynb)
10+
For every configuration and more detailed examples refer to Jupyter notebook [`time_based_loading_data`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/time_based_loading_data.ipynb)
1111

1212
Relevant configuration values:
1313

@@ -221,7 +221,7 @@ numpy_array = time_based_dataset.get_all_numpy(workers="config")
221221
## [`SeriesBasedCesnetDataset`][cesnet_tszoo.datasets.series_based_cesnet_dataset.SeriesBasedCesnetDataset] dataset
222222

223223
!!! info "Note"
224-
For every configuration and more detailed examples refer to Jupyter notebook [`series_based_loading_data`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/series_based_loading_data.ipynb)
224+
For every configuration and more detailed examples refer to Jupyter notebook [`series_based_loading_data`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/series_based_loading_data.ipynb)
225225

226226
Relevant configuration values:
227227

docs/using_scalers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Each dataset type will have its own part because of multiple differences of avai
77
## [`TimeBasedCesnetDataset`][cesnet_tszoo.datasets.time_based_cesnet_dataset.TimeBasedCesnetDataset] dataset
88

99
!!! info "Note"
10-
For every configuration and more detailed examples refer to Jupyter notebook [`time_based_using_scalers`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/time_based_using_scalers.ipynb)
10+
For every configuration and more detailed examples refer to Jupyter notebook [`time_based_using_scalers`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/time_based_using_scalers.ipynb)
1111

1212
Relevant configuration values:
1313

@@ -132,7 +132,7 @@ time_based_dataset.set_dataset_config_and_initialize(config)
132132
## [`SeriesBasedCesnetDataset`][cesnet_tszoo.datasets.series_based_cesnet_dataset.SeriesBasedCesnetDataset] dataset
133133

134134
!!! info "Note"
135-
For every configuration and more detailed examples refer to Jupyter notebook [`series_based_using_scalers`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/series_based_using_scalers.ipynb)
135+
For every configuration and more detailed examples refer to Jupyter notebook [`series_based_using_scalers`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/series_based_using_scalers.ipynb)
136136

137137
Relevant configuration values:
138138

docs/utilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This tutorial will look at various utilities.
55
Only time-based will be used, because all methods work almost the same way for series-based.
66

77
!!! info "Note"
8-
For every option and more detailed examples refer to Jupyter notebook [`utilities`](https://github.com/CESNET/cesnet-tszoo/blob/tutorial_notebooks/utilities.ipynb)
8+
For every option and more detailed examples refer to Jupyter notebook [`utilities`](https://github.com/CESNET/cesnet-tszoo/blob/main/tutorial_notebooks/utilities.ipynb)
99

1010
## Setting logger
1111
CESNET TS-Zoo uses logger, but without setting config below, it wont log anything.

0 commit comments

Comments
 (0)