Emotion reco#12
Open
israasalah wants to merge 23 commits intodevelfrom
Open
Conversation
mhashim6
requested changes
Mar 4, 2020
| results = np.squeeze(output_data) | ||
| #print("result",results) | ||
| top_k = results.argsort()[-2:][::-1] | ||
| labels = load_labels("labels.txt") |
Member
There was a problem hiding this comment.
Please add an init function that is responsible for loading the model and the labels, and a detect function that receives a an image as a numpy array. Take a look on facial_recognition for a reference.
mhashim6
requested changes
Mar 5, 2020
|
|
||
| for i in top_percentage: | ||
|
|
||
| print('{:08.6f}: {}'.format(float(results[i]), labels[i])) |
Member
There was a problem hiding this comment.
detect should return the result, not print it. if the model returns multiple results return the fittest one.
| @@ -0,0 +1,47 @@ | |||
| from __future__ import absolute_import | |||
| from __future__ import division | |||
| from __future__ import print_function | |||
Member
There was a problem hiding this comment.
What do need these imports for?
| global labels | ||
| global interpreter | ||
|
|
||
| labels = ['Angry', 'Disgusted', 'Fear', 'Happy', 'Neutral', 'Sad', 'Surprised'] |
Member
There was a problem hiding this comment.
Make an Arabic copy of the labels; detect should return an Arabic result.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.