version
Function
Queries the version number of the Rec SDK framework.
Prototype
1 | def version() |
Return Value
- Success: version number
- Failure: An exception is thrown.
Example
You can use version() or __version__ to query the version number of the Rec SDK TensorFlow framework. Example:
1 2 3 | import mx_rec print(mx_rec.version()) print(mx_rec.__version__) |
Parent topic: Other APIs