You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
driver.py has wrong index 3 for model loading, however it should be 2. Using 3 its giving error `
python trainedModel = combine([trainedModel.outputs[3].owner])\nIndexError: tuple index out of rangeI have used loop to determine the index and updated the index in driver.py file.
python for index in range(len(trainedModel.outputs)): print("Index {} for output: {}.".format(index, trainedModel.outputs[index].name))Output
Index 0 for output: CE.
Index 1 for output: Err.
Index 2 for output: OutputNodes.z.
Will create a PR with changes i did.