State of the art decentralized optimization library
Project description
FAQ : DeLi-CoCo
How do I run the Code?
A. Install our package:
pip3 install decopt
(A.1) Often get the latest update:
pip3 install decopt --upgrade
B. Get Data:
sh pull_data.sh breast_cancer
c. Run script with default parameters:
python3 driver.py
With different parameters:
python3 driver.py --d 'mnist' --n_cores 10 --algorithms 'ours'
Parameter Options:
parser.add_argument('--d', type=str, default='breast_cancer',
help='Pass data-set')
parser.add_argument('--task', type=str, default='log_reg', help='Choose task')
parser.add_argument('--r', type=str, default=os.path.join(curr_dir, './data/'),
help='Pass data root')
parser.add_argument('--stochastic', type=bool, default=False)
parser.add_argument('--algorithm', type=str, default='ours')
parser.add_argument('--n_cores', type=int, default=9)
parser.add_argument('--topology', type=str, default='ring')
parser.add_argument('--Q', type=int, default=2)
parser.add_argument('--consensus_lr', type=float, default=0.3)
parser.add_argument('--quantization_function', type=str, default='full')
parser.add_argument('--num_bits', type=int, default=2)
parser.add_argument('--fraction_coordinates', type=float, default=0.1)
parser.add_argument('--dropout_p', type=float, default=0.1)
parser.add_argument('--epochs', type=int, default=10)
parser.add_argument('--lr_type', type=str, default='constant')
parser.add_argument('--initial_lr', type=float, default=0.01)
parser.add_argument('--epoch_decay_lr', type=float, default=0.9)
parser.add_argument('--regularizer', type=float, default=0)
parser.add_argument('--estimate', type=str, default='final')
parser.add_argument('--n_proc', type=int, default=3, help='no of parallel processors for Multi-proc')
parser.add_argument('--n_repeat', type=int, default=3, help='no of times repeat exp with diff seed')
* Note: SYN1, SYN2 are synthetically generated data.
So make sure you set gen=False after generating them for the first time.
Please refer to line 20, 23 of data_reader.py
Supported argument values
--d : 'breast_cancer' || 'mnist' || 'syn1' || 'syn2'
--task : 'log_reg' || 'lin_reg' || 'nlin_reg'
'log_reg' = Logistic Regression,
'lin_reg' = Linear Regression,
'nlin_reg' = Nonlinear Regression
--topology : 'ring' || 'torus' || 'fully_connected' || 'disconnected'
--quantization_function : 'full' || 'top' || 'rand' || 'qsgd'
How do I reproduce the plots in the paper?
Check plots.py
Ex. MNIST
It has clearly marked code to run Fig1, Fig2, Fig3 for mnist
Where are the results stored ?
Ex. For MNIST
The results of mnist experiments are stored in results/mnist_partial.
There are 3 folders, Q means experiments with Q, C is Compression, T is Topology.
The results and parameters are stored as pickle file
and can be readily consumed by plots.py
How do I reproduce the results ?
Ex. MNIST
For all experiments since the parameters are stored in the results folder. (See above FAQ)
please run driver.py with these parameters to produce results.
The results will automatically be stored in pickle files in appropriately
marked folders along with corresponding parameters.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
decopt-2.1.8.tar.gz
(10.6 kB
view details)
Built Distribution
decopt-2.1.8-py3-none-any.whl
(13.9 kB
view details)
File details
Details for the file decopt-2.1.8.tar.gz
.
File metadata
- Download URL: decopt-2.1.8.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2211623140366d09f203f30e47b1bd2e2d2cfda72779160aa04e8c0f3179cf94 |
|
MD5 | 74e646b0691f17c2c85c09a24d38e845 |
|
BLAKE2b-256 | 64ba00b9a1d3943fe2b2c4cb8c05fe1052b6edcd8914fbf0eea360f1e10f2416 |
File details
Details for the file decopt-2.1.8-py3-none-any.whl
.
File metadata
- Download URL: decopt-2.1.8-py3-none-any.whl
- Upload date:
- Size: 13.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7ad30280b20581560f84a365ea9aaf8144197e2561492bad018e4ef32cd018b |
|
MD5 | 0554ccb73eb15e769197e8016404e284 |
|
BLAKE2b-256 | 88fb8cae4c1bc3f1377d00e98db65e1f0bc50938096392959d3b51a6e4a18cc6 |