Commit c9202db9 authored by cclauss's avatar cclauss
Browse files

Fix Python 3 Syntax Errors (en masse)

parent ae0a9409
...@@ -14,6 +14,8 @@ ...@@ -14,6 +14,8 @@
# ============================================================================== # ==============================================================================
"""Neural GPU.""" """Neural GPU."""
from __future__ import print_function
import math import math
import os import os
import random import random
......
...@@ -18,6 +18,8 @@ This file calls functions to load & pre-process data, construct the TF graph ...@@ -18,6 +18,8 @@ This file calls functions to load & pre-process data, construct the TF graph
and performs training or evaluation as specified by the flag evaluator_job and performs training or evaluation as specified by the flag evaluator_job
Author: aneelakantan (Arvind Neelakantan) Author: aneelakantan (Arvind Neelakantan)
""" """
from __future__ import print_function
import time import time
from random import Random from random import Random
import numpy as np import numpy as np
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment