Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Artifact Evaluation README #315

Open
wants to merge 51 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
7b67c6a
Check in Artifact Evaluation README>
luomai Sep 3, 2020
e694820
checkpoint
luomai Sep 3, 2020
357dc69
add VM setup instructions
lgarithm Sep 3, 2020
9b64a1f
updte
luomai Sep 4, 2020
ff1effc
monitoring checkpoint.
luomai Sep 4, 2020
68867b3
added adaptive comm strategy readme section
kfertakis Sep 4, 2020
553db8f
Check in scalability README.
luomai Sep 4, 2020
a5f0f33
Merge branch 'osdi20-artifact' of github.com:lsds/KungFu into osdi20-…
luomai Sep 4, 2020
0022e05
minor additional information in adaptive comm strategy part of readme
kfertakis Sep 4, 2020
b1871db
Merge branch 'osdi20-artifact' of github.com:lsds/KungFu into osdi20-…
kfertakis Sep 4, 2020
ac32805
minor
luomai Sep 4, 2020
c5617c6
Merge branch 'osdi20-artifact' of github.com:lsds/KungFu into osdi20-…
luomai Sep 4, 2020
6ca4222
Address Andrie's comments.
luomai Sep 4, 2020
fdbf119
Starting Scaling Performance.
luomai Sep 4, 2020
76a13f4
add first rough version of Adaptive resource provisioning
marwage Sep 4, 2020
6dadfb4
merge Adaptive resource provisioning
marwage Sep 4, 2020
abab533
add instructions for Fig.4
lgarithm Sep 4, 2020
5aa4ed5
add text to Adaptive resource provisioning
marwage Sep 4, 2020
59201b6
merge Adaptive resource provisioning
marwage Sep 4, 2020
83a507b
change git clone from ssh to https
marwage Sep 4, 2020
a6bdc33
Figure 7 (wip)
lgarithm Sep 4, 2020
ad0eea5
Pass over README.md (#316)
prp Sep 4, 2020
3c3de56
rename file and fix typo
marwage Sep 4, 2020
f035fc2
add plot script in the readme
marwage Sep 4, 2020
94f1326
fix typo
marwage Sep 4, 2020
e767118
fix another typo
marwage Sep 4, 2020
377c1f4
3. Scaling Performance (Figure 7)
lgarithm Sep 4, 2020
f392557
Merge branch 'master' into osdi20-artifact
lgarithm Sep 4, 2020
7d7da8c
add time estimation
lgarithm Sep 4, 2020
5045e6c
Address Peter's comments.
luomai Sep 4, 2020
373b1a4
update
luomai Sep 4, 2020
a5fb3ca
placeholder for Figure 10.
luomai Sep 4, 2020
8f5fd34
numbering
luomai Sep 4, 2020
418baf4
more on 3.3. Scaling Performance (Figure 7)
lgarithm Sep 4, 2020
1622b3f
add nccl schedulers.
luomai Sep 5, 2020
5521443
update doc
lgarithm Sep 5, 2020
e768475
add more comments fog Fig 4
lgarithm Sep 5, 2020
f716088
fix
lgarithm Sep 5, 2020
6b52e66
update
luomai Sep 5, 2020
9b5f222
Merge branch 'osdi20-artifact' of github.com:lsds/KungFu into osdi20-…
luomai Sep 5, 2020
856485a
Pass over S3.3 and S3.4
prp Sep 5, 2020
fc932ed
small fix
lgarithm Sep 5, 2020
c092d61
mention kungfu-remote-install
lgarithm Sep 5, 2020
3ac1389
-strategy MULTI_BINARY_TREE_STAR
lgarithm Sep 5, 2020
9e6b99b
update 3.2
lgarithm Sep 5, 2020
19b7b2d
update scalability result.
luomai Sep 5, 2020
1bf5908
fix
luomai Sep 5, 2020
09b85f6
add an example
lgarithm Sep 5, 2020
415570a
update
luomai Sep 5, 2020
ac21ac7
submission checkpoint
luomai Sep 5, 2020
f858789
add more description
lgarithm Sep 5, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions benchmarks/monitoring/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@
opt,
device_batch_size=args.batch_size,
monitor_interval=args.interval)
elif args.kf_optimizer == 'sync-sgd':
from kungfu.tensorflow.optimizers import SynchronousSGDOptimizer
opt = SynchronousSGDOptimizer(opt)
else:
raise Exception('Unknown KungFu optimizer')

Expand Down
Loading