62c7ab518214286a4721dd7410978effd6d05471,rllib/execution/train_ops.py,TrainTFMultiGPU,__call__,#TrainTFMultiGPU#Any#,159
Before Change
policy._debug_vars()
tuples = policy._get_loss_inputs_dict(
batch, shuffle=self.shuffle_sequences)
data_keys = [ph for _, ph in policy._loss_inputs]
if policy._state_inputs:
state_keys = policy._state_inputs + [policy._seq_lens]
else:
state_keys = []
After Change
policy._debug_vars()
tuples = policy._get_loss_inputs_dict(
batch, shuffle=self.shuffle_sequences)
data_keys = list(policy._loss_input_dict_no_rnn.values())
if policy._state_inputs:
state_keys = policy._state_inputs + [policy._seq_lens]
else:
state_keys = []
In pattern: SUPERPATTERN
Frequency: 6
Non-data size: 5
Instances
Project Name: ray-project/ray
Commit Name: 62c7ab518214286a4721dd7410978effd6d05471
Time: 2020-11-12
Author: sven@anyscale.io
File Name: rllib/execution/train_ops.py
Class Name: TrainTFMultiGPU
Method Name: __call__
Project Name: uber/ludwig
Commit Name: ca98f96d527a03a7d7d76377eff44e1591d93ebe
Time: 2020-05-04
Author: jimthompson5802@gmail.com
File Name: ludwig/models/modules/combiners.py
Class Name: ConcatCombiner
Method Name: call
Project Name: ray-project/ray
Commit Name: 62c7ab518214286a4721dd7410978effd6d05471
Time: 2020-11-12
Author: sven@anyscale.io
File Name: rllib/execution/train_ops.py
Class Name: TrainTFMultiGPU
Method Name: __init__
Project Name: microsoft/nni
Commit Name: f10133904f1139e6dd9e5271594b70ac0440db02
Time: 2020-12-25
Author: Yuge.Zhang@microsoft.com
File Name: nni/retiarii/trainer/pytorch/darts.py
Class Name: DartsTrainer
Method Name: __init__
Project Name: ray-project/ray
Commit Name: 62c7ab518214286a4721dd7410978effd6d05471
Time: 2020-11-12
Author: sven@anyscale.io
File Name: rllib/execution/multi_gpu_learner.py
Class Name: _LoaderThread
Method Name: _step
Project Name: ray-project/ray
Commit Name: 62c7ab518214286a4721dd7410978effd6d05471
Time: 2020-11-12
Author: sven@anyscale.io
File Name: rllib/execution/multi_gpu_learner.py
Class Name: TFMultiGPULearner
Method Name: __init__