Code Monkey home page Code Monkey logo

omgemotionchallenge's People

Contributors

nchuramani avatar pablovin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

omgemotionchallenge's Issues

A Problem In caculateEvalutionCCC.py

I think there is a mistake in line 82 and line 83 of caculateEvalutionCCC.py

cccArousal.append(ccc(validationArousal,modelArousal)) cccValence.append(ccc(validationArousal, modelArousal))

Annotations per utterance

Hi,

In the 'omg_TrainVideos.csv', corresponding to each utterance clip, there is only one pair of valence-arousal values written. But inside the 'DetailedAnnotation' folder, if we go to that utterance, we can find multiple text files containing various valence-arousal values. So, how is each utterance split? For example, in OMGEmotionChallenge-master/DetailedAnnotation/train/0e02ee3c5_2/utterance_11.mp4/utterance_11.mp4', I can see 0-4 text files.
Kindly help me understand this.

Thanks,
Vandana

Error with running prepare.py

Running prepare.py e.g. with the command python prepare_data.py --target-dir "./train_data" --split-file "./omg_TrainVideos.csv" return the error The system cannot find the file specified as files such as https://www.youtube.com/watch?v=CROcsl0lIec are not available

Video 'c0f84b343_2' not available

Please have a check for the video named 'c0f84b343_2' in validation set. Because while I was preparing the dataset, I found that this video is no longer available online. Maybe you can delete it from validation set, or you can provide another link for this video.

/newdisk/OMGEmotionChallenge/prepare_data.py(44)prepare_data()
-> print(video+'is extracting...')
(Pdb) video
'c0f84b343_2'
(Pdb) n
c0f84b343_2is extracting...
> /newdisk/OMGEmotionChallenge/prepare_data.py(45)prepare_data()
-> result_dir = os.path.join(os.path.join(target_dir, video))
(Pdb) n
> /newdisk/OMGEmotionChallenge/prepare_data.py(46)prepare_data()
-> if not os.path.exists(result_dir):
(Pdb) n
> /newdisk/OMGEmotionChallenge/prepare_data.py(48)prepare_data()
-> result_filename = os.path.abspath(os.path.join(result_dir, utterance))
(Pdb) n
> /newdisk/OMGEmotionChallenge/prepare_data.py(51)prepare_data()
-> target_file = os.path.abspath(os.path.join(temp_directory, video + ".mp4"))
(Pdb) n
> /newdisk/OMGEmotionChallenge/prepare_data.py(52)prepare_data()
-> if not os.path.exists(target_file):
(Pdb) n
> /newdisk/OMGEmotionChallenge/prepare_data.py(53)prepare_data()
-> dl_youtube(link, target_file)
(Pdb) n
[youtube] iD205b51hZg: Downloading webpage
[youtube] iD205b51hZg: Downloading video info webpage
ERROR: iD205b51hZg: YouTube said: This video is unavailable.

Annotation mismatch between categorical and dimensional labels

Hi,

I found that there are quite a lot of mismatches between the categorical and dimensional annotations. For example, in case of anger (+ve arousal and -ve valence), some instances are labelled with +ve valence. Similarly for other emotions as well. Doesn't this question the validity of the annotations?

Thanks,

A question about caculateEvaluationCCC.py

I looked at the caculateEvaluationCCC.py and I found something confusing.
Previously, the CCC was calculated for each video and the mean of CCCs can evaluate model performance, as denoted by following codes.

  
    cccArousal = numpy.array(cccArousal)
    cccValence = numpy.array(cccValence)
    print ("CCC Arousals:", cccArousal)
    print ("CCC Valences:", cccValence)

    print ("Mean CCC Arousal:", cccArousal.mean())
    print ("Mean CCC Valence:", cccValence.mean())

Now, the CCC seems to be calculated using all the utterances from validation set, without considering their corresponding videos.

    dataYArousal = dataY["arousal"]
    dataYValence = dataY["valence"]
    dataYPredArousal = dataYPred["arousal"]
    dataYPredValence = dataYPred["valence"]

    arousalCCC, acor = ccc(dataYArousal, dataYPredArousal)
    arousalmse = mse(dataYArousal, dataYPredArousal)
    valenceCCC, vcor = ccc(dataYValence, dataYPredValence)
    valencemse = mse(dataYValence, dataYPredValence)

It's a little strange. Shouldn't CCC be calculated for each video and then be averaged over the validation set? And which method do you use in your baseline model evaluation?

I'll be grateful to your reply.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.