-
Notifications
You must be signed in to change notification settings - Fork 6
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
added mnist example #12
Conversation
|
||
|
||
# Load the MNIST dataset | ||
(x_train, y_train), (x_test, y_test) = mnist.load_data() |
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.
We already loaded the dataset before.
plt.title(f"Label: {y_train[i]}") | ||
plt.axis('off') | ||
plt.tight_layout() | ||
plt.show() |
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.
This will be weird in job. Maybe we want to do log plot here?
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.
plt.show() |
Co-authored-by: debajyoti-truefoundry <[email protected]>
Co-authored-by: debajyoti-truefoundry <[email protected]>
client = mlfoundry.get_client() | ||
|
||
client.create_ml_repo(args.ml_repo) | ||
run = client.create_run(ml_repo=args.ml_repo) |
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 we give a run name?
No description provided.