Skip to content

Commit

Permalink
remove html from titles
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoralez committed Nov 9, 2023
1 parent 5642cbb commit a7d431b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nbs/core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"id": "12fa25a4",
"metadata": {},
"source": [
"# <span style=\"color:DarkOrange\"> Core </span>\n",
"# Core\n",
"> NeuralForecast contains two main components, PyTorch implementations deep learning predictive models, as well as parallelization and distributed computation utilities. The first component comprises low-level PyTorch model estimator classes like `models.NBEATS` and `models.RNN`. The second component is a high-level `core.NeuralForecast` wrapper class that operates with sets of time series data stored in pandas DataFrames."
]
},
Expand Down
1 change: 0 additions & 1 deletion nbs/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
"pages": [
"core.html",
"models.html",
"models.html",
{
"group": "Models' Documentation",
"pages": [
Expand Down
2 changes: 1 addition & 1 deletion nbs/models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"id": "7ae65ca7",
"metadata": {},
"source": [
"# <span style=\"color:DarkOrange\"> Models </span>\n",
"# Models\n",
"\n",
"> NeuralForecast contains user-friendly implementations of neural forecasting models that allow for easy transition of computing capabilities (GPU/CPU), computation parallelization, and hyperparameter tuning.<br><br> All the NeuralForecast models are \"global\" because we train them with all the series from the input pd.DataFrame data `Y_df`, yet the optimization objective is, momentarily, \"univariate\" as it does not consider the interaction between the output predictions across time series. Like the StatsForecast library, `core.NeuralForecast` allows you to explore collections of models efficiently and contains functions for convenient wrangling of input and output pd.DataFrames predictions."
]
Expand Down

0 comments on commit a7d431b

Please sign in to comment.