generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML4SE-137] added thresholds to the config.
- Loading branch information
mikrise2
committed
Oct 12, 2023
1 parent
05d20e4
commit 9ec9705
Showing
9 changed files
with
73 additions
and
47 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
12 changes: 12 additions & 0 deletions
12
ijPlugin/src/main/resources/org/jetbrains/research/tasktracker/config/emotion_default.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,39 @@ | ||
modelFilename: "emotion-ferplus-18.onnx" | ||
modelInputGate: "Input3" | ||
modelOutputGate: "Plus692_Output_0" | ||
emotions: | ||
- modelPosition: -1 | ||
name: "DEFAULT" | ||
threshold: 0.9 | ||
|
||
- modelPosition: 0 | ||
name: "NEUTRAL" | ||
threshold: 0.9 | ||
|
||
- modelPosition: 1 | ||
name: "HAPPINESS" | ||
threshold: 0.9 | ||
|
||
- modelPosition: 2 | ||
name: "SURPRISE" | ||
threshold: 0.1 | ||
|
||
- modelPosition: 3 | ||
name: "SADNESS" | ||
threshold: 0.1 | ||
|
||
- modelPosition: 4 | ||
name: "ANGER" | ||
threshold: 0.1 | ||
|
||
- modelPosition: 5 | ||
name: "DISGUST" | ||
threshold: 0.1 | ||
|
||
- modelPosition: 6 | ||
name: "FEAR" | ||
threshold: 0.1 | ||
|
||
- modelPosition: 7 | ||
name: "CONTEMPT" | ||
threshold: 0.1 |