diff --git a/LICENSE b/LICENSE index e6d84a5..d71d320 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Alex Ioannides +Copyright (c) 2020-2022 Alex Ioannides Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index f56cf4b..3d0c8ee 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Data Science and ML Notes and Demos +# Data Science and ML Notebooks and Demos > "_The best way to learn is by doing, and the best way to remember what you have learnt is it to write about it._" diff --git a/demos/jax/mnist_with_flax_and_optax.ipynb b/demos/jax/mnist_with_flax_and_optax.ipynb index 8876735..f4f53ac 100644 --- a/demos/jax/mnist_with_flax_and_optax.ipynb +++ b/demos/jax/mnist_with_flax_and_optax.ipynb @@ -22,18 +22,8 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/alexioannides/Dropbox/work/workspace/python/data-science-and-ml-notebook/.venv_jax/lib/python3.10/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", - " from .autonotebook import tqdm as notebook_tqdm\n" - ] - } - ], + "outputs": [], "source": [ - "import warnings\n", "from typing import Any, Callable, Dict, Tuple\n", "\n", "import flax.linen as nn\n", @@ -43,9 +33,7 @@ "from flax.training.train_state import TrainState\n", "from jax import random, numpy as jnp\n", "from matplotlib import pyplot as plt\n", - "from torch.utils.data import DataLoader\n", - "\n", - "warnings.simplefilter(\"ignore\")" + "from torch.utils.data import DataLoader" ] }, { diff --git a/docs/jax/mnist_with_flax_and_optax/index.html b/docs/jax/mnist_with_flax_and_optax/index.html index feffcac..d6c2bd0 100644 --- a/docs/jax/mnist_with_flax_and_optax/index.html +++ b/docs/jax/mnist_with_flax_and_optax/index.html @@ -2380,8 +2380,8 @@

Imports and Configuration -
+ -