OperationDescriptionSetAttr Method (String, Tensor, Status) |
https://www.emgu.com/wiki/index.php/Emgu_TF
Set a Tensor as an attribute
Namespace:
Emgu.TF
Assembly:
Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntaxpublic void SetAttr(
string attrName,
Tensor tensor,
Status status = null
)
Public Sub SetAttr (
attrName As String,
tensor As Tensor,
Optional status As Status = Nothing
)
public:
void SetAttr(
String^ attrName,
Tensor^ tensor,
Status^ status = nullptr
)
member SetAttr :
attrName : string *
tensor : Tensor *
?status : Status
(* Defaults:
let _status = defaultArg status null
*)
-> unit
Parameters
- attrName
- Type: SystemString
The name of the attribute - tensor
- Type: Emgu.TFTensor
The Tensor - status (Optional)
- Type: Emgu.TFStatus
The status
See Also