提交 c1cb483a 编写于 作者: Y yi.wu

paddle.init default use env

上级 0beda873
......@@ -11,6 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import optimizer
import layer
import activation
......@@ -42,6 +43,12 @@ __all__ = [
def init(**kwargs):
args = []
# NOTE: append arguments if they are in ENV
for ek, ev in os.environ.iteritems():
if ek.startswith("PADDLE_"):
args.append('--%s=%s' % (ek.replace("PADDLE_", "").lower(), str(ev)))
# NOTE: overwrite arguments from ENV if it is in kwargs
for key in kwargs.keys():
args.append('--%s=%s' % (key, str(kwargs[key])))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册