Skip to content

Commit

Permalink
add doc to test_runs.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
bagustris committed Apr 19, 2024
1 parent 71b7242 commit 010ac7d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/emorynlp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ $ python3 process_database.py
```

References:
[1] https://github.com/declare-lab/MELD
[2] S. Zahiri and J. D. Choi. Emotion Detection on TV Show Transcripts with Sequence-based Convolutional Neural Networks. In The AAAI Workshop on Affective Content Analysis, AFFCON'18, 2018.
[3] S. Poria, D. Hazarika, N. Majumder, G. Naik, E. Cambria, R. Mihalcea. MELD: A Multimodal Multi-Party Dataset for Emotion Recognition in Conversation. ACL 2019.
[1] https://github.com/declare-lab/MELD
[2] S. Zahiri and J. D. Choi. Emotion Detection on TV Show Transcripts with Sequence-based Convolutional Neural Networks. In The AAAI Workshop on Affective Content Analysis, AFFCON'18, 2018.
[3] S. Poria, D. Hazarika, N. Majumder, G. Naik, E. Cambria, R. Mihalcea. MELD: A Multimodal Multi-Party Dataset for Emotion Recognition in Conversation. ACL 2019.
17 changes: 17 additions & 0 deletions test_runs.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
#!/bin/bash

# Display help message
function Help {
echo "Usage: test_runs.sh [options]"
echo "Options:"
echo " --Explore: test explore module"
echo " --Nkulu: test basic nkululeko"
echo " --Aug: test augmentation"
echo " --Pred: test prediction"
echo " --Demo: test demo"
echo " --Test: test test module"
echo " --Multi: test multidb"
echo " --Spot: test spotlight"
echo " --all: test all modules"
echo " --help: display this help message"
}

# test explore module
function Explore {
python -m nkululeko.explore --config tests/exp_emodb_explore_data.ini
Expand Down Expand Up @@ -61,6 +77,7 @@ function Spot {
python -m nkululeko.explore --config tests/exp_explore.ini
}

Help
for arg in "$@"; do
if [[ "$arg" = --Explore ]] || [[ "$arg" = --all ]]; then
Explore
Expand Down

0 comments on commit 010ac7d

Please sign in to comment.