loss-landscape-anim


Nameloss-landscape-anim JSON
Version 0.1.10 PyPI version JSON
download
home_pagehttps://github.com/logancyang/loss-landscape-anim
SummaryAnimate the optimization trajectory of neural networks
upload_time2024-01-30 05:46:57
maintainer
docs_urlNone
authorLoganYang
requires_python>=3.9,<4.0
licenseMIT
keywords pytorch loss_landscape pytorch_lightning deep_learning visualization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Animating the Optimization Trajectory of Neural Nets

[![PyPi Latest Release](https://img.shields.io/pypi/v/loss-landscape-anim)](https://pypi.org/project/loss-landscape-anim/)
[![Release](https://img.shields.io/github/v/release/logancyang/loss-landscape-anim.svg)](https://github.com/logancyang/loss-landscape-anim/releases)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)

`loss-landscape-anim` lets you create animated optimization path in a 2D slice of the loss landscape of your neural networks. It is based on [PyTorch Lightning](https://github.com/PyTorchLightning/pytorch-lightning), please follow its suggested style if you want to add your own model.

Check out my article [Visualizing Optimization Trajectory of Neural Nets](https://towardsdatascience.com/from-animation-to-intuition-visualizing-optimization-trajectory-in-neural-nets-726e43a08d85?sk=dae85760fb921ecacddbe1af903e3c69) for more examples and some intuitive explanations.

## 0. Installation

From PyPI:

```sh
pip install loss-landscape-anim
```

From source, you need [Poetry](https://python-poetry.org/docs/#installation). Once you cloned this repo, run the command below to install the dependencies.

```sh
poetry install
```

## 1. Basic Examples

With the provided [spirals dataset](https://github.com/logancyang/loss-landscape-anim/blob/master/sample_images/spirals-dataset.png) and the default multilayer perceptron `MLP` model, you can directly call `loss_landscape_anim` to get a sample animated GIF like this:

```py
# Use default MLP model and sample spirals dataset
loss_landscape_anim(n_epochs=300)
```

<img src="./sample_images/sample_mlp_2l_50n.gif" alt="sample gif 1" title="MLP with two 50-node hidden layers on the Spirals dataset, PCA" align="middle"/>

Note: if you are using it in a notebook, don't forget to include the following at the top:

```py
%matplotlib notebook
```

Here's another example – the LeNet5 convolutional network on the MNIST dataset. There are many levers you can tune: learning rate, batch size, epochs, frames per second of the GIF output, a seed for reproducible results, whether to load from a trained model, etc. Check out the function signature for more details.

```py
bs = 16
lr = 1e-3
datamodule = MNISTDataModule(batch_size=bs, n_examples=3000)
model = LeNet(learning_rate=lr)

optim_path, loss_steps, accu_steps = loss_landscape_anim(
    n_epochs=10,
    model=model,
    datamodule=datamodule,
    optimizer="adam",
    giffps=15,
    seed=SEED,
    load_model=False,
    output_to_file=True,
    return_data=True,  # Optional return values if you need them
    gpus=1  # Enable GPU training if available
)
```

GPU training is supported. Just pass `gpus` into `loss_landscape_anim` if they are available.

The output of LeNet5 on the MNIST dataset looks like this:

<img src="./sample_images/lenet-1e-3.gif" alt="sample gif 2" title="LeNet5 on the MNIST dataset, PCA" align="middle"/>

## 2. Why PCA?

To create a 2D visualization, the first thing to do is to pick the 2 directions that define the plane. In the paper [Visualizing the Loss Landscape of Neural Nets](https://arxiv.org/abs/1712.09913v3), the authors argued why 2 random directions don't work and why PCA is much better. In summary,

1) 2 random vectors in high dimensional space have a high probability of being orthogonal, and they can hardly capture any variation for the optimization path. The path’s projection onto the plane spanned by the 2 vectors will just look like random walk.

2) If we pick one direction to be the vector pointing from the initial parameters to the final trained parameters, and another direction at random, the visualization will look like a straight line because the second direction doesn’t capture much variance compared to the first.

3) If we use principal component analysis (PCA) on the optimization path and get the top 2 components, we can visualize the loss over the 2 orthogonal directions with the most variance.

For showing *the most motion in 2D*, PCA is preferred. If you need a quick recap on PCA, here's a [minimal example](https://towardsdatascience.com/a-3-minute-review-of-pca-compression-and-recovery-38bb510a8637?sk=028aee2c8b0f3cf8b0207563a3ff907d) you can go over under 3 minutes.


## 3. Random and Custom Directions

Although PCA is a good approach for picking the directions, if you need more control, the code also allows you to set any 2 fixed directions, either generated at random or handpicked.

For 2 random directions, set `reduction_method` to `"random"`, e.g.

```py
loss_landscape_anim(n_epochs=300, load_model=False, reduction_method="random")
```

For 2 fixed directions of your choosing, set `reduction_method` to `"custom"`, e.g.

```py
import numpy as np

n_params = ... # number of parameters your model has
u_gen = np.random.normal(size=n_params)
u = u_gen / np.linalg.norm(u_gen)
v_gen = np.random.normal(size=n_params)
v = v_gen / np.linalg.norm(v_gen)

loss_landscape_anim(
    n_epochs=300, load_model=False, reduction_method="custom", custom_directions=(u, v)
)
```

Here is an sample GIF produced by two random directions:

<img src="./sample_images/random_directions.gif" alt="sample gif 3" title="MLP with 1 50-node hidden layer on the Spirals dataset, random directions" align="middle"/>

By default, `reduction_method="pca"`.

## 4. Custom Dataset and Model

1. Prepare your `DataModule`. Refer to [datamodule.py](https://github.com/logancyang/loss-landscape-anim/blob/master/loss_landscape_anim/datamodule.py) for examples.
2. Define your custom model that inherits `model.GenericModel`. Refer to [model.py](https://github.com/logancyang/loss-landscape-anim/blob/master/loss_landscape_anim/model.py) for examples.
3. Once you correctly setup your custom `DataModule` and `model`, call the function as shown below to train the model and plot the loss landscape animation.

```py
bs = ...
lr = ...
datamodule = YourDataModule(batch_size=bs)
model = YourModel(learning_rate=lr)

loss_landscape_anim(
    n_epochs=10,
    model=model,
    datamodule=datamodule,
    optimizer="adam",
    seed=SEED,
    load_model=False,
    output_to_file=True
)
```

## 5. Comparing Different Optimizers

As mentioned in section 2, the optimization path usually falls into a very low-dimensional space, and its projection in other directions may look like random walk. On the other hand, different optimizers can take very different paths in the high dimensional space. As a result, it is difficult to pick 2 directions to effectively compare different optimizers.

In this example, I have `adam, sgd, adagrad, rmsprop` initialized with the same parameters. The two figures below share the same 2 random directions but are centered around different local minima. The first figure centers around the one Adam finds, the second centers around the one RMSprop finds. Essentially, the planes are 2 parallel slices of the loss landscape.

The first figure shows that when centering on the end of Adam's path, it looks like RMSprop is going somewhere with larger loss value. But **that is an illusion**. If you inspect the loss values of RMSprop, it actually finds a local optimum that has a lower loss than Adam's.

*Same 2 directions centering on Adam's path:*

<img src="./sample_images/adam_paths.gif" alt="adam" title="Fixed directions centering on Adam's path" align="middle"/>

*Same 2 directions centering on RMSprop's path:*

<img src="./sample_images/rmsprop_paths.gif" alt="rmsprop" title="Fixed directions centering on RMSprop's path" align="middle"/>

**This is a good reminder that the contours are just a 2D slice out of a very high-dimensional loss landscape, and the projections can't reflect the actual path.**

However, we can see that the contours are convex no matter where it centers around in these 2 special cases. It more or less reflects that the optimizers shouldn't have a hard time finding a relatively good local minimum. To measure convexity more rigorously, the paper <sup>[[1]](#reference)</sup> mentioned a better method – using *principal curvature*, i.e. the eigenvalues of the Hessian. Check out the end of section 6 in the paper for more details.

## Reference

[1] [Visualizing the Loss Landscape of Neural Nets](https://arxiv.org/abs/1712.09913v3)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/logancyang/loss-landscape-anim",
    "name": "loss-landscape-anim",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4.0",
    "maintainer_email": "",
    "keywords": "pytorch,loss_landscape,pytorch_lightning,deep_learning,visualization",
    "author": "LoganYang",
    "author_email": "logancyang@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d9/a3/77d46381df63cdb07ed6a90c8f1929037687e7c8961fdd272a814960efb6/loss_landscape_anim-0.1.10.tar.gz",
    "platform": null,
    "description": "# Animating the Optimization Trajectory of Neural Nets\n\n[![PyPi Latest Release](https://img.shields.io/pypi/v/loss-landscape-anim)](https://pypi.org/project/loss-landscape-anim/)\n[![Release](https://img.shields.io/github/v/release/logancyang/loss-landscape-anim.svg)](https://github.com/logancyang/loss-landscape-anim/releases)\n[![License](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)\n\n`loss-landscape-anim` lets you create animated optimization path in a 2D slice of the loss landscape of your neural networks. It is based on [PyTorch Lightning](https://github.com/PyTorchLightning/pytorch-lightning), please follow its suggested style if you want to add your own model.\n\nCheck out my article [Visualizing Optimization Trajectory of Neural Nets](https://towardsdatascience.com/from-animation-to-intuition-visualizing-optimization-trajectory-in-neural-nets-726e43a08d85?sk=dae85760fb921ecacddbe1af903e3c69) for more examples and some intuitive explanations.\n\n## 0. Installation\n\nFrom PyPI:\n\n```sh\npip install loss-landscape-anim\n```\n\nFrom source, you need [Poetry](https://python-poetry.org/docs/#installation). Once you cloned this repo, run the command below to install the dependencies.\n\n```sh\npoetry install\n```\n\n## 1. Basic Examples\n\nWith the provided [spirals dataset](https://github.com/logancyang/loss-landscape-anim/blob/master/sample_images/spirals-dataset.png) and the default multilayer perceptron `MLP` model, you can directly call `loss_landscape_anim` to get a sample animated GIF like this:\n\n```py\n# Use default MLP model and sample spirals dataset\nloss_landscape_anim(n_epochs=300)\n```\n\n<img src=\"./sample_images/sample_mlp_2l_50n.gif\" alt=\"sample gif 1\" title=\"MLP with two 50-node hidden layers on the Spirals dataset, PCA\" align=\"middle\"/>\n\nNote: if you are using it in a notebook, don't forget to include the following at the top:\n\n```py\n%matplotlib notebook\n```\n\nHere's another example \u2013 the LeNet5 convolutional network on the MNIST dataset. There are many levers you can tune: learning rate, batch size, epochs, frames per second of the GIF output, a seed for reproducible results, whether to load from a trained model, etc. Check out the function signature for more details.\n\n```py\nbs = 16\nlr = 1e-3\ndatamodule = MNISTDataModule(batch_size=bs, n_examples=3000)\nmodel = LeNet(learning_rate=lr)\n\noptim_path, loss_steps, accu_steps = loss_landscape_anim(\n    n_epochs=10,\n    model=model,\n    datamodule=datamodule,\n    optimizer=\"adam\",\n    giffps=15,\n    seed=SEED,\n    load_model=False,\n    output_to_file=True,\n    return_data=True,  # Optional return values if you need them\n    gpus=1  # Enable GPU training if available\n)\n```\n\nGPU training is supported. Just pass `gpus` into `loss_landscape_anim` if they are available.\n\nThe output of LeNet5 on the MNIST dataset looks like this:\n\n<img src=\"./sample_images/lenet-1e-3.gif\" alt=\"sample gif 2\" title=\"LeNet5 on the MNIST dataset, PCA\" align=\"middle\"/>\n\n## 2. Why PCA?\n\nTo create a 2D visualization, the first thing to do is to pick the 2 directions that define the plane. In the paper [Visualizing the Loss Landscape of Neural Nets](https://arxiv.org/abs/1712.09913v3), the authors argued why 2 random directions don't work and why PCA is much better. In summary,\n\n1) 2 random vectors in high dimensional space have a high probability of being orthogonal, and they can hardly capture any variation for the optimization path. The path\u2019s projection onto the plane spanned by the 2 vectors will just look like random walk.\n\n2) If we pick one direction to be the vector pointing from the initial parameters to the final trained parameters, and another direction at random, the visualization will look like a straight line because the second direction doesn\u2019t capture much variance compared to the first.\n\n3) If we use principal component analysis (PCA) on the optimization path and get the top 2 components, we can visualize the loss over the 2 orthogonal directions with the most variance.\n\nFor showing *the most motion in 2D*, PCA is preferred. If you need a quick recap on PCA, here's a [minimal example](https://towardsdatascience.com/a-3-minute-review-of-pca-compression-and-recovery-38bb510a8637?sk=028aee2c8b0f3cf8b0207563a3ff907d) you can go over under 3 minutes.\n\n\n## 3. Random and Custom Directions\n\nAlthough PCA is a good approach for picking the directions, if you need more control, the code also allows you to set any 2 fixed directions, either generated at random or handpicked.\n\nFor 2 random directions, set `reduction_method` to `\"random\"`, e.g.\n\n```py\nloss_landscape_anim(n_epochs=300, load_model=False, reduction_method=\"random\")\n```\n\nFor 2 fixed directions of your choosing, set `reduction_method` to `\"custom\"`, e.g.\n\n```py\nimport numpy as np\n\nn_params = ... # number of parameters your model has\nu_gen = np.random.normal(size=n_params)\nu = u_gen / np.linalg.norm(u_gen)\nv_gen = np.random.normal(size=n_params)\nv = v_gen / np.linalg.norm(v_gen)\n\nloss_landscape_anim(\n    n_epochs=300, load_model=False, reduction_method=\"custom\", custom_directions=(u, v)\n)\n```\n\nHere is an sample GIF produced by two random directions:\n\n<img src=\"./sample_images/random_directions.gif\" alt=\"sample gif 3\" title=\"MLP with 1 50-node hidden layer on the Spirals dataset, random directions\" align=\"middle\"/>\n\nBy default, `reduction_method=\"pca\"`.\n\n## 4. Custom Dataset and Model\n\n1. Prepare your `DataModule`. Refer to [datamodule.py](https://github.com/logancyang/loss-landscape-anim/blob/master/loss_landscape_anim/datamodule.py) for examples.\n2. Define your custom model that inherits `model.GenericModel`. Refer to [model.py](https://github.com/logancyang/loss-landscape-anim/blob/master/loss_landscape_anim/model.py) for examples.\n3. Once you correctly setup your custom `DataModule` and `model`, call the function as shown below to train the model and plot the loss landscape animation.\n\n```py\nbs = ...\nlr = ...\ndatamodule = YourDataModule(batch_size=bs)\nmodel = YourModel(learning_rate=lr)\n\nloss_landscape_anim(\n    n_epochs=10,\n    model=model,\n    datamodule=datamodule,\n    optimizer=\"adam\",\n    seed=SEED,\n    load_model=False,\n    output_to_file=True\n)\n```\n\n## 5. Comparing Different Optimizers\n\nAs mentioned in section 2, the optimization path usually falls into a very low-dimensional space, and its projection in other directions may look like random walk. On the other hand, different optimizers can take very different paths in the high dimensional space. As a result, it is difficult to pick 2 directions to effectively compare different optimizers.\n\nIn this example, I have `adam, sgd, adagrad, rmsprop` initialized with the same parameters. The two figures below share the same 2 random directions but are centered around different local minima. The first figure centers around the one Adam finds, the second centers around the one RMSprop finds. Essentially, the planes are 2 parallel slices of the loss landscape.\n\nThe first figure shows that when centering on the end of Adam's path, it looks like RMSprop is going somewhere with larger loss value. But **that is an illusion**. If you inspect the loss values of RMSprop, it actually finds a local optimum that has a lower loss than Adam's.\n\n*Same 2 directions centering on Adam's path:*\n\n<img src=\"./sample_images/adam_paths.gif\" alt=\"adam\" title=\"Fixed directions centering on Adam's path\" align=\"middle\"/>\n\n*Same 2 directions centering on RMSprop's path:*\n\n<img src=\"./sample_images/rmsprop_paths.gif\" alt=\"rmsprop\" title=\"Fixed directions centering on RMSprop's path\" align=\"middle\"/>\n\n**This is a good reminder that the contours are just a 2D slice out of a very high-dimensional loss landscape, and the projections can't reflect the actual path.**\n\nHowever, we can see that the contours are convex no matter where it centers around in these 2 special cases. It more or less reflects that the optimizers shouldn't have a hard time finding a relatively good local minimum. To measure convexity more rigorously, the paper <sup>[[1]](#reference)</sup> mentioned a better method \u2013 using *principal curvature*, i.e. the eigenvalues of the Hessian. Check out the end of section 6 in the paper for more details.\n\n## Reference\n\n[1] [Visualizing the Loss Landscape of Neural Nets](https://arxiv.org/abs/1712.09913v3)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Animate the optimization trajectory of neural networks",
    "version": "0.1.10",
    "project_urls": {
        "Homepage": "https://github.com/logancyang/loss-landscape-anim",
        "Repository": "https://github.com/logancyang/loss-landscape-anim"
    },
    "split_keywords": [
        "pytorch",
        "loss_landscape",
        "pytorch_lightning",
        "deep_learning",
        "visualization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dea04941e5f299e7cec578f1a115176718b2f02648210b38510f1bf05a77da27",
                "md5": "5223630075a8e03b6cad9882bc945961",
                "sha256": "a2f08d7ce4b246b4a5332f11709a70742410bf61e85c4a24f9f9b5c2edc8e37a"
            },
            "downloads": -1,
            "filename": "loss_landscape_anim-0.1.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5223630075a8e03b6cad9882bc945961",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4.0",
            "size": 43643,
            "upload_time": "2024-01-30T05:46:55",
            "upload_time_iso_8601": "2024-01-30T05:46:55.998921Z",
            "url": "https://files.pythonhosted.org/packages/de/a0/4941e5f299e7cec578f1a115176718b2f02648210b38510f1bf05a77da27/loss_landscape_anim-0.1.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9a377d46381df63cdb07ed6a90c8f1929037687e7c8961fdd272a814960efb6",
                "md5": "7d396443811863238416d3995b68d769",
                "sha256": "d9169cfa22796ea1ebf2b0c70d2adaf781c39defabdea420f9b06ecad85332bf"
            },
            "downloads": -1,
            "filename": "loss_landscape_anim-0.1.10.tar.gz",
            "has_sig": false,
            "md5_digest": "7d396443811863238416d3995b68d769",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4.0",
            "size": 45011,
            "upload_time": "2024-01-30T05:46:57",
            "upload_time_iso_8601": "2024-01-30T05:46:57.676878Z",
            "url": "https://files.pythonhosted.org/packages/d9/a3/77d46381df63cdb07ed6a90c8f1929037687e7c8961fdd272a814960efb6/loss_landscape_anim-0.1.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-30 05:46:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "logancyang",
    "github_project": "loss-landscape-anim",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "loss-landscape-anim"
}
        
Elapsed time: 0.17523s