CIFAR-10 example has strange event names for tb loggers
See original GitHub issueWhy has COMPLETED
been used rather than EPOCH_COMPLETED
? We want to get information about metrics across all epochs, not across one epoch or I don’t understand what will happen?
Also, I suppose we need to update it to new approach with global_step_from_engine(trainer)
.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5
Top Results From Across the Web
CIFAR-10 and CIFAR-100 datasets
This dataset is just like the CIFAR-10, except it has 100 classes containing 600 images each. There are 500 training images and 100...
Read more >amazon-sagemaker-examples/cifar10.py at main - GitHub
Example Jupyter notebooks that demonstrate how to build, train, and deploy machine learning models using Amazon SageMaker.
Read more >CIFAR10-DVS: An Event-Stream Dataset for Object ... - Frontiers
In this paper, we created an event-steam dataset named “CIFAR10-DVS” by converting an popular frame-based image dataset “CIFAR-10” using a DVS ...
Read more >Untitled
China vs philippines war 2015, Burns funny, Mighty to save chords jeremy camp, ... Shahsawar khan song, Medaru constantin, Whea logger event 17...
Read more >CIFAR-10 Image Classification in TensorFlow
In this story, I am going to classify images from the CIFAR-10 dataset. This story covers preprocessing the image and training/prediction the convolutional ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@vfdev-5 Ohh, yes, you are right.
My problem was the following: I thought that
another_engine
overrides first parameter ofattach
function, i.eevent_name
is related toanother_engine
engine. But it is not true, becauseanother_engine
only override output function fortbOutputHandler
… SorryNo problems. Hope it is more clear now 😃