"relauch ci" (#5314)

mobile_baidu
dzhwinter 8 years ago committed by GitHub
parent c3a61349e4
commit 2d7ac80b43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -52,7 +52,7 @@ train_reader = paddle.batch(
place = core.CPUPlace()
exe = Executor(place)
exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)
PASS_NUM = 100
for pass_id in range(PASS_NUM):

@ -225,7 +225,7 @@ train_reader = paddle.batch(
place = core.CPUPlace()
exe = Executor(place)
exe.run(g_startup_program, feed={}, fetch_list=[])
exe.run(g_startup_program)
for pass_id in range(PASS_NUM):
batch_id = 0

@ -78,7 +78,7 @@ train_reader = paddle.batch(
place = core.CPUPlace()
exe = Executor(place)
exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)
PASS_NUM = 100
for pass_id in range(PASS_NUM):

@ -254,7 +254,7 @@ def main():
place = core.CPUPlace()
exe = Executor(place)
exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)
train_reader = paddle.batch(
paddle.reader.shuffle(

@ -122,7 +122,7 @@ exe = Executor(place)
# below exit line.
exit(0)
exe.run(startup_program, feed={}, fetch_list=[])
exe.run(startup_program)
PASS_NUM = 100
for pass_id in range(PASS_NUM):
for data in train_reader():

Loading…
Cancel
Save