Skip to content

Commit

Permalink
Merge pull request #57 from SuperKogito/add-Emozionalmente
Browse files Browse the repository at this point in the history
add Emozionalmente dataset information
  • Loading branch information
SuperKogito authored Jun 9, 2024
2 parents b920ee6 + 75d0b68 commit 5d85e35
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 19 deletions.
21 changes: 6 additions & 15 deletions .github/workflows/check_urls.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Urls checking

on: [push]
on:
workflow_run:
workflows: ["Generate CSV and README"]
types:
- completed

jobs:
build:
Expand All @@ -10,23 +14,10 @@ jobs:
- name: Urlshecker
uses: urlstechie/urlchecker-action@master
with:
# A project to clone. If not provided, assumes already cloned in the present working directory.
git_path: https://github.com/SuperKogito/SER-datasets

# Delete the cloned repository after running URLchecked (default is false)
cleanup: true

# A comma-separated list of file types to cover in the URL checks
file_types: ".md"

# Choose whether to include file with no URLs in the prints.
print_all: false

# The timeout seconds to provide to requests, defaults to 5 seconds
timeout: 9

# How many times to retry a failed request (each is logged, defaults to 1)
retry_count: 3

# choose if the force pass or not
force_pass : true
force_pass: true
12 changes: 8 additions & 4 deletions .github/workflows/generate_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
paths:
- 'src/ser-datasets.json'
pull_request:
paths:
- 'src/ser-datasets.json'

jobs:
generate_files:
Expand All @@ -16,24 +19,25 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7ss' # Specify the Python version you need
python-version: '3.7' # Specify the Python version you need

- name: Install dependencies
run: |
cd src
python -m pip install --upgrade pip
pip install -r requirements.txt # Adjust if necessary
pip install -r requirements.txt
- name: Run script to generate CSV and README
run: |
cd src
python generate_files.py # Replace with the name of your Python script
python generate_files.py
- name: Commit and push changes
if: github.event_name == 'push'
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add src/ser-datasets.csv src/README.md # Replace with your actual CSV file name
git add src/ser-datasets.csv README.md # Replace with your actual CSV file name
git commit -m 'Automatically generated CSV and README from JSON update'
git push origin HEAD:main # Adjust if your default branch is not 'main'
env:
Expand Down
14 changes: 14 additions & 0 deletions src/ser-datasets.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@
"Paper-link": "https://arxiv.org/abs/2211.03371",
"License-link": "https://creativecommons.org/licenses/by-sa/4.0/"
},
"Emozionalmente": {
"Year": 2022,
"Content": "6902 labeled samples acted out by 431 amateur actors while verbalizing 18 different sentences",
"Emotions": "anger, disgust, fear, joy, sadness, surprise, neutral",
"Format": "Audio",
"Size": "0.581 GB",
"Language": "Italian",
"Paper": "--",
"Access": "Open",
"License": "CC BY 4.0",
"Dataset-link": "https://zenodo.org/records/6569824",
"Paper-link": "--",
"License-link": "https://creativecommons.org/licenses/by/4.0/"
},
"Kannada": {
"Year": 2022,
"Content": "468 audio samples, six different sentences, pronounced by thirteen people (four male and nine female), in five basic emotions plus one neutral emotion",
Expand Down

0 comments on commit 5d85e35

Please sign in to comment.