tutorial
tutorial copied to clipboard
Issue on page /training/putting_it_all_together.html
In the code block for the MaskInference class, connections.append([key, f'model:{key}'])
is missing brackets around f'model:{key}
, which causes the code to run into a KeyError. The correct code should be connections.append([key, [f'model:{key}']])
, as shown in the printed model config of MaskInference later in the HTML.
@emilykuowen Thank you my friend. I can confirm that I had the same problem. This issue hasn't been been fixed yet.
Would someone mind making a PR?