Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code refactoring #945

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions mmdnn/conversion/pytorch/pytorch_emitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ def run(self, dstNetworkPath, dstWeightPath = None, phase = 'test'):
def add_init(self, indent, codes):
if isinstance(codes, _string_types):
codes = [codes]
for code in codes:
self.init_code += (" " * indent) + code + '\n'
self.init_code += "\n".join([(" " * indent) + code for code in codes]) + "\n"

def parent_variable_name(self, IR_node, path=[0], weight_type='weights'):
if not IR_node.in_edges and IR_node.name in self.weights_dict.keys():
Expand Down