Pull Request : #2 Plot for Epochs, Accuracy and Avg Loss #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello @konrad-gajdus
This PR is for issue #2
Added plots for metrics generted by nn.c.
I think there was 2 ways though which it can be done.
One way is by performing the read and write on the nn.c file itself for creating a .txt file for python to plot using matplotlib.
Second way is by taking the output that is generated from the nn.c file metrics and copy and pasting it a txt file to plot
using matplotlib by using python.
I have followed the second appoach in this case as the nn.c file takes a significant amount of the time to reach to 20 epochs by using CPU in local machine settings.
Regards!
Viddesh