Fusion module is added, bugs are resolved

Esse commit está contido em:
hesamsagha
2017-04-05 18:43:25 +02:00
commit 57ae9b62ee
52 arquivos alterados com 1897 adições e 2012 exclusões
+4
Ver Arquivo
@@ -31,6 +31,10 @@ To upload an audio/video file use curl:
Linux: curl -v -H "Content-Type:multipart/form-data" --user meuser -i -X POST -F 'file=@./sample.wav' http://localhost:8888/er/aer/upload
Moreover, this repository handles the fusion of audio and video outputs.
See http://localhost:8888/er/general for more information
Licenses:
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
Arquivo binário não exibido.
+10
Ver Arquivo
@@ -0,0 +1,10 @@
#!/bin/bash
export CLASSPATH=$CLASSPATH:/home/sag/Softwares/weka-3-8-0/weka.jar
NEW_UUID=$(date | md5sum | awk '{ print substr( $0, 1, 10 ) }')'Agree.arff'
#NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 12 | head -n 1)'.arff'
./SMILExtract -C IS09_emotion_Agreeable.conf -I $1 -l 0 -classlabel 0 -O $NEW_UUID
res=$(java weka.classifiers.trees.RandomForest -T $NEW_UUID -l Agreeable.model -classifications weka.classifiers.evaluation.output.prediction.PlainText | grep 1 | tr -s ' ' | sed -r 's/^ //g' | cut -d' ' -f3)
#| sed -r 's/^/class=/g'
printf '{"PROCESSOR":"OpenSMILE","ORIGIN":"libsvm","TYPE":"regression","COMPONENT":"mysvmsink","VIDX":1,"VALUE":'$res',"PROB":[{"CONFIDENCE":1.00}]}\n'
rm $NEW_UUID
+10
Ver Arquivo
@@ -0,0 +1,10 @@
#!/bin/bash
export CLASSPATH=$CLASSPATH:/home/sag/Softwares/weka-3-8-0/weka.jar
NEW_UUID=$(date | md5sum | awk '{ print substr( $0, 1, 10 ) }')'Conc.arff'
#NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 12 | head -n 1)'.arff'
./SMILExtract -C IS09_emotion_Concious.conf -I $1 -l 0 -classlabel 0 -O $NEW_UUID
res=$(java weka.classifiers.trees.RandomForest -T $NEW_UUID -l Concious.model -classifications weka.classifiers.evaluation.output.prediction.PlainText | grep 1 | tr -s ' ' | sed -r 's/^ //g' | cut -d' ' -f3)
#| sed -r 's/^/class=/g'
printf '{"PROCESSOR":"OpenSMILE","ORIGIN":"libsvm","TYPE":"regression","COMPONENT":"mysvmsink","VIDX":1,"VALUE":'$res',"PROB":[{"CONFIDENCE":1.00}]}\n'
rm $NEW_UUID
+10
Ver Arquivo
@@ -0,0 +1,10 @@
#!/bin/bash
export CLASSPATH=$CLASSPATH:/home/sag/Softwares/weka-3-8-0/weka.jar
NEW_UUID=$(date | md5sum | awk '{ print substr( $0, 1, 10 ) }')'extro.arff'
#NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 12 | head -n 1)'.arff'
./SMILExtract -C IS09_emotion_Extroversion.conf -I $1 -l 0 -classlabel 0 -O $NEW_UUID
res=$(java weka.classifiers.trees.RandomForest -T $NEW_UUID -l Extroversion.model -classifications weka.classifiers.evaluation.output.prediction.PlainText | grep 1 | tr -s ' ' | sed -r 's/^ //g' | cut -d' ' -f3)
#| sed -r 's/^/class=/g'
printf '{"PROCESSOR":"OpenSMILE","ORIGIN":"libsvm","TYPE":"regression","COMPONENT":"mysvmsink","VIDX":1,"VALUE":'$res',"PROB":[{"CONFIDENCE":1.00}]}\n'
rm $NEW_UUID
+10
Ver Arquivo
@@ -0,0 +1,10 @@
#!/bin/bash
export CLASSPATH=$CLASSPATH:/home/sag/Softwares/weka-3-8-0/weka.jar
NEW_UUID=$(date | md5sum | awk '{ print substr( $0, 1, 10 ) }')'Neuro.arff'
#NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 12 | head -n 1)'.arff'
./SMILExtract -C IS09_emotion_Neuroticism.conf -I $1 -l 0 -classlabel 0 -O $NEW_UUID
res=$(java weka.classifiers.trees.RandomForest -T $NEW_UUID -l Neuroticism.model -classifications weka.classifiers.evaluation.output.prediction.PlainText | grep 1 | tr -s ' ' | sed -r 's/^ //g' | cut -d' ' -f3)
#| sed -r 's/^/class=/g'
printf '{"PROCESSOR":"OpenSMILE","ORIGIN":"libsvm","TYPE":"regression","COMPONENT":"mysvmsink","VIDX":1,"VALUE":'$res',"PROB":[{"CONFIDENCE":1.00}]}\n'
rm $NEW_UUID
+10
Ver Arquivo
@@ -0,0 +1,10 @@
#!/bin/bash
export CLASSPATH=$CLASSPATH:/home/sag/Softwares/weka-3-8-0/weka.jar
NEW_UUID=$(date | md5sum | awk '{ print substr( $0, 1, 10 ) }')'Openness.arff'
#NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 12 | head -n 1)'.arff'
./SMILExtract -C IS09_emotion_Openness.conf -I $1 -l 0 -classlabel 0 -O $NEW_UUID
res=$(java weka.classifiers.trees.RandomForest -T $NEW_UUID -l Openness.model -classifications weka.classifiers.evaluation.output.prediction.PlainText | grep 1 | tr -s ' ' | sed -r 's/^ //g' | cut -d' ' -f3)
#| sed -r 's/^/class=/g'
printf '{"PROCESSOR":"OpenSMILE","ORIGIN":"libsvm","TYPE":"regression","COMPONENT":"mysvmsink","VIDX":1,"VALUE":'$res',"PROB":[{"CONFIDENCE":1.00}]}\n'
rm $NEW_UUID
Diff do arquivo suprimido porque uma ou mais linhas são muito longas
-15
Ver Arquivo
@@ -1,15 +0,0 @@
#!/bin/bash
# Arousal and valence prediction using bag-of-audio-words
wavfile=input.wav
#./SMILExtract -C "mfcc_energy.conf" -logfile "smile.log" -I $wavfile -instname $wavfile -csvoutput "LLD.csv" -l 1
./SMILExtract -C "mfcc_energy.conf" -logfile "smile.log" -I $wavfile -instname $wavfile -csvoutput "LLD.csv" -l 1
java -jar openXBOW.jar -i LLD.csv -attributes nt1111111111111 -o boaw.libsvm -a 10 -norm 1 -b book &>/dev/null
./predict boaw.libsvm modelArousal.svr arousal.txt &>/dev/null
./predict boaw.libsvm modelValence.svr valence.txt &>/dev/null
cat arousal.txt
cat valence.txt
Diff do arquivo suprimido porque uma ou mais linhas são muito longas
-506
Ver Arquivo
@@ -1,506 +0,0 @@
solver_type L2R_L2LOSS_SVR_DUAL
nr_class 2
nr_feature 500
bias 1
w
0.002614424181136787
-0.001263899781312691
0.001176853648970056
0.001337888719553897
-0.00101344044061725
0.001080949272712622
-0.0007599125301275103
-0.001566990692356626
-0.005612036535450196
0.0007763647188360081
0.002752688103056981
0.002509446446425768
0.003616621307520941
-0.0004441468157957035
7.492634707004078e-005
0.0008916282454711916
-0.000253261344429788
0.0012667487038444
0.0007213811047151121
0.000584708100406799
0.000306959729632193
-2.035618299635387e-005
0.001626377398542689
0.0009363178805822339
0.002948781349926091
0.0002498420782423684
0.0005500270468316948
-0.0006494705909348682
0.001192498722402708
0.0009823264434303319
0.001928384315523621
0.003321298828801261
0.002352426245908177
0.0002750006984774855
0.0004048130985910043
-0.001668246790787011
0.001487328276330092
3.340644152172541e-005
-0.0006988538453980235
0.00264404535862526
-0.001660398085138829
0.001830707808308397
0.001707907597965669
0.003509143347686815
0.002136807666747426
0.0001127921215547888
0.001778449039989992
0.0003973696779000191
0.001223403903598528
-0.0002294588193556762
-0.0002184399609493439
0.0006920375938489192
-0.0002500256845091261
-0.000426933979800025
-0.0001004139700393026
-0.000409703653132582
0.003234500956103735
-0.000812788996162925
-6.239979107910006e-006
0.0005413402173191207
0.0009978188814227889
0.001187401952379018
0.002112746705826906
-0.002260913324836196
-0.001659453243072217
0.003086822865290602
-0.001581208966550528
0.001488652810686538
-0.0005972177151875937
-0.003060917621038408
0.001678516450132472
0.001520473682417047
0.001966219375210702
0.004595608371439599
0.001112167083255031
-9.899911999344109e-005
0.002174569708327937
-0.003661835818578415
-0.002804552577730428
-0.002879254295678578
-0.0008441398389024955
0.00315331636923552
0.003615850604559958
0.0004613243528092508
0.001116053771147187
0.002200576109054272
0.002220246958632557
-0.0009247645924586413
-0.001922775901341873
0.001406722521090398
0.002428793714203375
-0.0008353874712068318
-0.000765826633412635
-0.001185196070313031
0.002850015203414008
0.00256890761460745
0.001880822576253037
-0.001899213785917481
0.002805623061585179
0.003114159111906259
0.0006472169493125273
-0.0003446358550056556
0.0008272012637238598
0.0009978911545506625
-0.001138749222009555
0.0007636149887827136
0.0003190758643446401
0.0001244951794580472
-0.0001661704251035895
-0.003042643153380162
-0.0008401456884493842
-0.001342690131929013
0.0009169104801507456
0.001457476730243217
-0.001926881283369534
-0.000149468967434895
0.001845092214945306
-0.0004686490302627312
-0.001128680894681623
0.0008298562417599503
0.00105275375656823
0.00147054344381228
0.003136255316251119
0.00424178433708677
-0.0003695684185233207
0.0009778018921549653
0.000318420215340312
0.0002846728342599034
-0.0008229653389717151
0.001408175836999388
0.002845839323728019
0.006462736319942868
0.003249841743223088
0.002799762352130509
0.000439042080545322
0.002813107986342101
0.001311817524740016
0.00122586330367399
0.001513688297838619
0.0005525807771752713
-1.700905723336665e-005
5.441696026381286e-005
-0.0001414460972361757
0.000916341540801566
0.0005352583670685076
0.0007106010474533635
0.001130596661481162
-0.001006597133651421
-0.002855871175137589
-0.001867137436433331
0.000816301041250733
0.0003027190036456308
0.002270333078722838
0.000995406272755508
1.613981070350419e-005
-0.0009468557835438064
0.001161892955551907
0.0004573778233833249
1.93262968704838e-005
0.0009773022261960612
0.001066436745473102
0.002364113684764118
0.002257806861870105
-0.001389923938325398
0.0003725237491809997
0.001366923038854325
0.002449589706455447
0.0009869620312033603
0.004199612004727671
-0.0006828913233250069
0.001106479658648222
0.0009909416119465474
0.002122718553267952
-0.0003478992610689801
0.001129713306707562
0.005108587768901567
0.0008194439196505427
0.0007371318512327206
0.0003371664777810032
0.002201593052201203
-0.0008453585370636733
-0.0009611849470325523
-0.000384563960647022
-0.001535733691341551
-0.0005517189744170037
0.002041478337671748
0.00017545812771416
0.001427326729579888
0.002633398561767754
0.001218103923455955
0.001578368127599233
0.001599476686811997
0.0003167213827787553
-0.001017126586960768
0.000474870757930076
0.00153278735917607
0.001313759878919915
0.001485771192940418
0.001927059415068355
0.00322338017259163
-0.0009333747801734334
0.003555708368586459
0.001596889536813054
-0.0003597639877869259
0.0007194534987191333
0.003511402109609577
0.001106971262134249
0.0001869910299758354
0.000290375015388559
0.001771799249627151
0.003644056110194333
0.001035557330613607
0.002442289572553691
-0.000265173207505303
-0.0005800179449936107
0.0009217647914449637
0.002967495968107593
8.907810416372393e-005
0.001311186887883266
0.0007279328923608641
0.001232292605398714
0.003764052704385186
0.001336748876896526
-0.002631455412016308
-0.0009138440525073828
-0.0001893983387710927
0.00390186171102783
0.0006733394075618671
-0.001611736413983418
-0.0002377240221160322
0.0001104415909618001
0.0003373702870130116
0.001641363040414891
0.001293867072043476
0.003402546708065364
-0.003153604432977936
0.0002569618842471533
0.001060463472635636
0.001213178830469504
0.001487565980486828
0.002066795871288383
0.002730248367241637
0.000603929474674968
-0.0007642228154860994
0.001781257021235545
-0.0004706349531334094
-0.0004030967895235289
0.001474485068375805
0.002019067926100776
-0.0001203068358159014
3.113492297295356e-006
0.0005408577830161899
-0.002785656378472691
0.0002962726734118604
-0.001047717405988731
-0.0001333763173020898
0.001659161696509777
0.003610414051081835
0.0008879823825875689
0.0002815136274828068
0.001119973769444101
0.002913166130347209
0.002860839540021754
0.003990593160649252
-0.001529954341662076
0.001320419407738797
-0.00082313609691137
0.002404947204027051
-0.0008949323033372203
0.002545021990982655
0.001717943986066685
-0.0006971610661187036
0.00231958091859971
0.0002881549375444366
-0.0002571561442136507
-0.001237560670968238
0.002900608225487241
-0.000817567024622426
-0.00142836478287216
9.782613697696893e-005
0.0003261681122797812
0.001326244579610851
0.0007387546584253009
0.001718506230548474
0.0006286257372368127
0.00114439311493381
0.0008396620161311858
-0.00159114148647417
-0.0009009673286398726
0.001407577268699247
5.2654386152383e-005
0.003482491935128033
0.001077348301113959
0.0002149289359256147
-0.001387975474957114
0.0007821847050728689
-0.002441586137908249
0.002598123366194804
0.0006448637102140111
0.0001765696055741777
-0.001631022567143885
0.001990202090286923
0.001908026233603102
-0.002301644870599717
0.003043661400240283
0.001213927492620288
0.0003141084324435197
-0.001461823687595186
0.002635949109900103
-0.00137489594507218
0.003578953996222509
0.0006301582775098219
0.003374988338920588
0.0002084301900889632
-4.46203279615068e-005
0.003927872156617354
-0.0001495578936843642
0.004609098813287749
0.002641972000103752
0.001647657077933135
0.002068809019682051
0.002207826882839669
0.0005596144540824485
-0.001658095692073935
-0.001212583344791502
0.0002878345468843371
0.002602349050812003
0.001498112157909103
0.0008833719301300267
-0.0006436878663416651
0.000455778536649397
0.003447737043958404
0.003577738958401979
-0.0008210432734321838
0.003614927634195696
-0.001547851316749247
0.0009359642289094413
-0.0007988042574346794
0.0007449697273710899
0.001883833693530887
0.0001802969251663417
0.002121059970563762
-0.0001132862869333302
-0.0005618620794531642
0.003441747608950622
0.003617281529240981
-0.001177960605165011
0.0003023161185411942
-0.001026912055477017
0.001869307715682101
0.001546314148411062
0.0005522624005197278
0.001388167710672025
0.001597524703909956
0.000842085321546492
-0.001417521969193216
0.001324994176607578
-0.001265523095765682
0.0006101200255231605
0.0001832403913341332
-0.0006017858887806263
0.000814425445264487
-0.0002196772832231774
0.001300659614279639
-0.000747409060098791
-0.0007388798299437707
-0.0008020728972800245
-0.001289936632975333
0.001250039895148947
0.0008183759401799029
-0.0006678630266648534
0.001796913842142573
-0.0003948077223593612
-0.001265065556269838
0.0007857429323402519
0.0009016603318566211
-0.002722400191801875
0.001615638661697688
0.0004603773224447304
0.0006326330401973011
-0.000234038540676119
0.000731902584100517
-1.879174318690593e-005
-0.001696420899731151
-0.001123970859133815
-0.0006006764873643408
0.0005396437633142235
-0.002354829495846894
-0.00132746451816014
-0.0003335198122750636
0.001559634284920335
-0.0003471563391654555
0.0008661511905751529
0.000695049291741742
4.122986413087891e-005
0.0008333840780250955
0.002835456803859915
0.001813436960228738
-0.002262467795384289
0.000619744222790096
-0.0007328362187294644
0.001633789996746061
0.0009778920091426209
0.001258745696581593
-0.0007327347404525504
0.001173134213463041
-0.0001120965993590384
0.002989666122326585
-0.0005279975740939165
-0.0006087307222369169
0.0006620533241124335
0.0002943800469024194
0.001523781238335323
0.0002512760366895166
-0.002945546857730055
0.0005809885168859898
0.002009325536232276
0.0006812939252709168
0.00282975568416363
0.005273403283199972
-0.001065267635344766
-0.0009976700167871264
3.505251838452074e-005
0.002908551030203454
0.0002276653453263907
0.002022350310928148
0.0008654192120557809
0.002236930742375254
0.0003504454590949298
0.0005388169376921593
0.0008968732955437291
-0.0004382557364141605
-0.0003996967866120859
-0.002633157194464933
-0.0004950629852018946
-0.000977768646069709
0.000776368090062961
0.001079788358460681
-5.702680875337225e-005
-0.002191887842995315
-0.002267797856464718
-0.001034547542649065
0.0005420916438367317
9.705263964854774e-005
-0.00349030818408077
0.001026453785278982
0.001722675963755837
-0.001282977760608197
0.0008505229512257552
0.0007166703136663667
-0.001582098441924648
0.0003044958186572839
4.40836697249732e-005
0.0006848956502451507
0.0007801723005713571
-0.003961863363100715
-0.001285851060364668
-0.0004372508306952774
-0.001750587528842246
0.003942220245924306
-0.0003728491852269179
0.0006240452696533366
0.0003931794140076768
0.002394318175666923
0.001160946820668282
7.097018767737788e-005
-0.0006640733346831446
0.00182246440086003
-0.000110747974127558
0.0009012373774781253
-0.001326364558862842
-0.0001745992991014805
0.003478675054436681
-0.0005390361452858429
-0.0006959826130726038
-0.0007660908392690618
-0.0006528798434912401
0.002298961154922542
0.001265744692409283
0.001260396246369192
0.00156885644066095
-0.00163467747663421
0.003126940592144163
0.001011787329373343
0.0007002112538259709
0.00154191046378319
0.00141926912822269
0.001064482615768491
0.0005974941737391755
-0.002396643457360635
7.298597805718118e-005
0.001766527473769153
0.001522347127329686
-0.000171610450632909
0.001181372460441368
0.00060408206622188
-0.0005844739694242455
0.001237758871730997
0.0002912250279830736
0.002554991122110226
-0.00278018718010625
-506
Ver Arquivo
@@ -1,506 +0,0 @@
solver_type L2R_L2LOSS_SVR_DUAL
nr_class 2
nr_feature 500
bias 1
w
0.002605162206060179
-0.001472091965431503
0.001193909905203371
0.002144739338288731
-0.001749377558406725
0.001323436122699688
0.0003507390701459222
-7.846765362678149e-005
-0.003463208973392357
0.0004421144499594529
0.001833473111739364
0.0009508447766370538
0.002989971918963363
0.001191814765875848
-0.00265668426119822
0.001561476981010275
0.0002848676390002454
0.003285433517746234
0.000200699712007701
0.0006397172911964012
0.001405398966589253
0.0001959036500346391
0.001537527102436575
0.0007788006262410897
0.004019767494690636
-0.0024694510263496
0.003423289606299218
0.0008691782177177774
-1.494654736572215e-005
0.001525254422513723
0.003862836265029235
0.002125036172182977
0.003266205901900585
0.001357821321069907
0.001135728574558419
0.0006902912506074098
-0.000234971786451484
-0.0004180360196656417
5.023953580813245e-005
0.004326810129344937
-0.001883310704330575
0.0008255898976833249
-0.0009438205747517769
0.003288507826973241
0.002529936765433307
0.0010847424981391
-0.00205164848261108
-0.001584694079820821
0.0002626000924347976
0.0006575087586658033
-9.681664391317167e-005
-0.0002084149741719356
-0.002341690606435181
0.001129677775070529
0.002612596493676696
0.0002781724734924659
0.0007018836048131403
-0.0006693293687038051
-0.001689164528106299
0.0001413106960752519
-0.0003423310604756451
0.0003705327339805738
-0.002490794511524049
-0.001162928283000122
-0.001040245132462882
0.0002407578728641261
0.0003875816913937285
0.0002484622104781383
0.0009213824589765286
-0.00230355720975048
0.002064485817309516
0.001028050271170841
0.002098180124121605
0.001640539955161992
0.001119459477564629
0.001253363079674738
-0.0004769869605310309
-0.001666160029720203
-0.001182598366599691
0.0009072080644154841
-0.001329412492817096
0.004444539370503616
0.001849727135507289
-0.001166981838479384
0.000791091791797372
0.002032091724762388
0.002830826400909323
-0.0003792990162779232
-0.003479875127943903
-0.0005350900717210162
0.002043201654662796
0.0001965893582635767
-0.0001371238824561785
-0.0008106382210100625
0.00148435241086275
-0.0009440209251834071
0.002862802827119041
-0.001135645892834673
-0.00120237267417065
-0.001949857285761335
-0.0001382100004043848
0.0008609710233836159
8.152100595777721e-005
9.805102882013882e-005
-0.002266413982942071
-0.001062986924594547
-8.899800980990754e-005
0.001314967619101446
-0.0009440986513884611
5.731579824522643e-005
-0.0006809542091505442
-0.001817191194984125
-0.000815324093139249
0.002187084536499781
-0.003104183103466754
-0.000345494388935753
0.001296356189059482
0.001332288495174361
-0.004059341146642911
-0.0006601083065536066
-0.0007414283141487853
-0.001588524020555137
0.0006505036490025935
0.001801677937673249
-0.001332010374081228
0.00334872919055607
0.001171378045175447
0.001327206544745418
-0.0008719507427481622
-0.001574815325125707
0.003045479088411038
0.005625040976034036
0.0003761425526094415
0.0006416507983289115
0.00297611723465161
0.001831797407817577
-0.001786270955094395
-0.001904188321943547
-0.0002729988479236507
0.002467158817714775
-0.0002538585743375627
-1.322889416268927e-005
0.002320125764725968
-0.001825737842011375
-0.0004659617758831124
0.003638263609047125
0.001716028885044811
0.003009364430980831
0.0007368110088194897
-0.001032640776866736
-0.0005314521713460505
-0.002073444587547883
0.001287748355306162
-0.0004840814687198754
0.0009138720750723853
-0.001928246813570929
0.002651690972638656
-7.547095061616201e-005
0.0029178714436312
0.002688902856128762
-0.0006675496327761262
0.002774992255550119
0.0004055250796016525
-0.0024342404107424
-8.37081284493154e-005
0.001424348968798708
0.001813007892809583
-7.622664319043213e-005
0.0008773208214135538
-0.000840643242220864
0.001177267907741954
-0.001273888517566433
0.0007652225428271607
0.002426791638008896
-0.001509641635589666
0.004345171495561568
-0.001131326905201481
-6.744896765516797e-005
-0.0003594633364584458
0.0005346180716076258
-0.001628418447709459
0.0006598187483046005
0.0007358552159980505
0.0004967276222277877
-0.000763093376100163
0.0005306054443928539
-0.001472570874400998
0.001046256597005959
0.002483566882364665
-0.0009854097900840575
0.0006824979958834789
-0.0003784313169985191
0.0009843429438696736
-0.0002816711580461689
-0.0006351561192819331
0.001598790158404059
0.002260165671630609
0.0006400771093172772
-0.0009409650536458136
0.003777982475225834
-0.0007860136282481651
0.002970336618985869
0.0005406346857829075
0.0007885133168467327
0.001524677783131273
0.003945597129092131
0.003275855156501855
0.0005793337601484919
-0.002052637506585683
-0.0005796744964655264
0.004668184590756228
0.001456920117274799
-0.001829203892720271
0.001750949964497285
-0.0001181639345420844
0.0008476211950812182
0.000303389423924617
-0.0002720875621791807
-0.001345350867740706
0.001392826794368624
0.003365762953674832
0.002141111795051495
0.0001684079693459364
0.002049852372826755
0.001933734837462584
0.001620103548819295
0.003848836436884468
-0.0006519348008070052
-0.0008651359574649852
4.121268765844798e-005
-0.0002948217230016978
-0.001210918081437684
0.0003932962052382394
0.002421309547640413
-0.0004663403454421675
-0.002173833256569554
0.003214893791300685
-0.0008369814489583905
-0.0003184643436498925
-0.001683022221859073
0.0008046068199111757
0.001316750672489298
-5.496886272042534e-005
-0.002782045576354208
-0.0008814255744881731
0.001796209779397872
0.001700762150430318
0.001881251979906568
0.0006794150769523206
6.21999975467151e-005
-0.001561335966700881
-1.821342467499658e-006
-0.0008574249901958335
-0.0006696151244284204
-0.002201447731534094
-0.002307732582258395
-0.001315746720452059
0.002824972803616357
-0.001009688983533697
0.0002347155036940288
0.0005558512296471466
0.002293225898223852
0.001091322555215698
0.004713499560288406
-0.002212353868797088
0.00170030981595098
0.0007555921385385295
-0.000885708472852782
-0.001772538919836531
0.002387999395252449
0.001790139262154665
-0.004658628275747407
0.0006075521482066035
-0.001497968271097847
-0.0002533123945563971
0.0007118040262430449
0.0001932333089999665
-0.001600361587903945
0.0002855075920941781
0.00124128542792171
0.001385506144084131
-0.0001398554814062079
0.001075767067962076
0.0007143914631058003
-0.0004806289688545247
-0.00173019176353133
0.000212441252338061
0.000703257668474831
0.0001097189373243031
-1.720603979063054e-005
-0.001082597647150342
0.003370572907980223
-0.0005378091352165564
0.000656800149605375
-0.000532684839681119
0.0001538438853471965
0.001445185884839459
0.001669077211490679
-0.001130420612381501
0.0009064127367975756
-0.0003024065417510699
-0.0004326678727770649
0.002473090125026581
-0.001013881107054315
0.001174999183423075
0.00174940157261738
0.002129005740492941
0.001744246737810397
0.001555610296947044
-0.001868030423044575
0.001694667628994438
0.001180941948212399
-0.0003384463247659496
0.000156611315496443
0.001986207751783147
0.005724136538637812
-0.001014342645068951
0.004161541066055778
-0.000789083537791291
-0.0003337970619524984
0.002809452323759541
0.002722443682275564
0.0005439710160439719
-0.0004279153691394782
0.0007526732280038493
-6.143559351224582e-005
-0.002196481757826111
-0.001954303669661267
0.0002716038053974922
0.001730703089617006
-0.0009780691126774598
0.001687142507490198
0.003808628178377112
0.000839648646186886
0.002615495964182224
-0.002863840283493402
-0.0002000123161701871
-0.0008046993134804906
0.000667158004618861
0.0003372262195252452
0.0002732416043761785
-0.002471328948211941
0.0001566901680276102
0.0004807036977722124
0.001400958800622671
0.00187715296378951
-0.0006001379706036187
0.0005973651138337257
0.001431407212801983
0.005327920892087485
-0.001633950236274221
-0.001938822525749577
-0.0007775313827548838
-0.001261409740557187
-0.0003948479478055902
-0.0003172428080099547
0.002263911924278274
0.0005068955464824282
0.002677603529554166
-0.002346514676768802
-0.001566809835778487
0.002535247195684115
-0.001449720990948347
0.002329225885083865
0.0004210446112108766
0.001499202581277419
-2.783888294125558e-005
-0.001811360689235398
-0.002704587799854568
-0.0008706770793824335
-0.001230965191611267
0.003031620013968557
-0.002391887195278595
-9.267269432091334e-005
0.000266853800769517
-0.0002286990163569764
0.0003773100408423015
-0.002615899448396195
0.001385337504644116
-0.001446722088664313
-0.001025023595899365
0.002273844381815133
-3.114252921102228e-005
-0.0005625438034246383
3.094849939184497e-005
0.0003912642047494195
0.002620015796863886
-0.001018203271337412
-0.001478280756628229
-0.0004230630581522384
-0.0004310539013829823
-0.00185877714070625
-0.0003469331383689908
0.002222061675546858
-0.0005135782125866714
0.004598128080857131
0.003233801657658935
0.004009695722682436
-0.001208420198633167
0.002067307497117762
0.002663896421150825
0.001958675117946425
-0.002643414340374418
0.0006064300529885675
1.739230188498241e-006
0.0004822555347317731
0.001066209039809392
0.002976340324013392
0.0002502610850205078
0.000728311570772182
0.0007126759536257385
-0.002262457534091425
0.0002886236984353326
-0.0006295121779181293
-0.0003722022929604411
0.002243069264750704
0.001299602027892652
-0.001855357867440572
0.0005140216292871075
0.002597882458883753
0.001162640062537186
0.0009422160445958062
0.001201029044525468
0.0033363117673962
0.0004951899354902913
0.00228602753051162
0.001865615876320911
0.0006335097744041983
0.004461412518401789
-0.0002958989907655057
0.001157244109442636
-0.003842450386495464
-0.001467104902561963
-0.002291058674424038
-0.001359546106812545
0.001633860097881385
0.001745602448261993
-0.001306708184247726
-0.0006292925183246526
-7.068866564059419e-006
-0.002548109822781161
0.001766399057308826
0.0002128448078300415
-0.001432722745251132
-0.001088339188646447
0.001954150425853544
0.0009054532444743234
0.001435038886746492
0.0007112506803623181
0.001107023580637897
-0.001924038608685806
0.0003014170380030285
1.817255344604322e-005
0.0008269866626449576
0.001637923980242403
-0.002310707664954007
0.0004438102202628633
0.002514910837368378
-0.0005432659105068842
0.001446467735554032
-0.00246814684271538
0.0002209281186630151
-0.003155142374028704
-0.0006220638926040524
0.0030603762417604
0.0009688040426069092
-0.002012639088856971
-0.001641430794295916
-0.001860534122687048
0.001196433762286324
-0.001837430041241428
0.0008270955577951972
-0.001169602750806934
2.65085828195483e-005
0.001544438578499803
-7.983352584739467e-005
0.001036019595442713
0.0007561391702774874
0.001520169850175026
-0.002014239832054699
-0.001736088688724359
-0.001555710749651749
-0.001665361197165054
-0.001637702157491784
0.001631153232914698
0.004049874047225024
-0.001228103760345923
0.0009491789809335045
0.0002406497679497205
0.001434977456407217
0.001335371072491472
0.001797888643218709
-0.0006044168083831356
-0.004902074316991959
0.003976502020241338
0.0001355233348498881
-0.0008970680310158709
0.000128434762944971
0.00030107007872832
0.0007412019150243649
0.03234364097191275
+1
Ver Arquivo
@@ -0,0 +1 @@
0 1:-0.34517753 2:2.0749202 3:-0.99592125 4:-0.4431077 5:-0.88197553 6:-0.66126937 7:0.754436 8:2.9394367 9:-0.72986484 10:-0.2942551 11:-0.9713275 12:2.618671 13:-1.5124933 14:1.8104222 15:-0.8865274 16:-0.77162606 17:-0.7330219 18:-0.39175242 19:-0.60376745 20:2.9106364 21:2.5937617 22:1.8870362 23:-0.43924052 24:-0.6582055 25:-1.2403363 26:-0.8081747 27:-0.28780824 28:-2.8506162 29:-0.8175492 30:-0.32939097 31:1.8293487 32:-0.85812145 33:-0.4440836 34:2.2667632 35:0.27348027 36:-0.8510149 37:-0.27094075 38:-0.5574155 39:0.36230478 40:-0.90953606 41:-2.1332486 42:-0.3502525 43:-0.74302614 44:4.570176 45:-0.42849442 46:-0.4943925 47:-0.4381088 48:-0.6475775 49:4.780079 50:-0.6157594 51:-0.64664024 52:4.989372 53:-2.3562455 54:-1.5040371 55:-0.4386637 56:3.6696732 57:2.409044 58:-0.84506714 59:-0.25284523 60:-0.77941716 61:-0.70293236 62:-0.4786699 63:-1.3195107 64:0.14738114 65:-0.8036119 66:-0.89895767 67:1.604048 68:0.4249838 69:-1.0154834 70:-0.35182965 71:1.4641689 72:-1.6776837 73:-0.60274273 74:1.333154 75:-0.5662595 76:-0.75986755 77:-0.9031027 78:-1.3099152 79:-0.48431665 80:-0.7490976 81:1.9169147 82:-1.013815 83:-0.73489773 84:-0.73589426 85:-0.34527126 86:-1.8815866 87:-0.85464233 88:-1.1705755 89:-0.54858303 90:-0.38767383 91:1.054287 92:-0.09178605 93:2.3882782 94:0.2315529 95:-0.54724306 96:-0.37196854 97:-0.083494134 98:-1.0575668 99:-0.58600456 100:1.3818223 101:2.7519999 102:-1.484115 103:-0.4919842 104:-0.51755303 105:-0.9400303 106:2.4025445 107:1.7464274 108:2.2716765 109:1.377426 110:-0.8197171 111:1.2974626 112:-0.08389849 113:12.402488 114:-0.5140228 115:1.2268296 116:0.92730165 117:-0.31505725 118:-1.2780485 119:-0.75698155 120:-0.4569731 121:5.1690445 122:-0.72419006 123:-0.534283 124:-1.3190423 125:-1.0335346 126:-0.12024701 127:-0.612804 128:2.0649838 129:3.9171593 130:-1.0226794 131:-1.5247961 132:-0.79242635 133:-0.6672235 134:-0.9887412 135:-0.60328364 136:4.0442214 137:-0.5084914 138:5.616796 139:-1.1988448 140:-0.8068602 141:-0.3401983 142:1.4988986 143:0.7175207 144:-0.34621304 145:0.73994434 146:-0.2598736 147:-0.9878281 148:-0.48311335 149:-0.9903046 150:2.121172 151:-1.4036629 152:-0.6540748 153:-0.9959018 154:6.9594264 155:-0.18409805 156:3.820958 157:-0.53724873 158:1.6452526 159:4.483061 160:0.00723794 161:-0.6125529 162:-0.5760454 163:2.1318605 164:-0.90333796 165:8.80295 166:3.8620973 167:-0.2768712 168:2.2445502 169:-0.43832207 170:1.6644027 171:-2.5373776 172:-0.13884331 173:-0.7104944 174:-0.40286747 175:6.870797 176:1.3002979 177:0.51952237 178:-0.302259 179:-0.63369006 180:-0.71021426 181:-1.651373 182:6.4715834 183:-1.442511 184:-0.90164995 185:2.329677 186:4.0137196 187:6.246051 188:-1.5500207 189:-0.19884104 190:2.0527818 191:-0.38526452 192:-0.035258595 193:0.019915255 194:-0.8840986 195:-0.68939364 196:1.2665584 197:-0.7926631 198:-0.93456525 199:0.31475562 200:2.852223
+23
Ver Arquivo
@@ -0,0 +1,23 @@
#!/bin/bash
# Arousal and valence prediction using bag-of-audio-words
# January 2017, Chair of Complex and Intelligent Systems, University of Passau
wavfile=../m2_W.wav
#Linux
./SMILExtract -C "mfcc_energy.conf" -logfile "smile.log" -I $wavfile -instname $wavfile -csvoutput "LLD.csv" -l 1
#Windows
#./SMILExtract.exe -C "mfcc_energy.conf" -logfile "smile.log" -I $wavfile -instname $wavfile -csvoutput "LLD.csv" -l 1
java -jar openXBOW.jar -i LLD.csv -attributes nt1[13] -o boaw.libsvm -norm 1 -b codebook &>/dev/null
./predict boaw.libsvm modelArousal.svr arousal.txt &>/dev/null
./predict boaw.libsvm modelValence.svr valence.txt &>/dev/null
cat arousal.txt
echo
cat valence.txt
# Training parameters
# openXBOW: Codebook size 200, a=1
#./train -s 12 -B 1 -c 1e-4 trainArousal.libsvm modelArousal.svr
#./train -s 12 -B 1 -c 5e-4 trainValence.libsvm modelValence.svr
+209
Ver Arquivo
@@ -0,0 +1,209 @@
standardizeInput
0.0;0.0;-2.7987442;12.835033;3.674167;0.88232374;-5.6133327;-4.454226;-7.2187877;-2.5061784;-3.8685186;-3.0415812;-4.39152;-2.3655393;17.290041;0.0
0.0;0.0;16.946337;12.087008;12.555441;13.748904;14.514771;13.537267;13.433995;12.708553;13.900535;12.684247;12.162774;10.348725;3.733623;0.0
log
standardizeOutput
0.016711533;0.2458947;0.119975515;0.017293816;0.07864389;0.07345081;0.054645747;0.22229986;0.060947128;0.016657878;0.09921387;0.07167005;0.12760152;0.05728063;0.11510794;0.0810941;0.09517609;0.15706766;0.299381;0.06792199;0.028388157;0.058905106;0.02539992;0.077992775;0.12184241;0.082172446;0.010146967;0.26322645;0.10109532;0.0230463;0.023491392;0.06521106;0.027023977;0.10216836;0.09442952;0.09604473;0.009684977;0.0384513;0.23273252;0.07514433;0.21134324;0.026527049;0.09487005;0.15472652;0.025244854;0.04374604;0.030228917;0.060666338;0.032933205;0.060574885;0.06328879;0.030330116;0.2482877;0.18577757;0.027088707;0.08835253;0.01438307;0.08935661;0.007590669;0.09269756;0.091575295;0.037541702;0.1348835;0.39031616;0.082093656;0.091112465;0.22263214;0.08315184;0.13260771;0.022617763;0.12891558;0.16135255;0.03629125;0.08581946;0.031540006;0.20596983;0.2683668;0.15317743;0.033838462;0.06672072;0.048949037;0.10777431;0.06024359;0.09118744;0.01973476;0.15512814;0.07516708;0.14037606;0.050485525;0.023486068;0.047628343;0.0014370716;0.047436472;0.09538018;0.03065197;0.019416772;0.0010056479;0.14469366;0.044666544;0.062598765;0.04020183;0.19172294;0.024628509;0.0370038;0.089425184;0.025109889;0.08017009;0.08720165;0.22618681;0.085905835;0.07963575;0.3208188;0.010572369;0.03663856;0.35431635;0.1536875;0.015837522;0.17259629;0.07036231;0.03541808;0.030148486;0.07070026;0.053023655;0.12965696;0.11724883;0.13118269;0.07272086;0.028603712;0.07000507;0.12054122;0.19465983;0.051365525;0.076440394;0.08250606;0.054680884;0.15935804;0.043079447;0.010776468;0.15254515;0.06205233;0.0191803;0.20497155;0.06299776;0.019974237;0.050010737;0.011527463;0.105591774;0.022317551;0.11288368;0.13534737;0.16910782;0.07396825;0.09974993;0.014739927;0.14453834;0.1679949;0.03066792;0.020044502;0.022453902;0.24208477;0.064560935;0.05521559;0.13952671;0.11623915;0.019024575;0.03682339;0.1537169;0.13789168;0.023718363;0.2330294;0.2676797;0.20337297;0.092338264;0.02490146;0.016930133;0.03765689;0.06676913;0.013741483;0.07122503;0.07932812;0.17604662;0.046223685;0.19518179;0.07420452;0.09368003;0.033116624;0.051183004;0.21340081;0.0060632215;0.054343805;0.025200628;0.12569496;0.119096234;0.23564003;0.09065519;0.027437275;0.066307686;0.11837669;0.08288426;0.06148533
0.048414312;0.10422267;0.120466866;0.039028473;0.08916788;0.111075476;0.08845988;0.08955199;0.08350468;0.056610327;0.10214255;0.11168991;0.08436502;0.07462733;0.12984137;0.10509508;0.12984072;0.09108966;0.09376932;0.10886046;0.06322842;0.09743375;0.057826906;0.11849304;0.098233365;0.10167658;0.035256;0.09234019;0.12365655;0.0699664;0.053511765;0.07599281;0.060853355;0.09334998;0.09855754;0.11285904;0.03574574;0.068981394;0.13554955;0.0826183;0.09907108;0.075736925;0.12768064;0.11367318;0.058915246;0.08848443;0.06899865;0.09368197;0.08095749;0.098374285;0.09787326;0.0622193;0.105374284;0.12351927;0.061752792;0.101860814;0.044415955;0.105739065;0.030021012;0.1189319;0.13027611;0.07842921;0.10222236;0.087593645;0.10215585;0.10135345;0.1125862;0.08995925;0.1305858;0.06428612;0.10444641;0.09617578;0.060210183;0.07993687;0.055698853;0.11131777;0.0841313;0.1169369;0.06986847;0.08906812;0.10110888;0.10630569;0.081975475;0.12391378;0.057157263;0.08244539;0.08795151;0.11992055;0.09202896;0.060582034;0.06995697;0.015656754;0.09814865;0.11229781;0.056011617;0.052200038;0.012044534;0.13681751;0.07622218;0.093925856;0.073606215;0.12918335;0.050059553;0.071497604;0.09513011;0.069625236;0.11547727;0.09973647;0.083183065;0.10479937;0.08690182;0.08400818;0.04213514;0.07127808;0.07731665;0.09606218;0.050268713;0.13504675;0.09295115;0.07750583;0.06461556;0.097626664;0.09924264;0.09829628;0.113444515;0.08149577;0.11866904;0.07931486;0.09321772;0.117868036;0.12766285;0.064820565;0.114564896;0.08344556;0.090638764;0.11199833;0.084720105;0.041302845;0.12724346;0.07690592;0.05637976;0.106196396;0.0813709;0.057693485;0.09645635;0.044357963;0.10689287;0.04619527;0.11398885;0.10786575;0.1204761;0.11308836;0.100160405;0.055821538;0.12577689;0.09098022;0.057083283;0.061594535;0.057859767;0.09413667;0.10539651;0.095852844;0.10536453;0.12867737;0.050338108;0.06344205;0.11678298;0.09038499;0.054111723;0.10225675;0.10549462;0.079120554;0.1299634;0.061810553;0.05865204;0.064389996;0.10512335;0.045462612;0.11239727;0.11169604;0.106606215;0.0777028;0.13530697;0.08229859;0.11609728;0.08247526;0.09725724;0.1376761;0.030492807;0.09178877;0.06541123;0.1222935;0.114828005;0.12923555;0.1314999;0.07417407;0.08365179;0.12666498;0.12231332;0.088452175
codebookNumeric
200;13
1.2040534;0.492311;2.3457189;0.16945606;-1.1503549;0.24328569;-1.6775182;0.9152124;1.5690712;-1.6380639;-0.22030772;1.8954529;1.7548634
-1.01769;-0.8981986;-0.8033269;-0.12748893;0.14628668;0.3473729;0.686392;-0.24668847;-0.42726877;-0.4050913;0.42492703;0.37780964;-1.1612798
0.94257504;0.06695346;-1.6325837;-1.0728989;-0.7055452;-0.6045618;-1.0766107;0.4559236;0.2288448;-0.70081484;-0.44873846;-0.04598108;-0.15957445
-0.89326364;2.1458018;1.067606;0.7723362;0.28770643;-0.063895695;-0.69115645;-1.6786176;0.4257969;-0.50580204;-0.6434601;2.0633419;-0.40668303
0.35854912;0.7148912;-0.40230298;1.3538879;0.25101084;0.95616984;-0.82518953;0.67355996;0.6430651;1.4730084;0.23953764;0.79409516;0.28526682
0.9529419;-0.5002268;1.0057673;-0.7098584;-2.5144846;-1.7044204;-0.08781967;-2.5036683;-2.5129905;0.22371878;-1.1398132;-1.9426895;0.76772606
-0.0389857;0.025006732;-1.0525564;-0.86888194;-1.5074745;-0.5423321;0.08529975;-1.213948;-0.5186988;-0.5366694;-1.2987753;-2.2657273;-0.74925375
-0.86813253;-0.26543963;-0.3097275;-0.14562984;0.4444048;0.7521708;0.95350593;-0.054941777;0.99675274;0.72239435;-0.032254636;0.752403;-1.4545096
0.8635114;0.46971807;-1.1288291;-1.1946366;1.0572915;1.5592384;2.2139564;1.8305756;0.58191025;0.0342827;0.013832768;0.5136325;0.33367565
1.7995437;-2.6167502;0.32556006;-1.6798637;-1.0076169;0.47574064;-2.30443;0.630711;-0.6910749;1.4994829;-1.3504814;-2.3805184;1.7367687
1.2783798;0.3909617;-0.08649669;1.828053;0.49425322;-1.6181955;-0.7490804;-0.30134442;-0.5511839;-1.2825632;-0.78199345;-0.5221349;1.2411453
1.1853927;-0.23074058;3.0039299;0.44894785;-1.6476599;-1.4967065;-1.0310687;0.3228759;-0.66508746;-0.96997076;-0.07103222;1.196843;1.1942714
-0.59281164;-0.5933736;-0.4809886;-0.15638648;0.43301028;1.1541344;1.5478729;1.7607409;0.7362283;0.16308455;1.3541582;0.6635546;-0.39993358
-0.14849097;-0.39970484;1.346559;-0.5987206;-0.23213422;1.6242168;1.370237;-0.5520116;-0.28924343;0.5662596;-0.8989274;0.0014353875;-0.46475524
1.4848386;0.445861;-0.8730587;-0.68739843;1.2120881;-0.22245687;-1.3892071;0.4634305;1.0177953;0.91586816;-0.15527578;-1.5836462;1.6236129
-0.454495;0.88284427;1.1305252;1.3592126;0.14417407;-0.78112465;-1.0846231;-2.0549343;-1.0897619;-0.9220854;0.5563717;-0.27215213;0.2692075
-0.18573488;1.4945598;1.8451978;1.6092625;0.42418012;-0.62497795;-1.3878025;-1.5183076;-1.3139129;-0.6654001;-0.45056686;-0.70267063;-0.36885098
-0.6705907;-0.72757167;0.047945593;-0.10522339;0.2047022;-0.18966931;0.3671071;-0.71933615;-0.6283716;0.2900356;1.5890471;0.7658795;-0.84006625
-1.0635139;-0.39179954;-0.30426636;0.63755983;0.5402108;0.10044747;0.59144455;0.8885015;0.4488247;0.028782561;0.9315746;0.87856996;-0.6474894
1.68824;-1.2480807;-0.21584716;0.78187954;-0.9142236;-1.7195365;-2.199438;-1.683095;-1.6921659;-1.5725167;-2.192767;-2.1371465;1.4197547
0.7645973;-2.1002526;-1.0360101;-0.8721375;-0.7090051;-2.4628158;-1.4820359;-0.80972415;-0.19113949;0.9057871;-1.3806851;0.58061594;0.9384178
1.7035083;-1.2418894;-1.5698507;-0.6043723;-1.7851137;-0.94729644;-2.4800584;-0.6130392;-0.38123414;-0.42135367;-1.6711887;-2.8031318;1.6635445
-1.3921396;1.8082653;-0.95041335;0.33169618;0.79104435;0.5568641;2.418133;-1.7424716;0.5593975;-1.3396544;-0.41081297;-0.25877455;-0.46310264
1.8132883;0.44613495;-0.6244602;-0.019641984;-0.17342408;0.7066316;-0.5360284;-2.0890884;1.1294435;2.3617625;0.69456774;-0.40268546;1.9282366
-0.19247876;-0.8925349;-1.1428182;-0.09317828;0.6459481;0.14947619;1.6434864;0.7561654;0.7068109;0.15155879;0.8189471;0.11403417;-0.1347141
-0.9018371;1.574793;-0.3191319;-0.2827732;1.2266864;0.59406227;-0.5308311;1.1174134;-0.82666683;0.7297098;0.5977138;1.2961731;0.18645935
1.3871638;0.62300414;-0.41589865;0.13099445;0.22296871;3.1818857;-0.6191913;0.77296585;0.52724135;0.5056604;-0.70973116;0.29872006;1.5568172
-0.67317235;0.36504295;0.8071499;0.98134553;1.0752766;0.71262044;0.24084233;0.037417274;-0.25147617;-0.38194352;-0.952036;0.10329778;-0.71555734
1.6967722;0.2004538;-2.2900374;-1.3241968;-1.2104427;-0.26747432;-1.7560846;-0.75871515;0.2001881;-0.38917226;-2.502287;-1.6144239;1.3215526
0.75332063;1.1158035;0.9517988;-0.42295727;-1.3569279;-3.3731265;-2.0429142;-1.9623865;-0.51072866;-0.0039310856;-3.2510107;-0.097090565;1.290256
-0.19907145;-1.2071127;-0.6326481;-0.21773079;-0.6083649;0.42451552;-0.68744636;3.252541;-0.007260973;-0.29959688;0.5626533;1.5486969;0.71602833
-0.8762133;-0.23291564;0.12962757;0.0866307;0.59441507;0.5282134;1.3677537;2.2364392;2.1909862;1.8764514;1.1731532;1.4739709;-0.61906916
0.8354628;0.5051478;-0.03285116;-1.1953429;-2.3019104;-1.1150873;1.4709897;-2.0302422;-0.84984875;0.097248666;-2.5010078;0.4329574;1.0777731
-0.5264262;0.9511805;1.3237164;0.24426094;-0.70259994;-0.7747704;-1.18995;-0.1329642;-0.29578978;-1.5369647;-1.0030154;-0.0110137835;0.86946636
1.3529664;0.53678924;-1.1912156;-0.015618659;1.3656697;1.2357788;0.22269939;-0.5777084;0.2775041;-0.03335365;-0.842834;-1.9999807;1.0731881
-0.19350465;0.16012786;0.5066898;-1.0456254;-2.436344;-1.9169095;-0.7188912;0.1607185;0.8593478;1.5984546;1.8791691;0.53127426;-0.12996261
-0.73410237;2.5837078;-2.52374;1.282819;0.64727914;-0.11776209;1.2063981;-1.4504894;1.1226776;-0.9227437;1.9535583;-0.28639185;0.58104146
0.8937002;1.4690199;0.09134764;-0.7665895;-0.75204265;-0.69850475;-0.98548144;0.92018783;2.373093;0.6367598;-0.774533;-0.88488877;0.1761906
-0.1629135;0.20012037;-0.3768348;-0.5442265;-0.7279775;-0.45882034;0.5225711;1.218015;1.3722355;0.6756836;-0.1788171;-0.6082849;-0.3453886
0.21234258;1.0852592;0.9663876;1.7211252;0.44058815;1.2517716;-0.5600145;0.11384572;-0.5191168;0.3673274;0.32808566;0.110868365;1.4141383
0.22698423;0.7887723;-0.47523755;-0.7446194;-0.17626946;-0.19344155;-0.17963773;-0.36376685;-0.67225266;0.014259199;0.6019158;-0.4358339;-0.17012213
1.0181885;-2.9624891;-1.8884608;-3.6376002;-0.14493479;0.42772585;-3.2370975;-0.7851563;-3.5751252;-1.3765208;-2.0203755;0.25496945;1.9242672
2.048187;-0.6499895;-1.6959498;-0.8473914;-2.2948308;-1.79878;-0.6695121;-0.99848205;-1.0971974;-1.568552;-1.3109764;-0.4577174;1.9342606
0.24155928;-1.2668602;-0.7721462;1.0677292;1.1961122;0.039212946;-0.45298308;0.42286944;1.0580665;0.116650924;-0.44845122;-0.089726;0.3832278
1.2290931;-0.4469007;0.98545504;0.333453;-1.158178;-1.1869681;0.24771273;2.581063;-0.42728332;1.0922707;-1.442694;0.65316194;2.2418733
1.3793921;-1.0775433;-0.8108509;-2.9601219;1.2085862;0.2312975;-0.63296825;-1.1520966;-2.02301;-0.4392547;-0.79053015;-1.7855736;0.9830933
1.6595867;0.36353296;-2.787373;-3.0148807;-1.3772376;-0.33174118;-1.1619084;-3.309195;-2.984406;-2.553248;-0.40555766;0.9124174;1.5583948
0.7210675;0.82996607;2.0557575;1.6891329;0.40845498;-2.5013664;0.15837765;-0.31409883;-0.10675903;-0.1531345;-0.19531794;0.7544896;0.72008044
0.6867415;-0.5975957;0.73841953;-3.04039;-2.7610276;-0.5233319;-1.0506675;-0.81140256;-2.0249977;-0.36858773;0.36021346;-3.7158375;1.2561926
1.5029233;-0.3819625;-2.1468618;-1.6167604;-0.055907056;2.3268268;0.40257174;-2.188247;-1.5903935;-0.5256592;-0.5354568;-0.13400953;0.8496303
0.43603897;1.8360866;1.7783041;1.9693966;1.6701773;0.30219916;-1.0178404;-0.86872524;-0.24146076;0.029292021;-0.37123808;-0.15260293;0.96679235
-1.5279932;-0.9923453;0.064122245;-0.89785004;0.24056919;0.24261907;1.4071479;-0.13029057;1.0058454;0.40444395;0.26159492;1.2689959;-0.6211504
-0.4894448;0.28918302;0.7250811;1.266374;1.5442297;1.1707656;1.3440616;1.325947;0.90638983;0.8070921;0.33799228;0.4342485;-0.5406574
-0.19709644;0.7820741;0.10916519;-0.34070584;-0.69141066;-1.3495024;-1.0213121;-0.79343104;-0.29555315;1.0625867;1.4134802;0.5645401;-0.8313296
2.2333755;-2.2353442;-0.023475306;-0.5995884;-3.041546;-1.2079029;-0.82997364;-0.20328896;1.1546497;-0.7293842;-0.5934436;0.7303879;1.9002503
0.9941036;-0.6259155;0.9650201;0.34808084;-1.8948157;0.17638281;0.1403662;-1.5204746;-0.47966582;-1.0382941;-0.72862166;-0.8285552;1.265508
1.392143;-0.71358025;-0.071900375;-2.4733748;-1.1133987;0.18815179;-4.1900835;-0.81879354;0.60802543;-1.9609023;-0.5362387;-1.5261368;1.2697022
0.7415196;1.2170758;-0.19366288;-0.25786766;-0.27187887;0.7112189;1.0100402;0.5894842;1.0535753;1.7482585;1.6222376;1.1956604;0.48136348
0.47175276;-0.6710888;-2.2528431;-1.1883503;0.080515325;1.1473753;1.4439046;1.0236946;-0.48177505;-3.7852921;-3.1134908;-2.1944306;0.48025697
1.3252866;0.34774742;1.5790129;0.112975575;-0.5702748;-0.33036202;-1.4643703;0.689626;0.12776549;0.20890337;0.10937143;0.42019352;2.008387
0.5591002;-0.14030798;0.12962954;-2.696992;-1.6373883;-1.790423;-1.7302696;-1.0833312;-2.1861145;-0.42451733;-1.309638;-1.2464173;1.6543552
1.0714991;-0.92170084;2.049772;1.1310899;-0.45417854;-2.173075;-0.45935717;0.7276619;0.53957283;0.5373495;-0.17892252;1.0235898;1.0351415
0.49897486;1.9460825;1.4059867;0.44088832;0.35781425;0.30287156;-0.5258147;-0.031317305;0.52892214;-0.08908151;-0.6701415;-1.3061019;0.74241257
-1.0622902;-0.42957357;-0.18795525;-0.018115724;0.71100587;0.60694844;0.29091045;0.123753026;0.05547245;0.39076293;0.7049987;0.32614356;-1.2353393
0.11485368;0.51478225;-0.6634829;-0.7540304;-0.796011;0.025318474;0.25668132;-1.218171;-2.5154889;-2.5494008;-0.6212291;-0.2982686;-0.057357527
1.3419576;2.1738832;0.71297807;0.71532077;-0.619001;-0.29131395;1.0143673;0.86152077;-1.2780689;-1.1360854;-0.10410635;0.029358033;1.3013763
-1.4056185;-0.63310057;-0.25531554;0.38664016;0.19176103;0.108602054;1.1040564;0.01806715;-0.35319218;0.19110277;0.30164734;0.6368503;-1.3976024
-0.7932898;-0.45721358;-0.77299875;-0.49543625;-0.25353056;-0.9435726;-0.8785362;-0.17584829;0.2969104;0.7922032;1.808894;2.3249693;-0.80361915
0.21296391;1.4829705;0.609403;-0.16216417;-0.9877529;-1.6559808;-2.5662715;-1.7564291;-0.746321;-1.4879084;-0.7716464;-1.3565236;0.6038073
2.126067;-2.3974428;-2.6424875;-2.2928143;-0.92067915;0.09266228;-0.7083717;-1.1174839;-2.192958;0.2895244;-0.56220067;-4.550602;1.7754014
0.2648598;-0.8248286;0.11737964;-0.12647054;-0.47454464;-1.5931239;-0.79529667;1.1318266;-0.18643826;-0.08696714;0.2604446;0.03331535;-0.14643162
-0.0245434;0.24633531;0.050800934;0.8030353;0.89234835;0.7414647;-0.32822788;-0.42088068;0.6646307;1.7153184;1.4286231;1.0534174;-0.23066893
-0.65565354;-0.57095534;-0.030086152;-0.7792064;0.57385135;2.6664588;0.27319264;0.28610143;1.4707937;0.78320897;0.4857022;0.6530498;-0.8057137
-1.5400441;-0.7793921;-0.30775487;-0.10617443;0.956097;1.0066307;1.4244524;1.3930199;1.4218215;1.569077;0.053356983;1.140088;-0.72246206
-0.43913832;-0.13862021;0.2318461;0.63810015;0.73054194;1.4987823;2.197227;1.8211977;-0.21456489;-2.1790507;-1.2050911;-0.43321627;-0.37372047
-0.4077059;0.96217585;1.4807948;1.4613438;1.1405025;0.96886456;0.43576428;-0.60744697;0.2079566;0.77844685;0.38791093;0.13352183;0.11816896
-0.6963526;0.13570744;0.2831728;-0.012488636;-0.3177051;-0.38124034;-0.07833403;-0.048541695;0.07465559;-0.67158884;-0.8987276;-0.5333705;-0.17618856
-1.0768136;0.12736289;1.0755857;1.2073519;1.4733888;1.1584787;0.8097955;0.8093744;0.39694256;-0.03825414;0.05562505;0.8143441;-1.2266479
0.8649063;1.0480614;0.73942393;0.28532594;-0.1303584;-0.81108725;-2.898365;-2.476117;-2.4594467;-3.828313;-1.6653414;-1.3418262;1.4981345
0.420319;0.34232506;-1.1999687;-2.0010965;-0.4177418;2.0282953;1.5870771;0.48652834;0.07093826;-0.4012003;0.5652449;0.05536994;-0.583479
1.7761298;-2.6702988;-2.0129764;-1.0255424;-1.7210203;-0.8752022;-0.6408408;1.2032131;-1.9134718;-2.3675833;-2.2587988;-2.2524107;1.6088363
0.6159243;-0.05777304;0.25674114;1.4161184;1.0952225;-0.43039885;0.9284079;2.08516;0.23920964;-1.321409;-0.27498388;1.4150699;0.56317675
1.6500984;0.73867786;0.29360014;0.9077404;0.043682784;1.6030766;1.0858684;-1.1906637;-0.9479047;-0.53683174;-1.0307361;0.4636041;1.4654636
1.7558098;-0.55513084;-0.9181447;-0.7034141;-0.92011553;-0.8728634;0.23089717;1.4160234;1.432575;0.07597181;-1.256419;-1.2948861;1.8565531
2.059112;-0.20910496;-1.7116601;0.5709229;-0.5563924;-0.5914262;-1.0426817;0.5478664;0.03568241;3.1719155;-0.95404804;-1.6360885;1.2909119
-0.9786685;-0.035399463;0.38609707;-0.2802651;0.3667957;0.033365298;0.056292325;0.1177135;0.77192235;1.0652655;1.0037353;1.9866272;-1.0142803
0.14724956;-0.22630273;1.2737118;0.6528738;2.0064478;-0.2690267;-0.1087379;0.4535958;0.32457268;0.32772776;0.7614791;0.48352268;1.4505584
0.25775284;1.5487319;1.4910486;0.46429718;-0.24004547;0.2952656;0.41432434;1.1654229;1.1696844;0.7202492;0.77597994;-0.09320497;0.4422456
1.4277455;-0.16681825;1.9658738;0.99229264;-1.4346397;-0.7987649;-1.0943805;-0.14287224;1.3029475;0.93069595;0.091366075;0.81737834;1.4952768
1.0967959;-1.5870447;-1.6009926;-0.77920544;-1.6743624;-0.1686164;0.46587265;-0.0071453983;-3.803046;-0.6995913;-1.7744867;-1.0415912;1.6083868
-1.2967048;0.065464206;0.3616285;0.44834653;0.73895794;-1.1410505;-0.11369326;-1.3779532;-1.8147864;-0.42377245;0.29065225;0.5351182;-0.06357926
0.75534284;0.78351784;2.0497499;0.9240166;2.0245426;1.6611304;1.6092783;3.8502808;-0.7300814;-2.290728;-0.120680265;0.64842886;1.4616231
1.7444935;-2.5708745;-2.8580134;0.2461093;-1.0600364;0.8834677;-0.8842025;-1.2399919;-0.2649868;-1.6271024;-2.9837873;-2.1367974;1.3429366
1.0482599;1.5534726;0.47387412;-0.2904963;0.22142261;-1.8185476;-0.6038406;-1.1987526;-2.1115413;-0.44399795;-1.1010162;-0.44146717;0.69291663
0.3417116;-0.38318563;-2.1345556;-0.35398975;2.2975547;1.1917876;1.0087103;0.2794327;-0.8471085;2.2293065;-0.37520263;-0.6777381;0.38992104
-1.7807344;1.9794301;1.8214138;-1.1808958;0.60199916;1.2723053;-1.5045288;-0.0826802;-0.24744223;-2.2107475;0.50997764;-1.149475;0.43256637
-0.8592993;-0.49295783;-0.10132291;-0.079869404;-1.0362813;1.9778768;0.5715769;2.8662083;-1.0868309;1.643351;-1.6468521;0.6248955;-0.34732243
0.013231307;0.16359271;-1.3591412;-0.795847;-0.9114396;-0.33155978;0.21750565;-0.23369399;-1.1745045;-1.2631668;-0.7732191;-0.7120931;0.26551402
1.862234;1.1426646;-0.05561906;-0.77707916;0.16233592;1.2631617;-1.6796732;-2.4416156;-1.0451477;0.9394098;1.6629577;0.67576617;1.7074083
0.39940524;1.5026752;2.682676;0.60889834;-0.8971259;-0.47971237;0.30752248;0.33084005;-0.26123554;-0.6495931;-0.0642989;-1.225463;1.7540306
-0.077543475;0.15067965;-0.4047614;0.17474717;0.18636854;-0.22786851;-1.2241989;-2.0675406;-1.8624687;-2.8582966;-3.5233111;-2.9546854;-0.37695038
0.12969017;1.6199342;1.1344095;0.009757013;-0.5741521;-0.87499535;-1.0162436;-1.0573905;-1.1251367;-0.23298883;0.46655852;0.4633622;0.113974825
0.14341958;0.72669315;0.24440384;7.804235E-4;-0.5562711;1.0288291;-1.0353116;-2.3601491;0.8163086;0.21709691;0.13139321;1.4879282;2.8352582E-4
1.0412271;-1.0086547;-0.6427015;-0.50790775;-1.1745199;-2.069096;-1.7734301;-0.9212081;-2.0373778;-2.5398214;0.8038233;-1.2109327;1.6819558
0.011354202;0.81545544;-0.40232286;-0.6920988;-0.19873716;0.8873126;1.8632914;1.1844761;0.14662793;-1.5280552;-1.2579654;0.40486428;-0.555201
2.36695;-2.5397105;-1.4638473;-0.61604893;0.07448541;1.10706;-0.07521064;0.47147676;1.0994238;0.28967416;-4.8911705E-4;-3.934244;1.9857223
1.1220316;-2.0926387;-1.2679743;-1.5571892;-0.9990662;-2.2558303;-2.0691514;-0.21707574;-0.16212925;-2.8150816;-2.2365777;0.73658955;1.4272408
0.30358353;0.4099498;0.2877613;0.07396628;-0.28819;-1.3182997;-1.0105425;0.1385273;1.1979417;0.8537493;-1.2913879;-1.5204164;-0.45365074
-0.5592286;0.20350994;0.6236279;1.1036701;0.9005009;0.5678315;0.40815687;0.43465784;0.98776597;-0.111491255;-0.89257765;-0.7379933;-0.61794704
0.24044034;1.535201;1.2335738;0.72979534;-0.82351255;-0.8139984;0.18995397;0.43799263;0.36188635;0.7607253;0.42960557;1.8461336;-0.22658463
0.11510322;-1.2655418;0.39557204;-0.64847296;-0.2697963;1.1361729;0.82285225;0.3878623;0.94206643;0.33987978;-0.05381346;1.4139606;0.32967973
-1.0417359;-0.3308674;0.52011025;0.5472209;0.7745545;1.1789097;1.0015157;1.1962343;0.42931834;0.40746686;0.06571437;0.5510792;-0.6460672
0.5806332;-1.4375045;0.9215705;-0.7634973;-0.57971334;-1.3678938;-3.8926418;-0.1404132;-1.1021383;-1.9394103;-1.1268466;-2.918483;0.9050885
1.5743612;1.2994429;-2.1762085;-3.5555818;0.30841964;1.0168191;-0.2656166;-0.010737787;-2.4842787;-0.91479915;0.49464014;-0.46945667;1.3549274
-0.8821226;-0.5508106;-0.28106835;0.068455875;0.07967192;-0.03766425;-0.02422514;0.1997066;0.43245974;0.0039726635;0.57808816;0.3977983;-1.0748625
-1.0978063;-0.8074561;-0.5178273;-0.6804535;-0.0033657053;1.0240953;0.9079313;0.28667784;-0.07934253;0.3353033;0.9784865;0.7881318;-1.4635303
-0.09423841;2.085869;2.9953892;1.4110293;0.19048661;-0.8465501;-1.4869293;-0.22696704;-0.54389787;-2.5998256;-0.51704407;2.6398323;1.1336491
0.85867316;0.1989158;0.3395259;-0.884054;-1.1111258;-1.2740581;-1.0431961;-0.51298684;-0.7639052;-1.0719547;0.099328086;0.42216215;1.258145
1.1689496;1.4592103;-0.7007469;-0.8705744;2.0627236;1.4207925;-0.079551086;0.48466495;-0.18161413;1.0819137;0.8315946;0.32905293;1.4832666
1.5506114;0.27846324;-2.2998729;-2.308425;-0.6199131;-1.394965;-1.0289413;-0.16321102;-2.417633;-2.7978365;-3.5292022;-0.8089808;1.7206742
-0.7638285;-1.4240297;-0.12675014;-0.55512;-0.06562729;0.69544137;-0.17653811;2.5672464;0.9230638;-0.7695166;-1.7028689;1.497822;-0.6683431
1.348736;1.5863218;0.7642283;0.82979244;0.79022807;0.51116085;-1.5069838;-2.4803865;-0.16377144;0.90556824;0.64069843;-0.4952307;1.0762706
2.4988046;-0.24041176;-1.1389028;-1.6693959;-0.8962116;2.6999273;0.81235576;-1.4251986;0.22875203;0.44765788;0.9892528;0.36208713;1.6339245
0.16497023;-1.0063472;-0.7586018;0.08171918;0.44109985;0.6204475;1.2334218;0.3183775;0.5187964;0.95433235;0.31766102;1.1062381;-0.27633244
1.0828384;0.9036782;-1.1584816;-1.1330949;0.10662178;1.6266139;1.0014124;-1.0769976;-0.65911;-0.68014437;-0.71316624;-0.6924159;0.60872734
-0.46126226;0.7292737;0.6663576;0.58471054;0.591375;-0.16402505;-0.10305504;0.11232446;-1.3351458;-0.031303313;0.327653;1.9779865;-0.25258318
1.0762074;-2.378584;-0.07137996;-1.9759701;-3.5635605;-0.56179464;-0.7445679;0.6992944;-2.120036;-1.1901802;-1.0186442;-0.17252207;1.6809142
1.2265674;-0.3354569;1.3661648;0.73152494;0.4066704;0.22316676;-0.8253957;-0.66541266;-0.43177322;0.055973854;0.99417096;-3.2787535;0.8715394
0.48958784;0.40392274;0.20377715;-0.39520618;0.41505384;0.4848495;-0.956251;1.3608336;2.2938368;0.73772985;-0.43966225;-0.686651;0.47587788
0.86058503;1.8258674;1.3455857;1.153213;0.89417446;-0.017699797;-0.5063707;-1.0648901;-0.6832378;0.18079987;-0.45850715;-0.92716837;1.5907791
-1.4241182;-0.46832794;-0.13025707;0.91436493;0.9104037;1.0623904;0.95979;1.1839757;1.2292404;0.5820642;1.1607966;0.7844717;-1.756005
-1.0674363;-0.79405373;-0.5749294;0.38632977;0.14155887;0.84003955;1.0494493;1.3862686;0.5371713;1.5371406;2.2560232;2.7771924;-0.77390003
-0.70521945;1.4497149;-1.4961225;1.9637686;-0.43774694;0.36872917;1.1723117;-1.3825375;0.6940169;0.16381064;0.66741693;-0.5407102;0.7023174
0.11837015;1.2166084;0.20588835;0.10194297;-0.2504508;0.56851393;0.6142289;-0.38125807;-0.36692086;1.0884312;-0.51273423;-2.1115134;-0.14081271
0.4333657;-0.23079683;-0.85675395;-0.7754426;-1.0013129;-0.90101165;-0.5940037;-0.15997426;1.1692009;1.567386;-0.42968914;-2.9086306;-0.4898542
-1.2394311;-1.6373965;-0.61876017;0.99081177;0.58542156;0.7137953;0.45810366;1.029235;0.6450746;-0.09323278;0.39186448;0.45230263;-1.1617671
0.24728167;-0.4805945;-1.2363681;-1.4410664;-2.218911;-1.9104393;-0.55618465;0.56497514;1.9623935;-0.4622344;-1.6595055;-1.1468467;0.18512039
0.1808109;-3.5208466;-0.2592815;-2.5713434;-1.2335838;0.10778557;1.3989537;-1.7639295;-1.691517;-1.4202774;0.72020805;1.289636;0.9379841
0.6779656;1.4143456;1.1008648;0.8939059;1.1262846;0.85836214;0.19085152;-0.061132025;0.77371305;-0.03404402;-0.6248024;0.13728707;1.5223466
0.43848392;0.41092518;0.018599756;0.35513565;1.7251979;0.5591331;-0.29527125;2.5913494;0.29641506;0.6199803;0.0038457399;-1.1822538;0.33715767
2.1226175;-3.1637385;-1.6562793;-0.48045558;-1.8333404;0.3576225;-1.1746448;1.6351569;-0.099171884;-0.9657908;-1.7281033;-1.2680267;1.7001286
-1.2304568;-0.4191714;0.13117109;0.254336;0.12323782;0.23949902;-0.47005317;-0.8950327;-0.72769153;-0.9074499;0.39408553;-0.32290033;-0.61877465
0.26477617;-0.2534408;0.9339253;0.43688262;-1.413019;0.28528056;0.22227196;-1.4768456;-1.4642538;-0.26672524;-0.37422165;0.38038376;-0.25080743
1.4057626;2.0482385;1.4136542;-2.3677585;-1.0635335;-1.1558777;-1.9884919;-1.5197263;-1.8047824;-1.0527388;-1.488158;1.2854095;1.6802818
1.296674;-1.6653779;0.07248804;-1.7428105;-1.0737232;-2.7765207;-1.9124222;-0.7861361;-0.24362476;0.27672094;-2.2350411;0.89036286;1.1432619
0.73985684;-1.8370136;-3.6673622;-3.205946;0.06976229;0.39615014;-1.3176662;-0.40052778;-0.6352951;2.3359194;3.0625334;1.2074143;0.84211457
1.8677509;-0.09276025;-1.7182031;0.31044862;0.671268;0.37035215;-0.15263213;-1.3045672;-0.60543144;0.57848793;-0.38195452;-0.37733564;1.4533631
0.33470201;-0.21878308;-0.3417355;0.70606905;1.1837088;0.5984947;1.3652675;0.30147013;-1.2041962;-1.480013;0.55021113;3.3921704;-0.017406952
0.22759116;1.5056651;0.99420196;0.2914026;-0.72292477;-1.5578444;-0.8032847;1.1230025;0.7511772;0.2883013;0.118326634;-0.20306276;0.13600452
0.2029276;0.2013812;1.6410161;0.06714042;-1.0114722;-0.39338022;-0.21508512;-0.31322765;0.97110325;0.5040979;0.49765557;0.49284273;0.15827228
0.5791636;1.0295142;-0.6146456;-1.0648168;-0.2776724;-0.13943318;-0.07082788;0.07475133;0.515764;0.283555;0.8878295;0.6395232;0.10016533
1.82297;-1.0282646;-1.0217781;-1.2378081;-2.976744;-1.0283917;0.2593378;-1.2459201;-1.4284661;-1.5003468;-1.215587;-1.6398029;1.7465717
0.6732082;1.9436625;1.5397326;1.1795896;0.63889945;1.5284979;1.4298054;-0.13759069;-0.77486235;-0.21525234;-0.025736552;-0.34148347;0.80362403
1.3242397;-0.024796303;2.2587993;-1.9315404;-0.9484626;0.56666005;-1.4616643;0.7292228;0.03874093;-1.2584916;1.8681009;-2.85581;1.7611601
-0.87294596;0.28312108;0.053043947;-0.4045523;-0.62799317;-1.0971464;-0.9258409;-1.4647883;-0.5490905;-0.28859615;-0.4764957;-0.81873274;-0.89369786
-1.1378475;-1.0441315;-0.54120076;0.031319097;-0.35179868;0.14468549;0.75485826;-0.3585174;0.28954074;0.82617277;0.5048534;0.546149;-1.0696343
0.08640665;-0.9468922;0.2276246;0.36650974;-0.5044728;-0.87467915;-0.9813836;1.2898216;0.2478677;1.7476308;2.1083488;0.21825893;0.6138216
1.8219669;0.53595704;-1.5647899;-0.98093367;1.23865;-0.8020462;0.83949137;-1.123106;1.9851013;0.53469276;-1.8558365;0.24788623;1.5891131
0.053841088;-0.320786;1.9522477;0.13782977;-2.6993117;-1.777461;-1.3867819;0.3075097;-0.083933406;-0.9433227;0.9664132;-0.21682966;-0.24416527
-0.812953;-0.40758187;-0.52050465;-0.24911562;0.124123126;0.81084734;1.0489746;0.9900064;1.2622434;1.4338282;1.2229817;0.41772482;-1.0043116
1.0212759;-1.2327859;0.6308861;-1.9587469;-0.9956627;-2.3183398;-0.9029713;0.45529205;-1.8619012;-1.990737;-0.7616461;0.88729197;1.3382092
1.191509;0.0089283325;1.103114;1.7593762;-0.31597584;0.39360002;0.62397534;-1.746021;-1.1087949;0.20241116;1.4260168;-0.5904942;1.5159752
-0.110332906;-1.2080144;-1.5289265;-0.30999973;0.13851625;-0.60430324;0.10047052;0.398805;-0.34715903;0.38669935;-0.07137722;-0.16763087;-0.3329906
0.9675828;1.4262071;-0.5198451;-0.4934047;0.13198036;1.5696622;0.67620105;-1.1776826;-0.7671612;0.0737015;1.2930397;1.3247458;1.137383
0.75192565;-1.2369527;1.4788572;-0.73794043;-2.8795974;-2.178721;-1.6021125;-1.4503965;0.68612677;-1.4641215;-1.854452;-0.15216084;0.98562664
-1.134818;-1.8777838;-1.170908;-0.03414019;1.2321382;1.6350883;2.0129802;0.96648884;0.09520854;-1.0746589;-0.43800336;0.70321196;-1.4747422
0.17268097;-0.71408796;-1.4577167;-0.4986417;0.585693;0.3532594;-0.3546065;-0.4207776;-0.39610806;-0.6539339;-1.0377008;-0.16465919;-0.42276126
-0.61632884;-1.1701595;-1.5317732;-0.15108424;1.1485556;1.2080123;0.7957783;0.2477254;0.48489377;-0.14530209;-0.6942191;-0.81511873;-0.67035717
0.031571854;2.661482;-0.26242658;0.95973516;-0.32835016;0.4528133;-1.3810881;-0.9806011;-0.8125674;-1.3132234;1.3168608;-0.4359834;1.1800038
-1.0668657;-0.9097269;-0.30811405;0.27159774;0.24838307;0.1676433;0.3710921;0.4412579;0.7642602;0.31467494;1.2964287;0.7304177;-0.73556197
-0.39058748;0.6237578;0.25498596;-0.088546865;-0.5599639;-0.15286742;0.28773433;0.4401211;0.7309398;0.61614203;0.76458114;1.1653438;-0.43116868
-0.8106587;-0.10886674;0.06889611;0.5981435;0.44698426;1.0646858;2.2839057;0.84215635;0.6744452;0.57069355;0.6883991;0.26645356;-0.5008463
1.8333368;-0.050414752;-2.3103042;-2.8695366;0.14154524;0.21503654;-2.5401075;-0.3934162;-2.177923;-0.8898832;-1.2506449;-0.9887518;1.6638311
0.70567447;0.4402245;-0.4879074;-0.625186;-0.7199526;-0.32343176;-0.24840651;1.2247128;2.2007346;1.860324;-0.8153329;-3.0018182;-0.16050115
0.93295944;-0.26788476;2.0582895;-0.2118746;-0.481149;-0.9420671;0.13245745;0.33969826;-0.31656975;-2.1266408;0.2098707;-3.2546782;1.4146844
-0.49684697;-0.39744553;0.22754669;1.5526537;2.9725137;0.91388774;-0.11309787;1.2062898;0.9125123;1.6139895;-0.34301114;-1.769299;0.5932279
2.0922318;-1.7070374;-2.4967563;0.14817189;0.44435084;0.095123775;0.32107973;-0.19698668;0.1182988;-0.5288898;-1.7084574;-0.65205014;0.8194182
1.2307441;-0.46024388;-2.5752003;-0.14959286;0.8733533;0.64548063;-1.6457957;0.968846;-0.69201595;-1.9634497;0.63616055;-2.681515;0.7961221
2.0183227;0.6899174;-0.5326045;0.23758514;0.2801803;1.873903;0.9889701;-1.1241926;0.38773173;1.4194158;0.03759019;-1.3993056;1.4973923
1.3018775;1.3590374;2.0319471;0.06151452;-1.4626656;-0.3071113;-0.97729164;-0.9927787;-2.4810255;-1.0123186;0.52768856;-1.119536;1.8321157
0.18939601;1.2873008;-0.11053278;-0.23941375;-0.5292889;-0.55421853;-0.6490975;-1.09841;-0.28422448;-0.20550184;0.8226378;0.2756935;-0.07850293
-0.7414231;-1.0986197;2.8376608;0.3265621;-0.0804467;1.1920683;0.5355484;1.0376302;1.0376154;-0.17593919;-0.20535825;-0.7518105;0.46545386
0.27128524;1.1893097;0.34606886;-0.23006465;-0.093863234;-0.72543323;0.09618871;0.42607522;1.2484015;0.7563791;-0.042013258;-0.5934038;-0.33763734
0.14296979;1.5307623;1.8459831;1.707063;1.76871;1.0407017;1.421495;0.7100369;0.13210511;0.71637934;1.3931131;0.97912514;0.65401334
0.10566185;-0.63268906;0.058670048;-1.5437626;-2.0782235;-1.2320459;0.13940059;-1.2640078;-2.0244467;-1.4819103;-1.1911197;-1.2133137;1.0724515
0.5346149;-3.723533;-0.7794248;-2.8366976;-0.46256855;-1.1329026;-0.21448441;-0.31012204;-0.28050908;-1.6246845;-0.6858535;1.6382511;1.5719851
1.7057742;-2.8829672;-1.1186383;-1.6898797;-1.5760715;0.5441794;-0.9251716;-0.16121422;0.3794151;-1.6014115;-1.9503397;-1.5030422;0.975034
-0.038297344;0.8443153;0.562323;0.73273885;-0.45626056;-0.5600609;-1.1551949;-1.064798;-1.0086844;-0.8530312;-0.47246134;-0.4453862;-0.5349713
0.72774404;-5.6401353;-0.04369779;-3.107816;0.0926241;-1.689297;-0.33181506;0.63292557;-4.0697875;-1.4770762;-2.403001;-1.4893178;1.5017769
1.1388156;-1.6994393;-0.024423668;-1.0982151;-0.4986656;-1.5299178;-1.9304862;0.89427745;-0.20730335;-1.2723505;-1.0039569;-2.2081232;1.1394719
1.3577409;-1.0317702;-2.1910923;-2.2211082;-1.2592989;-2.5338604;-2.4962614;-0.88608843;-0.7842512;-2.4261913;-0.2910059;1.9604714;1.5847877
1.0096085;0.4732036;0.9290102;0.7272824;0.4261969;-0.90170825;-0.083014525;1.3899583;0.40169108;0.8487154;-0.49334383;-0.24255581;1.4358222
-0.60174453;0.95340604;1.3782051;1.2183565;1.052625;1.0988928;0.29878598;0.17574452;-0.190985;-0.6259275;-0.78895086;-0.61807936;-0.8690355
0.040138714;1.0524437;0.6902891;0.9047155;0.30585426;-0.64423746;-0.6485563;-0.112144046;-0.047418278;0.45042887;0.8111565;-0.35939518;-0.5336454
1.7527903;-1.9922069;-1.6302731;-1.6891043;-1.0956292;-0.6784652;-0.6348084;1.5612286;-2.06131;-1.6697931;-1.9159495;-1.2126808;1.6446489
0.023338797;-2.466058;2.2510147;-3.014927;-1.9742341;-2.173284;-1.0406429;0.1489436;-3.7831893;-0.5095922;-1.340108;-1.5890538;1.5365367
0.89108247;0.28764004;0.43744338;2.3837664;1.1471074;-0.033190902;-0.4952773;-0.99720097;-0.9874291;-1.1553867;-0.38528252;-0.5514623;0.5250632
-0.12514366;0.7468264;-0.2466861;-0.6353069;-0.7290991;-1.082524;-0.70180845;0.4167071;0.022559242;-1.075206;-0.8814206;-1.1914077;-0.82318985
1.809527;0.062352598;0.9533144;0.335783;0.35459778;-0.5367947;-1.9656826;0.26073974;0.27311438;-0.12103759;0.8879676;-0.38164747;1.7534947
-0.24401987;-1.0533841;-0.37177962;0.75120425;-0.8556343;1.1560632;0.65172905;1.3092755;-1.1186721;-9.8060984E-5;0.55029255;1.2427076;-0.008252389
Arquivo binário não exibido.
@@ -1,121 +1,121 @@
//////////////////////////////////////////////////////////////////////////////
///////// > openSMILE configuration file mfcc+log-energy < //////////////////
///////// (c) audEERING UG (haftungsbeschränkt), //////////////////
///////// All rights reserverd. //////////////////
//////////////////////////////////////////////////////////////////////////////
[componentInstances:cComponentManager]
instance[dataMemory].type=cDataMemory
instance[waveIn].type=cWaveSource
instance[frame].type=cFramer
instance[pe].type=cVectorPreemphasis
instance[window].type=cWindower
instance[fft1].type=cTransformFFT
instance[fftmp1].type=cFFTmagphase
instance[mspec].type=cMelspec
instance[mfcc].type=cMfcc
instance[energy].type=cEnergy
instance[cat].type=cVectorConcat
instance[csvsink].type=cCsvSink
nThreads=1
printLevelStats=0
[waveIn:cWaveSource]
filename=\cm[inputfile(I){test.wav}:name of input file]
writer.dmLevel=wave
;buffersize=16000
monoMixdown=1
[frame:cFramer]
reader.dmLevel=wave
writer.dmLevel=frames
frameSize=0.025
frameStep=0.010
;frameCenterSpecial = left
[pe:cVectorPreemphasis]
reader.dmLevel=frames
writer.dmLevel=framespe
k = 0.97
de = 0
[window:cWindower]
reader.dmLevel=framespe
writer.dmLevel=winoutput
winFunc = ham
gain = 1.0
[fft1:cTransformFFT]
reader.dmLevel=winoutput
writer.dmLevel=fftc
[fftmp1:cFFTmagphase]
reader.dmLevel=fftc
writer.dmLevel=fft
[mspec:cMelspec]
reader.dmLevel=fft
writer.dmLevel=mspec
htkcompatible = 1
nBands = 26
usePower = 1
lofreq = 0
hifreq = 8000
[mfcc:cMfcc]
reader.dmLevel=mspec
writer.dmLevel=mfcc
writer.levelconf.growDyn=1
writer.levelconf.isRb=0
buffersize=1000
firstMfcc = 1
lastMfcc = 12
htkcompatible = 1
[energy:cEnergy]
reader.dmLevel=frames
writer.dmLevel=energy
writer.levelconf.growDyn=1
writer.levelconf.isRb=0
buffersize=1000
htkcompatible=1
[cat:cVectorConcat]
reader.dmLevel=mfcc;energy
writer.dmLevel=ft0
copyInputName = 1
processArrayFields = 0
#
[delta:cDeltaRegression]
reader.dmLevel=ft0
writer.dmLevel=ft0de
nameAppend = de
copyInputName = 1
noPostEOIprocessing = 0
deltawin=2
blocksize=1
#
[accel:cDeltaRegression]
reader.dmLevel=ft0de
writer.dmLevel=ft0dede
nameAppend = de
copyInputName = 1
noPostEOIprocessing = 0
deltawin=2
blocksize=1
[csvsink:cCsvSink]
reader.dmLevel = ft0
filename=\cm[csvoutput{output.csv}:output csv file]
timestamp = 1
number = 0
printHeader = 0
instanceName=\cm[instname{file}:instance name]
//////////////////////////////////////////////////////////////////////////////
///////// > openSMILE configuration file mfcc+log-energy < //////////////////
///////// (c) audEERING UG (haftungsbeschränkt), //////////////////
///////// All rights reserverd. //////////////////
//////////////////////////////////////////////////////////////////////////////
[componentInstances:cComponentManager]
instance[dataMemory].type=cDataMemory
instance[waveIn].type=cWaveSource
instance[frame].type=cFramer
instance[pe].type=cVectorPreemphasis
instance[window].type=cWindower
instance[fft1].type=cTransformFFT
instance[fftmp1].type=cFFTmagphase
instance[mspec].type=cMelspec
instance[mfcc].type=cMfcc
instance[energy].type=cEnergy
instance[cat].type=cVectorConcat
instance[csvsink].type=cCsvSink
nThreads=1
printLevelStats=0
[waveIn:cWaveSource]
filename=\cm[inputfile(I){test.wav}:name of input file]
writer.dmLevel=wave
;buffersize=16000
monoMixdown=1
[frame:cFramer]
reader.dmLevel=wave
writer.dmLevel=frames
frameSize=0.025
frameStep=0.010
;frameCenterSpecial = left
[pe:cVectorPreemphasis]
reader.dmLevel=frames
writer.dmLevel=framespe
k = 0.97
de = 0
[window:cWindower]
reader.dmLevel=framespe
writer.dmLevel=winoutput
winFunc = ham
gain = 1.0
[fft1:cTransformFFT]
reader.dmLevel=winoutput
writer.dmLevel=fftc
[fftmp1:cFFTmagphase]
reader.dmLevel=fftc
writer.dmLevel=fft
[mspec:cMelspec]
reader.dmLevel=fft
writer.dmLevel=mspec
htkcompatible = 1
nBands = 26
usePower = 1
lofreq = 0
hifreq = 8000
[mfcc:cMfcc]
reader.dmLevel=mspec
writer.dmLevel=mfcc
writer.levelconf.growDyn=1
writer.levelconf.isRb=0
buffersize=1000
firstMfcc = 1
lastMfcc = 12
htkcompatible = 1
[energy:cEnergy]
reader.dmLevel=frames
writer.dmLevel=energy
writer.levelconf.growDyn=1
writer.levelconf.isRb=0
buffersize=1000
htkcompatible=1
[cat:cVectorConcat]
reader.dmLevel=mfcc;energy
writer.dmLevel=ft0
copyInputName = 1
processArrayFields = 0
#
[delta:cDeltaRegression]
reader.dmLevel=ft0
writer.dmLevel=ft0de
nameAppend = de
copyInputName = 1
noPostEOIprocessing = 0
deltawin=2
blocksize=1
#
[accel:cDeltaRegression]
reader.dmLevel=ft0de
writer.dmLevel=ft0dede
nameAppend = de
copyInputName = 1
noPostEOIprocessing = 0
deltawin=2
blocksize=1
[csvsink:cCsvSink]
reader.dmLevel = ft0
filename=\cm[csvoutput{output.csv}:output csv file]
timestamp = 1
number = 0
printHeader = 0
instanceName=\cm[instname{file}:instance name]
+206
Ver Arquivo
@@ -0,0 +1,206 @@
solver_type L2R_L2LOSS_SVR_DUAL
nr_class 2
nr_feature 200
bias 1
w
0.001740867592282342
-0.003178135681442163
0.0002802843375731003
0.001787661198823477
0.001950944773207234
0.005387026032614161
-1.744483633705083e-005
-0.001072394955956116
-0.003486544632683056
0.002753744448386391
0.005897055792445995
0.005498158973302554
0.004874289171185621
-0.0004344812898675722
0.004437752637862519
-0.0005629820535231375
-0.002520717271899809
0.002690869037592153
0.00182170473508451
0.00211356683989664
0.003940958313814514
0.001295031343629539
0.003550434201119801
0.002620467211917177
0.004736574287357304
0.002874329308281525
0.0001933903094394331
-0.002826617348997074
0.002766618552490889
0.0008039987010908691
0.00338363766728986
0.002975856547950512
0.003623756673648465
0.001471454602046801
0.003463396695040816
-0.0009548605689061558
0.001213456415546467
-1.251381018216775e-005
0.00129084270282829
0.004823426622744569
-0.001932852236424376
0.002971358676696507
0.00331884422708146
0.008146787716930254
0.003541535292555171
0.001697864061555891
0.001121988385276354
0.002503505047683111
0.001029650460259172
0.002256464942857706
-0.000463203118668206
0.002953838591867886
0.001482092063298208
-0.0006513132270859342
0.0002718076892344729
0.004561458630281354
0.002931870321474171
-0.003425656226776026
-0.0007209451404200553
0.004471267745626574
0.003734755579304295
0.002250201395564473
0.002961591697973508
-0.003976544672230835
-0.002100284733350781
0.006185278191276826
-0.002803310480515976
0.0009088776492944354
-0.0003415784712278215
-0.001932604031180227
0.006233264357087556
0.001376865352119103
0.004340026654111592
0.005693808755722888
0.001207461092440327
-0.001028860268091764
0.002825776522900838
-0.0051119934093302
-0.002229343314589914
-0.002865682467944797
8.440538284562708e-006
0.00711699839958842
0.005455635311234421
0.004043004130438571
0.001329474030656173
0.00166288162860844
0.006572819354412336
-0.001555474530531435
0.003054578748296117
0.002969731975599208
0.003041953025721583
-0.0003429734934499001
-0.0003296925158259528
0.003515560493416755
0.005783700598060295
0.00321301391385148
0.0008449482794569297
-0.0008152842298156315
0.003877249169408141
0.004468566899227595
0.0006939745751465704
-0.001959414748598643
-0.002082618013362271
0.001664279623048665
-0.002716587448572316
0.002871428664912726
0.003017261426693745
0.0004542663806895197
-0.001304531758431355
-0.00288695301059084
0.002942492752615177
-0.001890855770180717
0.0006861268041300453
0.004072940564795802
-0.001191333364889011
-0.0005762232821743061
0.002172508309055345
0.002384869083978357
0.0004387829182494453
0.002738715943471075
0.001557565037887387
0.003151033010046734
0.002874624099047863
0.004527021285545944
0.0003493998329044848
0.001027692297513643
0.002597134170496026
0.001829601270826711
-0.003489253694299392
0.005022259089973585
0.001669981707710572
0.004848848344979215
0.005922915840198498
0.0009399150471551737
0.0004856047231556871
0.001610004614882732
0.0008470573023351838
0.001276149000072741
0.003923051060539914
0.002445167722445624
0.0009342746822821656
-0.002355953930667188
0.0001892906451465862
0.001848416681092544
0.003048529052939717
0.001383963138867189
0.002835180067969379
0.001079285176526874
-0.002139426008506999
-0.002203261164078937
0.0001497114202530157
0.002574706842299302
0.0024950386865217
0.001264393252607936
-0.001376213643688472
0.0007398248169909769
0.003424533022069518
0.001826944628984733
-0.0002615032501236628
0.002230604344833811
0.003990360641143046
0.003949167988939933
0.002919514115349004
0.0007600176822636174
0.001112354800736774
0.002350697801389582
0.00200156434750933
0.0003626127850722224
0.004433740949944081
-0.001740954475624726
0.001146795824862515
0.001111131746586602
0.005417418816450605
-0.0001267334095506201
0.002147844606828033
0.003898629692112407
0.003385133238103973
0.002131539027493936
0.002221881103275407
0.004940217702500593
-0.0014094536836649
0.001082869926183433
-0.001771774125786512
-7.262832034084615e-005
6.352313319717257e-005
0.004352583965620641
0.002374736880467871
0.0007919373677173555
0.001647638005733833
0.0039879939829062
0.001076471412379593
0.004624618897973323
-0.0002149326301264539
-0.002324526277122497
0.00314109396418169
0.002869876578637687
0.00334927103861507
-0.0001383664885966325
0.003892663779931258
0.005373552739341096
-0.003558661452080634
+206
Ver Arquivo
@@ -0,0 +1,206 @@
solver_type L2R_L2LOSS_SVR_DUAL
nr_class 2
nr_feature 200
bias 1
w
0.002049949471024581
-0.006519408973159175
-0.0005838653501163804
0.002020669503263262
-0.0005033792976375761
0.002501446251459214
0.002401793735996863
0.003731166333560227
-0.004450534860202798
-0.0003735651502837226
0.003669336024516752
0.004888486098734489
0.007050584747431031
-0.004507826728256405
-0.004359696409510255
0.006234424868755999
-0.003095144124202599
0.005048192205743489
-0.0001184890290016121
0.002821681648583398
0.008864879313181372
0.00460076922598555
0.001305359837059358
0.002675307686810853
0.007051832285189248
-0.006936476043193191
0.004070692933627558
0.0008103191485010425
0.0003958269567454584
0.003120564443028929
0.006915070243678931
0.003971613460475188
0.005703780013630055
0.003461089480101317
0.002686053058136429
-0.0007770064479784292
0.003188289510547534
0.003379071506144565
0.006630965019874764
0.009518731630723393
-0.003867245071061828
-0.0008349972320892072
-0.001220400643109333
0.01238696587254719
0.003519988905968438
-0.0004021900747794373
-0.003001235645415399
-0.003209493646083379
-0.001295335194280343
0.003944450120943446
-0.001947642784904488
0.001105989081022367
-0.0006095498381031428
0.005444761627965201
-0.001671214623742233
0.0002003436784296992
0.005943891522407991
-0.004549683736954958
-0.002052809898757182
0.001761317316972013
-0.001181811110468838
0.00120500586079185
-0.005952430288366041
-0.003277512775945764
-0.003727054216299149
0.001261086972449496
-0.0005088936832783669
0.003509898777063166
0.003762430797204947
-0.006808838309458401
0.007293936711865093
0.001567855343320671
0.00575945947131199
0.008544752794048737
0.003431244984937672
0.002512798739125114
0.003985761845662364
-0.003433495985157459
-0.004912991954991347
0.002492306288270199
-0.002910230165662549
0.01357346382263485
0.006068227166081177
-0.007254542936442465
0.001879887222794688
-0.001894500628676386
0.005582401025372212
-0.00341585559396338
-2.314632361030021e-005
0.002547866738822666
0.007418214172510896
-0.0007856349119741637
-0.0008042016503829923
0.002266922653176483
0.006558512621288335
-0.003544205449764303
0.003796053628748082
0.001602538161289655
0.001425576421243418
0.0004826332131608533
-0.001274926896038375
0.001931377226317997
7.526381598825932e-005
4.070021155309215e-005
-0.003009378926822431
-0.0009846148383749578
-0.002022308723615961
7.287882576888269e-005
-0.001220068913305706
-0.001105037312430804
-0.00193090430392216
-0.0006977014130683812
-0.004051400163512661
0.0006198913758621939
-0.007561123623043782
-0.003937813029021699
0.003654228374236437
0.004809177377940756
-0.005667145915855818
-0.002680785641876781
-0.001172412063379201
0.002093472384286282
0.002873890080606266
0.004370116055033639
-0.004118642296540967
0.003492873238258879
0.002593128009249171
0.0005700389398770366
-0.01201924073406238
-0.003278280360042707
0.008245812473957037
0.004356304429286901
-2.077001626730123e-005
-0.0009654834460727079
0.007216926598754461
-0.0003633754015563392
-0.003090939303872703
0.0006560642321594663
-0.000123082760422444
0.001110124659378644
0.002870567872356355
-0.00368986793688026
0.007171618527560954
-0.001452189604167287
0.0005407776490732585
0.009931308640153555
0.00494281468669099
0.01021743500085894
0.003032329749542203
0.002325686564771201
0.001878364313592292
-0.002767364705835865
0.0009445788273235092
0.001632622495494057
-0.001794018451903763
-0.001840142189873652
0.01113064502048289
0.0001795494322489752
0.006469504375092876
0.00552248431589184
0.005845039884019786
0.006408167505644345
-0.0004465462421037539
-0.001968526119240069
0.001266196038577954
-0.001423643135246585
-0.000661339492018077
-0.0006810745610812846
-0.004606166463070938
-0.001293508592579744
0.006047621411878235
-0.005175055149293482
0.002354609165722547
0.006555123848413622
-0.001813484569128069
0.007265692710599705
0.0004654299053604354
0.000475673363778089
0.00165637889492421
-0.003047871789234312
0.0006950724446930189
0.001452010231580097
0.00302483803959093
0.001323451243576358
0.001226302872542758
-0.002913195302989128
-0.002850532536829589
0.00708032066057641
0.003482607057262967
0.001693004735040621
0.00508634987595656
0.001501394635818281
0.002238188240651586
0.000220066107233172
-0.001863040352226891
0.004422475488092252
0.002621429912117072
0.001101039536769778
0.003185879052708591
0.007463744635883927
0.04918633849243626
@@ -3,11 +3,15 @@ h:Print this help\n
# IO
i:Name/Path of an input (ARFF or CSV) file p containing feature vectors over time\n\
The first feature must be a string or number which specifies all feature vectors which belong to one analysis window/instance.
attributes:An optional string, specifying all input attributes (mandatory if multiple label): \n\
n=name, t=time stamp, 0=text feature, [1-9]=numeric feature, c=class label/numeric label, r=remove attribute\n\
Using different numbers for numeric features will create a separate codebook and bag for all features belonging to the same index.
attributes:An optional string, specifying all input attributes (mandatory in case of multiple labels): \n\
n=name, t=time stamp, 0=text feature, 1-9=numeric feature, c=class label/numeric label, r=remove attribute\n\
Using different numbers for numeric features will create a separate codebook and bag for all features belonging to the same index.\n\
The codebook index is followed by brackets [] specifying the number of consecutive input features belonging to this index.\n\
Example: -attributes nt1[14]2[14]c\n\
Input file with the structure: name,timestamp,28 numeric features split into two codebooks (14 features each) and one label.
o:Name / Path of an output ARFF, CSV or LibSVM file p containing the bag-of-features representation.\n\
The file format depends on the given file ending (*.arff, *.csv or *.libsvm).
oi:Name / Path of an output CSV file p containing the word indexes.
writeName:Output the id string/number in the output file (only ARFF & CSV).
writeTimeStamp:Output the time stamp in the output file (only ARFF & CSV).
l:CSV file p with the class labels for each analysis window/instance.\n\
@@ -19,9 +23,8 @@ l:CSV file p with the class labels for each analysis window/instance.\n\
# Preprocessing options
t:Segment the input files with a windows size (segment width) of p1 seconds and a hop size (shift) of p2 seconds\n\
If this option is used, the second column of the input file must be a time index (in seconds) of the current frame and \n\
the (optional) labels file must have three columns (name; time; label). The time instances where labels are given must \n\
fit with the given parameters.\n
e:Remove all feature vectors from the input, where the activity (or energy) is below p2. Index p1 specifies the index of the activity feature - starting with 1.
the (optional) labels file must have three columns (name; time; label).\n
e:Remove all feature vectors from the input, where the activity (or energy) is below p2. Index p1 specifies the index of the activity attribute (first index: 1).
standardizeInput:Standardize all numeric input features.\n\
The parameters are stored in the codebook file (-B) and then used for standardization of test data (-b) in an online approach.
normalizeInput:Normalize all numeric input features (min->max is normalized to 0->1).\n\
@@ -57,11 +60,10 @@ nCharGram:N-character-gram (default: nCharGram=0)\n
# Assignment general
log:Logarithmic term weighting 'lg(TF+1)' of the term frequency.\n\
This parameter is transmitted in the codebook file. If a codebook is loaded the term weighting specified therein is taken.
This parameter is stored in the codebook file (-B) and used when the respective codebook is loaded (-b).
idf:Inverse document frequency transform: Multiply the term frequency (TF) with the logarithm of the ratio of the \n\
total number of instances and the number of instances where the respective word is present.\n\
This parameter and the idf weights are transmitted in the codebook file.\n\
If a codebook is loaded the term weighting specified therein is taken.
This parameter is stored in the codebook file (-B) and used when the respective codebook is loaded (-b).
norm:Normalize the bag-of-features (3 options of normalization).\n\
p=1: Divides the term frequencies (TF) by the number of input frames.\n\
p=2: Divides the TF by the sum of all TFs.\n\
@@ -12,7 +12,9 @@ interval=0.04 # hop size
NEW_UUID='LLD'$(date | md5sum | awk '{ print substr( $0, 1, 10 ) }')'a'
./SMILExtract -C "mfcc_energy.conf" -logfile "smile.log" -I $wavfile -instname $wavfile -csvoutput ${NEW_UUID}.csv -l 1
java -jar openXBOW.jar -i ${NEW_UUID}.csv -attributes nt1111111111111 -o boaw.libsvm -a 10 -norm 1 -b book &>/dev/null
#java -jar openXBOW.jar -i ${NEW_UUID}.csv -attributes nt1111111111111 -o boaw.libsvm -a 10 -norm 1 -b book &>/dev/null
java -jar openXBOW.jar -i ${NEW_UUID}.csv -attributes nt1[13] -o boaw.libsvm -norm 1 -b codebook &>/dev/null
./predict boaw.libsvm modelArousal.svr ${NEW_UUID}arousal.txt &>/dev/null
#cat valence.txt | awk '{ sum += $1; sum2+=$1*$1; n++ } END { if (n > 0) print sum/n , 1-((sum2/n)-(sum/n*sum/n))^.5; }' > Vres.txt
@@ -12,7 +12,9 @@ interval=0.04 # hop size
NEW_UUID='LLD'$(date | md5sum | awk '{ print substr( $0, 1, 10 ) }')'a'
./SMILExtract -C "mfcc_energy.conf" -logfile "smile.log" -I $wavfile -instname $wavfile -csvoutput ${NEW_UUID}.csv -l 1
java -jar openXBOW.jar -i ${NEW_UUID}.csv -attributes nt1111111111111 -o boaw.libsvm -a 10 -norm 1 -b book &>/dev/null
#java -jar openXBOW.jar -i ${NEW_UUID}.csv -attributes nt1111111111111 -o boaw.libsvm -a 10 -norm 1 -b book &>/dev/null
java -jar openXBOW.jar -i ${NEW_UUID}.csv -attributes nt1[13] -o boaw.libsvm -norm 1 -b codebook &>/dev/null
./predict boaw.libsvm modelValence.svr ${NEW_UUID}valence.txt &>/dev/null
#cat valence.txt | awk '{ sum += $1; sum2+=$1*$1; n++ } END { if (n > 0) print sum/n , 1-((sum2/n)-(sum/n*sum/n))^.5; }' > Vres.txt
+29 -16
Ver Arquivo
@@ -1,64 +1,77 @@
{
"configs":[
{
"id":"arousal_dummy",
"classifier":"opensmilesvm",
"config":"IS09_full.conf",
"entry":"emotions[emotionVA]/onyx:hasEmotion/pad:arousal",
"intype":"audio",
},{
"id":"valence_dummy",
"classifier":"opensmilesvm",
"config":"IS09_c_full.conf",
"entry":"emotions[emotionVA]/onyx:hasEmotion/pad:valence",
"intype":"audio",
},{
"id":"arousal",
"classifier":"bash",
"intype":"audio",
"run_command":"boaw_models/run_ars.sh",
"onyxentity":"emovoc:arousal"
"entry_name":"emotions",
"@idjson":"",
"entry":"emotions[emotionVA]/onyx:hasEmotion/pad:arousal",
"run_command":"boaw_models_v3/run_ars.sh",
},{
"id":"valence",
"classifier":"bash",
"intype":"audio",
"run_command":"boaw_models/run_val.sh",
"onyxentity":"emovoc:valence"
"entry":"emotions[emotionVA]/onyx:hasEmotion/pad:valence",
"run_command":"boaw_models_v3/run_val.sh",
},{
"id":"gender",
"classifier":"bash",
"intype":"audio",
"entry":"traits/general/gender",
"run_command":"RF_models/run_gender.sh",
"onyxentity":"gender"
},{
"id":"age",
"classifier":"bash",
"intype":"audio",
"entry":"traits/general/age",
"run_command":"RF_models/run_age.sh",
"onyxentity":"age"
},{
"id":"big5a",
"classifier":"bash",
"intype":"audio",
"entry":"traits/Big-5/Agreeableness",
"run_command":"RF_models/run_Agreeable.sh",
"onyxentity":"Agreeableness"
},{
"id":"big5c",
},{ "id":"big5c",
"classifier":"bash",
"intype":"audio",
"entry":"traits/Big-5/Concioustiousness",
"run_command":"RF_models/run_Concious.sh",
"onyxentity":"Concioustiousness"
},{
"id":"big5o",
"classifier":"bash",
"intype":"audio",
"entry":"traits/Big-5/Openness",
"run_command":"RF_models/run_Openness.sh",
"onyxentity":"Openness"
},{
"id":"big5e",
"classifier":"bash",
"intype":"audio",
"entry":"traits/Big-5/Extroversion",
"run_command":"RF_models/run_Extroversion.sh",
"onyxentity":"Extroversion"
},{
"id":"big5n",
"classifier":"bash",
"intype":"audio",
"run_command":"RF_models/run_Neuroticism.sh",
"onyxentity":"Neuroticism"
"entry":"traits/Big-5/Neutroticism",
"run_command":"RF_models/run_Neuroticism.sh"
},{
"id":"sentiment",
"classifier":"bash",
"intype":"text",
"run_command":"sentiment/sentiment_runner.sh",
"onyxentity":"Sentiment"
"entry":"sentiments/marl:polarityValue",
"run_command":"sentiment/sentiment_runner.sh"
}
]}
+45
Ver Arquivo
@@ -0,0 +1,45 @@
{
"entries": [
{
"emotions": [{
"onyx:hasEmotion": {
"pad:arousal": 0.5,
"pad:valence": 0.1
}
}],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=0,2"
},
{
"emotions": [{
"onyx:hasEmotion": {
"pad:arousal": 0.4,
"pad:valence": 0.2
}
}],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=4,6"
},
{
"emotions": [{
"onyx:hasEmotion": {
"pad:arousal": 0.3,
"pad:valence": 0.3
}
}],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=8,11"
},
{
"emotions": [{
"onyx:hasEmotion": {
"pad:arousal": 0.2,
"pad:valence": 0.4
}
}],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=12,13"
}
],
"@type": "results",
"@context": "http://senpy.cluster.gsi.dit.upm.es/api/contexts/Results.jsonld",
"analysis": [
"audioAnalysis_vad"
]
}
+179
Ver Arquivo
@@ -0,0 +1,179 @@
{
"entries": [
{
"emotions": [
{"onyx:hasEmotion": {
"pad:arousal": 0.5,
"pad:valence": 0.1
}},
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": -0.2,
"pad:arousal": -0.4
}},
{
"onyx:hasEmotion": {
"pad:arousal": 0.04999999999999999,
"pad:valence": -0.05
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=0.0,2.0"
},
{
"emotions": [
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": -0.2,
"pad:arousal": -0.4
}},
{
"onyx:hasEmotion": {
"pad:arousal": -0.4,
"pad:valence": -0.2
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "shortTest.mp4:time=2.0,4.0"
},
{
"emotions": [
{"onyx:hasEmotion": {
"pad:arousal": 0.4,
"pad:valence": 0.2
}},
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": -0.2,
"pad:arousal": -0.4
}},
{
"onyx:hasEmotion": {
"pad:arousal": 0,
"pad:valence": 0
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=4.0,5.0"
},
{
"emotions": [
{"onyx:hasEmotion": {
"pad:arousal": 0.4,
"pad:valence": 0.2
}},
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": -0.2,
"pad:arousal": -0.4
}},
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": 0.3,
"pad:arousal": 0.2
}},
{
"onyx:hasEmotion": {
"pad:arousal": 0.06666666666666667,
"pad:valence": 0.09999999999999999
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=5.0,6.0"
},
{
"emotions": [
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": 0.3,
"pad:arousal": 0.2
}},
{
"onyx:hasEmotion": {
"pad:arousal": 0.2,
"pad:valence": 0.3
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "shortTest.mp4:time=6.0,8.0"
},
{
"emotions": [
{"onyx:hasEmotion": {
"pad:arousal": 0.3,
"pad:valence": 0.3
}},
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": 0.3,
"pad:arousal": 0.2
}},
{
"onyx:hasEmotion": {
"pad:arousal": 0.25,
"pad:valence": 0.3
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=8.0,10.0"
},
{
"emotions": [
{"onyx:hasEmotion": {
"pad:arousal": 0.3,
"pad:valence": 0.3
}},
{"onyx:hasEmotion": {
"@type": "emotion",
"pad:pleasure": 0.3,
"pad:arousal": 0.2
}},
{
"onyx:hasEmotion": {
"pad:arousal": 0.25,
"pad:valence": 0.3
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=10.0,11.0"
},
{
"emotions": [
{"onyx:hasEmotion": {
"pad:arousal": 0.2,
"pad:valence": 0.4
}},
{
"onyx:hasEmotion": {
"pad:arousal": 0.2,
"pad:valence": 0.4
},
"@type": "emotion",
"@id": "emotionVAfusion"
}
],
"@id": "http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4:time=12.0,13.0"
}
],
"@type": "results",
"analysis": [
"videoAnalysis_vad",
"audioAnalysis_vad",
"emotionVAfusion:http://mixedemotions.fim.uni-passau.de:8080/er/general/emotionVAfusion"
],
"@context": "http://senpy.cluster.gsi.dit.upm.es/api/contexts/Results.jsonld"
}
+33
Ver Arquivo
@@ -0,0 +1,33 @@
{
"@context": "http://senpy.cluster.gsi.dit.upm.es/api/contexts/Results.jsonld",
"@type": "results",
"analysis": [
"videoAnalysis_vad"
],
"entries": [
{
"@id": "shortTest.mp4:time=0.0,5.0",
"emotions": [
{
"onyx:hasEmotion": {
"@type": "emotion",
"pad:arousal": -0.4,
"pad:pleasure": -0.2
}
}
]
},
{
"@id": "shortTest.mp4:time=5.0,10.0",
"emotions": [
{
"onyx:hasEmotion": {
"@type": "emotion",
"pad:arousal": 0.2,
"pad:pleasure": 0.3
}
}
]
}
]
}
+20
Ver Arquivo
@@ -0,0 +1,20 @@
{
"@context": "http://senpy.cluster.gsi.dit.upm.es/api/contexts/Plugin.jsonld",
"@id": "emotionVAfusion",
"@type": "emotionFusion",
"author": "@hesamsagha",
"description": "A module that combines the results of audio and video outputs",
"extra_params": [
"audio": { "required": true},
"video": { "required": true}
],
"is_activated": true,
"maxEmotionValue": 1.0,
"minEmotionValue": -1.0,
"module": "fusion",
"name": "fuse",
"onyx:usesEmotionModel": "emoml:pad-dimensions",
"requirements": {},
"url": "https://github.com/MixedEmotions/up_emotions_audio",
"version": "0.1"
}
+15
Ver Arquivo
@@ -0,0 +1,15 @@
You have to set these parameters:
getdims: desired dimentions separated by comma (arousal,valence,age,gender,big5O,big5C,big5E,big5A,big5N,sentiment)
note that, to have sentiment, you should only have 'asr' (automatic speech recognition) in the 'timing' parameter.
url:the url of the video/audio or the name of the uploaded file
timing: start and end of the segments (in seconds). start1,end1;start2,end2, OR asr
when you choose 'asr', the audio file is segmented for each spoken sentence (useful for sentiment recognition)
Example:
http://mixedemotions.fim.uni-passau.de:8080/er/aer/getdims?dims=arousal,valence,gender,age,big5o,big5c,big5e,big5a,big5n&url=http://tv-download.dw.com/dwtv_video/flv/wikoe/wikoe20151114_wiruebli_sd_avc.mp4&timing=9,15;147,152
To upload an audio/video file use curl:
Windows: curl -v -H \"Content-Type:multipart/form-data\" --user meuser -i -X POST -F \"file=@D:\\path\\to\\sample.wav\" http://mixedemotions.fim.uni-passau.de:8080/er/aer/upload
Linux: curl -v -H \"Content-Type:multipart/form-data\" --user meuser -i -X POST -F 'file=@./sample.wav' http://mixedemotions.fim.uni-passau.de:8080/er/aer/upload
GUI interface: http://mixedemotions.fim.uni-passau.de:8080/er/FileUpload.html
Arquivo binário não exibido.
Arquivo binário não exibido.
+16
Ver Arquivo
@@ -13,8 +13,24 @@
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>Jersey REST Service Fusion</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.opensmile.maven.MyApplicationFusion</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey REST Service</servlet-name>
<url-pattern>/aer/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Jersey REST Service Fusion</servlet-name>
<url-pattern>/general/*</url-pattern>
</servlet-mapping>
</web-app>
+22 -5
Ver Arquivo
@@ -27,7 +27,13 @@ function RecordAudio(stream, cfg) {
return tmp; // returns an array of array containing data from various channels
};
/* this.start() = function() {
recording = true;
};
this.stop() = function() {
recording = false;
};*/
}
var recorder;
function toggleRecording( e ) {
@@ -35,13 +41,24 @@ function toggleRecording( e ) {
alert("instop");
recorder.stop();
var recordedData = recorder.getData();
e.classList.remove("recording");
e.classList.remove("recording");
// stop recording
//audioRecorder.stop();
//a/udioRecorder.getBuffers( gotBuffers );
//saveAudio();
} else {
recorder = new RecordAudio(userMedia);
alert("started");
recorder.start();
e.classList.add("recording");
/*window.addEventListener('load', initAudio );
alert("I am here");
if (!audioRecorder)
return;
audioRecorder.clear();
audioRecorder.record();*/
}
}
}
+47 -1
Ver Arquivo
@@ -17,17 +17,63 @@ package com.opensmile.maven;
import java.io.File;
import org.json.JSONArray;
import org.json.JSONObject;
public abstract class Classifier {
public String arg="";
public logger logger_instance;
String configFile = "";
String onyxentity = "";
public String entry = "";
String intype="";
public abstract boolean configure(JSONObject json);
public abstract JSONObject classify(String inputString);
public String getInType(){
return intype;
}
JSONObject createJsonEntry(String jsonpath,Object value){
String[] paths = jsonpath.split("/");
JSONObject jo = new JSONObject();
jo.put(paths[paths.length-1], value);
for(int i=paths.length-2;i>=0;i--){
if(paths[i].endsWith("]")){
String id = paths[i].substring(paths[i].indexOf("[")+1,paths[i].length()-1);
JSONArray ja = new JSONArray();
jo.put("@id", id);
ja.put(0,jo);
JSONObject tempObj = new JSONObject();
jo = tempObj.put(paths[i].substring(0, paths[i].indexOf("[")-1), ja);
}
else{
JSONObject tempObj = new JSONObject();
jo = tempObj.put(paths[i],jo);
}
}
return jo;
}
}
/* SAMPLE INPUT JSON CONF
{
"configs":[
{
"id":"arousal_dummy",
"classifier":"opensmilesvm",
"config":"IS09_full.conf",
"entry":"emotions[emotionVA]/onyx:hasEmotion/pad:arousal",
"intype":"audio",
},{
"id":"valence_dummy",
"classifier":"opensmilesvm",
"config":"IS09_c_full.conf",
"entry":"emotions[emotionVA]/onyx:hasEmotion/pad:valence",
"intype":"audio",
}]
SAMPLE OUTPUT JSON RESULTS
{
"emovoc:pleasure":" 1.00",
"confidence":0.2
}
*/
Diferenças do arquivo suprimidas por serem muito extensas Carregar Diff
+232
Ver Arquivo
@@ -0,0 +1,232 @@
package com.opensmile.maven;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FilenameFilter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Array;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map.Entry;
import java.util.Set;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.UnsupportedAudioFileException;
import javax.ws.rs.Consumes;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import org.apache.catalina.ha.backend.CollectedInfo;
import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.glassfish.jersey.media.multipart.FormDataContentDisposition;
import org.glassfish.jersey.media.multipart.FormDataParam;
import org.glassfish.jersey.server.ResourceConfig;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
@Path("")
public class FusionService extends ResourceConfig {
logger logger_instance = new logger((new SimpleDateFormat("MM/dd/yyyy HH:mm:ss"))
.format(Calendar.getInstance().getTime()).replace("/", "_").replace(":", "_").replace(" ", "_"));
@Path("/")
@GET
@Produces(MediaType.TEXT_PLAIN)
public Response help() {
String st = "Run this command to fuse the results of audio and video outpus: \n wget \"localhost:8080/er/general/fuse?video=`cat json_video_plain.txt`&audio=`cat json_audio_plain.txt`\""
+ "\n In which the files should have the following entities. \n"
+ "Note: keep ':time=start,end' in the \"@id\" section.\n\n"
+ "---------------------------- json_audio_plain.txt -------------------------------\n";
JSONObject jo = EmoRecService.loadJsonObject(paths.getVar("REST_OPENSMILE") + "/fusion/json_sample_audio.txt");
st += jo.toString(4);
st += "\n---------------------------- json_video_plain.txt -------------------------------\n";
jo = EmoRecService.loadJsonObject(paths.getVar("REST_OPENSMILE") + "/fusion/json_sample_video.txt");
st += jo.toString(4);
st += "\n---------------------------- output -------------------------------\n";
jo = EmoRecService.loadJsonObject(paths.getVar("REST_OPENSMILE") + "/fusion/json_sample_output.txt");
st += jo.toString(4);
return Response.status(202).entity(st).build();/**/
}
@Path("/fuse")
@GET
@Produces("application/json")
// @Produces(MediaType.TEXT_PLAIN)
public Response fuse(@QueryParam("audio") String in_audio, @QueryParam("video") String in_video,
@QueryParam("text") String in_text) throws JSONException {
JSONObject audio = null;
if (in_audio != null)
audio = new JSONObject(in_audio);
JSONObject video = null;
if (in_video != null)
video = new JSONObject(in_video);
JSONArray ja_audio = audio.getJSONArray("entries");
JSONArray ja_video = video.getJSONArray("entries");
ArrayList<Double> cutTime = getAllTimes(ja_audio);
cutTime.addAll(getAllTimes(ja_video));
// removing duplicates
Set<Double> hs = new HashSet<>();
hs.addAll(cutTime);
cutTime.clear();
cutTime.addAll(hs);
Collections.sort(cutTime);
JSONObject finalJson = new JSONObject();
if (video.has("analysis")) {
JSONArray ja = video.getJSONArray("analysis");
for (int i = 0; i < ja.length(); i++)
finalJson.append("analysis", ja.get(i));
}
if (audio.has("analysis")) {
JSONArray ja = audio.getJSONArray("analysis");
for (int i = 0; i < ja.length(); i++)
finalJson.append("analysis", ja.get(i));
}
finalJson.append("analysis", "emotionVAfusion");
if (audio.has("@context"))
finalJson.put("@context", audio.get("@context"));
else if (video.has("@context"))
finalJson.put("@context", video.get("@context"));
if (audio.has("@type"))
finalJson.put("@type", audio.get("@type"));
else if (video.has("@type"))
finalJson.put("@type", video.get("@type"));
for (int i = 0; i < cutTime.size() - 1; i++) {
JSONObject ent_aud = findEntry(ja_audio, cutTime.get(i), cutTime.get(i + 1));
JSONObject ent_vid = findEntry(ja_video, cutTime.get(i), cutTime.get(i + 1));
JSONObject ent_fus = null;
if (ent_aud != null || ent_vid != null)
ent_fus = fuse(ent_aud, ent_vid);
else
continue;
String id = ent_fus.getString("@id").split(":time=")[0];
ent_fus.put("@id", id + ":time=" + cutTime.get(i) + "," + cutTime.get(i + 1));
finalJson.append("entries", ent_fus);
}
return Response.status(200).entity(finalJson.toString(4)).build();
}
JSONObject fuse(JSONObject a, JSONObject b) {
JSONObject fused = null;
if (a == null)
fused = new JSONObject(b.toString());
else if (b == null)
fused = new JSONObject(a.toString());
else
fused = new JSONObject(((JSONObject) EmoRecService.mergeJSONsFull(a, b)).toString());
JSONArray emotions = fused.getJSONArray("emotions");
double arousal = 0;
int iArousal = 0;
double valence = 0;
int iValence = 0;
for (int i = 0; i < emotions.length(); i++) {
if (emotions.getJSONObject(i).has("onyx:hasEmotion"))
if (emotions.getJSONObject(i).get("onyx:hasEmotion") instanceof JSONObject) {
JSONObject jo = emotions.getJSONObject(i).getJSONObject("onyx:hasEmotion");
if (jo.has("pad:arousal")) {
iArousal++;
arousal += jo.getDouble("pad:arousal");
}
if (jo.has("pad:valence")) {
iValence++;
valence += jo.getDouble("pad:valence");
}
if (jo.has("pad:pleasure")) {
iValence++;
valence += jo.getDouble("pad:pleasure");
}
}
}
arousal /= iArousal;
valence /= iValence;
JSONObject f = new JSONObject();
f.put("pad:arousal", arousal);
f.put("pad:valence", valence);
JSONObject finalFusion = new JSONObject();
finalFusion.put("@type", "emotion");
finalFusion.put("@id", "emotionVAfusion");
finalFusion.put("onyx:hasEmotion", f);
fused.append("emotions", finalFusion);
return fused;
}
JSONObject findEntry(JSONArray ja, Double st, Double en) {
for (int i = 0; i < ja.length(); i++) {
double[] sten = getStartEnd(ja.getJSONObject(i));
if (sten[0] >= st && sten[0] < en || sten[1] > st && sten[1] <= en || sten[0] <= st && sten[1] >= en)
return ja.getJSONObject(i);
}
return null;
}
ArrayList<Double> getAllTimes(JSONArray ja) {
ArrayList<Double> allTimes = new ArrayList<>();
for (int i = 0; i < ja.length(); i++) {
double[] sten = getStartEnd(ja.getJSONObject(i));
if (sten != null) {
allTimes.add(sten[0]);
allTimes.add(sten[1]);
}
}
return allTimes;
}
double[] getStartEnd(JSONObject ent) {
double[] sten = null;
String id = ent.getString("@id");
String[] sp = id.split(":time=");
if (sp.length > 1) {
String[] times = sp[1].split(",");
sten = new double[2];
sten[0] = Double.valueOf(times[0]);
sten[1] = Double.valueOf(times[1]);
}
return sten;
}
@Path("/emotionVAfusion")
@GET
@Produces(MediaType.TEXT_PLAIN)
public Response emotionVAfusion() {
JSONObject jo = EmoRecService.loadJsonObject(paths.getVar("REST_OPENSMILE") + "/general/emotionVAfusion.json");
return Response.status(202).entity(jo.toString(4)).build();
}
}
@@ -0,0 +1,12 @@
package com.opensmile.maven;
import javax.ws.rs.ApplicationPath;
import org.glassfish.jersey.media.multipart.MultiPartFeature;
import org.glassfish.jersey.server.ResourceConfig;
@ApplicationPath("/")
public class MyApplicationFusion extends ResourceConfig {
public MyApplicationFusion(){
super(FusionService.class,MultiPartFeature.class);
}
}
+3 -5
Ver Arquivo
@@ -28,7 +28,7 @@ public class bashClassifier extends Classifier {
@Override
public boolean configure(JSONObject json) {
run_command = json.getString("run_command");
onyxentity = json.getString("onyxentity");
entry = json.getString("entry");
intype = json.getString("intype");
return true;
}
@@ -77,12 +77,10 @@ public class bashClassifier extends Classifier {
switch((String)jo.get("TYPE")){
case "regression":
double out = jo.getDouble("VALUE");
double conf = (double)(((JSONObject)jo.getJSONArray("PROB").get(0)).getDouble("CONFIDENCE"));
jop.put(onyxentity, out);
jop.put("confidence", conf);
jop = createJsonEntry(entry, out);
break;
case "classification":
jop.put(onyxentity, jo.getJSONArray("PROB"));
jop = createJsonEntry(entry, jo.getJSONArray("PROB"));
break;
}
return jop;
@@ -27,7 +27,7 @@ public class openSMILEclassifier extends Classifier {
@Override
public boolean configure(JSONObject jo) {
configFile = jo.getString("config");
onyxentity = jo.getString("onyxentity");
entry = jo.getString("entry");
intype = jo.getString("intype");
return true;
}
@@ -61,11 +61,10 @@ public class openSMILEclassifier extends Classifier {
case "regression":
double out = jo.getDouble("VALUE");
double conf = (double)((JSONObject)jo.getJSONArray("PROB").get(0)).get("CONFIDENCE");
jop.put(onyxentity, out);
jop.put("confidence", conf);
jop = createJsonEntry(entry, out);
break;
case "classification":
jop.put(onyxentity, jo.getJSONArray("PROB"));
jop = createJsonEntry(entry, jo.getJSONArray("PROB"));
break;
}
return jop;
+1
Ver Arquivo
@@ -29,6 +29,7 @@ public class paths {
static String logFolder = getVar("REST_OPENSMILE") + "/logs/";
static String SMILEconfig = "IS09_emotion_Mine_AR_res_4corpus_0_FE.conf";
static String SMILEconfigAugmented = "IS09_emotion_Mine_AR_res_4corpus_0_FE_Augmented.conf";
static String var_file = "/var/rest_vars";
static String getVar(String varname) {
BufferedReader bufferedReader = null;