forked from PaddlePaddle/models
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ce to CycleGAN (PaddlePaddle#2807)
* Update mnist_dygraph.py fix bug * add muti card support for se_resnext * add some description to readme.md * add ce for cyclegan * fix code style * add ce for ptb_lm
- Loading branch information
Showing
7 changed files
with
175 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# This file is only used for continuous evaluation. | ||
# dygraph single card | ||
export FLAGS_cudnn_deterministic=True | ||
export CUDA_VISIBLE_DEVICES=0 | ||
python train.py --ce --epoch 1 | python _ce.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
####this file is only used for continuous evaluation test! | ||
from __future__ import absolute_import | ||
from __future__ import division | ||
from __future__ import print_function | ||
import os | ||
import sys | ||
sys.path.append(os.environ['ceroot']) | ||
from kpi import CostKpi, DurationKpi, AccKpi | ||
|
||
#### NOTE kpi.py should shared in models in some way!!!! | ||
|
||
g_loss = CostKpi('g_loss', 0.3, 0, actived=True, desc="g loss") | ||
g_A_loss = CostKpi('g_A_loss', 0.3, 0, actived=True, desc="g A loss") | ||
g_B_loss = CostKpi('g_B_loss', 0.3, 0, actived=True, desc="g B loss") | ||
d_A_loss = CostKpi('d_A_loss', 0.3, 0, actived=True, desc="d A loss") | ||
d_B_loss = CostKpi('d_B_loss', 0.3, 0, actived=True, desc="d B loss") | ||
tracking_kpis = [g_loss, g_A_loss, g_B_loss, | ||
d_A_loss, d_B_loss] | ||
|
||
def parse_log(log): | ||
''' | ||
This method should be implemented by model developers. | ||
The suggestion: | ||
each line in the log should be key, value, for example: | ||
" | ||
train_cost\t1.0 | ||
test_cost\t1.0 | ||
train_cost\t1.0 | ||
train_cost\t1.0 | ||
train_acc\t1.2 | ||
" | ||
''' | ||
for line in log.split('\n'): | ||
fs = line.strip().split('\t') | ||
print(fs) | ||
if len(fs) == 3 and fs[0] == 'kpis': | ||
print("-----%s" % fs) | ||
kpi_name = fs[1] | ||
kpi_value = float(fs[2]) | ||
yield kpi_name, kpi_value | ||
|
||
|
||
def log_to_ce(log): | ||
kpi_tracker = {} | ||
for kpi in tracking_kpis: | ||
kpi_tracker[kpi.name] = kpi | ||
|
||
for (kpi_name, kpi_value) in parse_log(log): | ||
print(kpi_name, kpi_value) | ||
kpi_tracker[kpi_name].add_record(kpi_value) | ||
kpi_tracker[kpi_name].persist() | ||
|
||
|
||
if __name__ == '__main__': | ||
log = sys.stdin.read() | ||
print("*****") | ||
print(log) | ||
print("****") | ||
log_to_ce(log) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
# This file is only used for continuous evaluation. | ||
# dygraph single card | ||
export FLAGS_cudnn_deterministic=True | ||
export CUDA_VISIBLE_DEVICES=0 | ||
python ptb_dy.py --data_path data/simple-examples/data/ \ | ||
--ce --model_type small | python _ce.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
####this file is only used for continuous evaluation test! | ||
from __future__ import absolute_import | ||
from __future__ import division | ||
from __future__ import print_function | ||
import os | ||
import sys | ||
sys.path.append(os.environ['ceroot']) | ||
from kpi import CostKpi, DurationKpi, AccKpi | ||
|
||
#### NOTE kpi.py should shared in models in some way!!!! | ||
|
||
train_ppl = AccKpi('train_ppl', 3, 0, actived=True, desc="train ppl") | ||
test_ppl = AccKpi('test_ppl', 3, 0, actived=True, desc='test ppl') | ||
#train_speed_kpi = DurationKpi( | ||
# 'train_speed', | ||
# 0.05, | ||
# 0, | ||
# actived=True, | ||
# unit_repr='seconds/image', | ||
# desc='train speed in one GPU card') | ||
tracking_kpis = [train_ppl, test_ppl] | ||
|
||
def parse_log(log): | ||
''' | ||
This method should be implemented by model developers. | ||
The suggestion: | ||
each line in the log should be key, value, for example: | ||
" | ||
train_cost\t1.0 | ||
test_cost\t1.0 | ||
train_cost\t1.0 | ||
train_cost\t1.0 | ||
train_acc\t1.2 | ||
" | ||
''' | ||
for line in log.split('\n'): | ||
fs = line.strip().split('\t') | ||
print(fs) | ||
if len(fs) == 3 and fs[0] == 'kpis': | ||
print("-----%s" % fs) | ||
kpi_name = fs[1] | ||
kpi_value = float(fs[2]) | ||
yield kpi_name, kpi_value | ||
|
||
|
||
def log_to_ce(log): | ||
kpi_tracker = {} | ||
for kpi in tracking_kpis: | ||
kpi_tracker[kpi.name] = kpi | ||
|
||
for (kpi_name, kpi_value) in parse_log(log): | ||
print(kpi_name, kpi_value) | ||
kpi_tracker[kpi_name].add_record(kpi_value) | ||
kpi_tracker[kpi_name].persist() | ||
|
||
|
||
if __name__ == '__main__': | ||
log = sys.stdin.read() | ||
print("*****") | ||
print(log) | ||
print("****") | ||
log_to_ce(log) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters