ImportGraphDefOptionsAddInputMapping Method |
https://www.emgu.com/wiki/index.php/Emgu_TF
Set any imported nodes with input srcName:srcIndex to have that input
replaced with dst.
Namespace:
Emgu.TF
Assembly:
Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntaxpublic void AddInputMapping(
string srcName,
int srcIndex,
Output dst
)
Public Sub AddInputMapping (
srcName As String,
srcIndex As Integer,
dst As Output
)
public:
void AddInputMapping(
String^ srcName,
int srcIndex,
Output^ dst
)
member AddInputMapping :
srcName : string *
srcIndex : int *
dst : Output -> unit
Parameters
- srcName
- Type: SystemString
Refers to a node in the graph to be imported - srcIndex
- Type: SystemInt32
The source node index. - dst
- Type: Emgu.TFOutput
References a node already existing in the graph being imported into
See Also