liboyue / Network-Distributed-Algorithm

Experiments for distributed optimization algorithms
69 stars 24 forks source link
machine-learning optimization

Network-Distributed Algorithm Experiments

This repository contains a set of optimization algorithms and objective functions, and all code needed to reproduce experiments in:

  1. "DESTRESS: Computation-Optimal and Communication-Efficient Decentralized Nonconvex Finite-Sum Optimization" [PDF]. (code is in this file [link])

  2. "Communication-Efficient Distributed Optimization in Networks with Gradient Tracking and Variance Reduction" [PDF]. (code is in the previous version of this repo [link])

Due to the random data generation procedure, results may be slightly different from those appeared in papers, but conclusions remain the same.

If you find this code useful, please cite our papers:

@article{li2022destress,
  title={DESTRESS: Computation-Optimal and Communication-Efficient Decentralized Nonconvex Finite-Sum Optimization},
  author={Li, Boyue and Li, Zhize and Chi, Yuejie},
  journal={SIAM Journal on Mathematics of Data Science},
  volume = {4},
  number = {3},
  pages = {1031-1051},
  year={2022}
}
@article{li2020communication,
  title={Communication-Efficient Distributed Optimization in Networks with Gradient Tracking and Variance Reduction},
  author={Li, Boyue and Cen, Shicong and Chen, Yuxin and Chi, Yuejie},
  journal={Journal of Machine Learning Research},
  volume={21},
  pages={1--51},
  year={2020}
}

1. Features

2. Installation and usage

2.1 Installation

pip install git+https://github.com/liboyue/Network-Distributed-Algorithm.git

If you have Nvidia GPUs, please also install cupy.

2.2 Implementing your own objective function

2.3 Implementing your own optimizer

3. Objective functions

The gradient implementations of all objective functions are checked numerically.

3.1 Linear regression

Linear regression with random generated data. The objective function is

3.2 Logistic regression

Logistic regression with l-2 or nonconvex regularization with random generated data or the Gisette dataset or datasets from libsvmtools. The objective function is

3.3 One-hidden-layer fully-connected neural netowrk

One-hidden-layer fully-connected neural network with softmax loss on the MNIST dataset.

4. Datasets

5. Optimization algorithms

5.1 Centralized optimization algorithms

5.2 Distributed optimization algorithms (i.e. with parameter server)

5.3 Decentralized optimization algorithms

6. Change log