1616c52eb25efdaea146c7bcc7f624830da3f59d,tests/fast_tests/test_json.py,TestJSON,test_json,#TestJSON#,25
Before Change
exp_tag=exp_tag)
// Logging out flow_params to ray"s experiment result folder
current_path = os.path.realpath(__file__).rsplit("/", 1)[0]
json_out_file = current_path + "/test_files/flow_params.json"
with open(json_out_file, "w") as outfile:
json.dump(flow_params, outfile, cls=NameEncoder, sort_keys=True, indent=4)
After Change
version=0,
exp_tag=exp_tag)
config = ppo.DEFAULT_CONFIG.copy()
// save the flow params for replay
flow_json = json.dumps(flow_params, cls=NameEncoder, sort_keys=True,
indent=4)
config["env_config"]["flow_params"] = flow_json
// dump the config so we can fetch it
json_out_file = "~/params.json"
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: flow-project/flow
Commit Name: 1616c52eb25efdaea146c7bcc7f624830da3f59d
Time: 2018-04-20
Author: vinitsky.eugene@gmail.com
File Name: tests/fast_tests/test_json.py
Class Name: TestJSON
Method Name: test_json
Project Name: flow-project/flow
Commit Name: 5e6e8ee7cb062eab554b84cd5c0df45c0eaa56d1
Time: 2018-04-20
Author: vinitsky.eugene@gmail.com
File Name: tests/fast_tests/test_json.py
Class Name: TestJSON
Method Name: test_json
Project Name: apache/incubator-tvm
Commit Name: 6770d28a844597e064b2e0902a36207ff877857d
Time: 2020-09-03
Author: kevinthesunwy@gmail.com
File Name: python/tvm/relay/frontend/tensorflow.py
Class Name: GraphProto
Method Name: _get_relay_func