You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Tensorflow
- {
- public partial class RefVariable
- {
- public static implicit operator _VariableScopeStore(RefVariable variable)
- {
- return null;
- }
-
- public static implicit operator RefVariable(_VariableScopeStore store)
- {
- return null;
- }
-
- public static implicit operator Tensor(RefVariable var)
- {
- return var._AsTensor();
- }
-
- public static implicit operator RefVariable(Tensor var)
- {
- return null;
- }
- }
- }
|