@@ -59,14 +59,14 @@ def _collect_graph_nodes(
5959 output_ids : List [Tuple [str , int ]],
6060 node_mapping : Dict [str , ov .Node ],
6161 ) -> List [ov .Node ]:
62- """
62+ r """
6363 A method for aggregating layers to be further cloned.
6464 Aggregation is designed in such a way that layers are listed from right to left,
6565 as they pass from bottom to top. This is done in order to find all constants in the model and
6666 to start graph creation from them (as well as Parameter layers), because
6767 OpenVINO graph is created from top-down and cannot be created otherwise.
6868
69- Legend: w - weigths , c - convert, il/ih - input low/high, ol/oh - output low/high
69+ Legend: w - weights , c - convert, il/ih - input low/high, ol/oh - output low/high
7070 (w)
7171 |
7272 (c) (il) (ih) (ol) (oh)
@@ -115,11 +115,11 @@ def build(
115115 output_ids : List [Tuple [str , int ]],
116116 node_mapping : Dict [str , ov .Node ],
117117 ) -> ov .Model :
118- """
118+ r """
119119 The basic method of the algorithm. This method uses an aggregated list of layers to be recreated.
120120 Let us take a graph of this kind as an example:
121121
122- Legend: w - weigths , c - convert, il/ih - input low/high, ol/oh - output low/high
122+ Legend: w - weights , c - convert, il/ih - input low/high, ol/oh - output low/high
123123 (w)
124124 |
125125 (c) (il) (ih) (ol) (oh)
0 commit comments