tutorial icon indicating copy to clipboard operation
tutorial copied to clipboard

Issue on page /training/putting_it_all_together.html

Open emilykuowen opened this issue 1 year ago • 2 comments

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 avatar Nov 17 '22 19:11 emilykuowen