Skip to content
Snippets Groups Projects
Commit 3e6342d1 authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

chore : better python doc

parent 23edac6b
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!91Feat/operator global average pooling
...@@ -57,9 +57,9 @@ void init_Node(py::module& m) { ...@@ -57,9 +57,9 @@ void init_Node(py::module& m) {
:param other_node: Pointer to the other Node. :param other_node: Pointer to the other Node.
:type other_node: :py:class: Node :type other_node: :py:class: Node
:param out_id: ID of the current Node output to connect to the other Node. Default to 0. :param out_id: ID of the output of the current Node to connect to the other Node. (If Node has 1 output max ID is 0). Default to 0.
:type out_id: int :type out_id: int
:param other_in_id: ID of the other Node input to connect to the current Node. Default to the first avaible data input. :param other_in_id: ID of the input of the other Node to connect to the current Node (If the node is a Mul op it has 2 input then Max ID is 1).Default to the first avaible data input.
:type other_in_id: int :type other_in_id: int
)mydelimiter") )mydelimiter")
...@@ -85,7 +85,7 @@ void init_Node(py::module& m) { ...@@ -85,7 +85,7 @@ void init_Node(py::module& m) {
:type other_view: :py:class: GraphView :type other_view: :py:class: GraphView
:param out_id: ID of the current Node output to connect to the other Node. Default to 0. :param out_id: ID of the current Node output to connect to the other Node. Default to 0.
:type out_id: int :type out_id: int
:param other_in_id: Pair of Node and input connection ID for specifying the connection. If the GraphView whose content is linked has only one input Node, then it defaults to the first available data input ID of this Node. :param other_in_id: Pair of Node and input connection ID for specifying the connection. If the GraphView whose content is linked has only one input Node, then it defaults to the first available data input ID of this Node.
:type other_in_id: tuple[:py:class: Node, int] :type other_in_id: tuple[:py:class: Node, int]
)mydelimiter") )mydelimiter")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment