-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TensorFlow Taskrunner Workspace with Keras 3 #1330
base: develop
Are you sure you want to change the base?
Conversation
Signed-off-by: yes <[email protected]>
Signed-off-by: yes <[email protected]>
Signed-off-by: yes <[email protected]>
Signed-off-by: yes <[email protected]>
Signed-off-by: yes <[email protected]>
Signed-off-by: yes <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you highlight which part is tensorflow specific in this workspace.
Signed-off-by: yes <[email protected]>
CNNModel in taskruner.py implements a custom model using TensorFlow with test_step and train_step functions for evaluation and training, respectively. |
@tanwarsh , what does this workspace bring in addition to the keras/mnist one? Isn't this showcasing how to use TensorFlow as a Keras 3 backend? PS: couldn't we instead move the existing |
Thank you for the review @teoparvanov . The keras/mnist workspace uses Tensorflow internally but with this workspace we are showcasing how training and test loops can be written with Tensorflow. (train_step and test_step) same as JAX and pytorch workspace. |
TensorFlow Taskrunner Workspace with Keras 3, showcasing custom model and training and testing loops.