Spaces:
Running
Running
Mark Duppenthaler
commited on
Commit
·
a1f1bf8
1
Parent(s):
0b598b9
Add csv export
Browse files- .gitignore +0 -1
- Dockerfile +1 -1
- backend/app.py +87 -3
- backend/data/sav_val_full_video_benchmark.csv +34 -0
- backend/data/val2014_1k_image_benchmark.csv +265 -0
- backend/data/voxpopuli_1k_audio_benchmark.csv +317 -0
- backend/environment.yml +3 -0
- backend/tools.py +118 -0
- frontend/.env +1 -0
- frontend/.prettierignore +8 -0
- frontend/.prettierrc +8 -0
- frontend/index.html +1 -1
- frontend/package-lock.json +0 -0
- frontend/package.json +19 -14
- frontend/src/API.ts +11 -7
- frontend/src/App.tsx +167 -25
- frontend/src/components/DataChart.tsx +47 -0
- frontend/src/index.css +2 -3
- frontend/src/main.tsx +1 -1
- frontend/src/vite-env.d.ts +8 -0
- frontend/tailwind.config.js +0 -14
- frontend/vite.config.ts +4 -3
- package-lock.json +0 -40
.gitignore
CHANGED
@@ -30,7 +30,6 @@ logs/
|
|
30 |
*.log
|
31 |
|
32 |
# Local configuration
|
33 |
-
.env
|
34 |
.env.local
|
35 |
.env.development.local
|
36 |
.env.test.local
|
|
|
30 |
*.log
|
31 |
|
32 |
# Local configuration
|
|
|
33 |
.env.local
|
34 |
.env.development.local
|
35 |
.env.test.local
|
Dockerfile
CHANGED
@@ -38,4 +38,4 @@ EXPOSE 7860
|
|
38 |
WORKDIR /app
|
39 |
|
40 |
# Command to run the application
|
41 |
-
CMD ["/bin/bash", "-c", "conda run --no-capture-output -n omniseal-benchmark-backend
|
|
|
38 |
WORKDIR /app
|
39 |
|
40 |
# Command to run the application
|
41 |
+
CMD ["/bin/bash", "-c", "conda run --no-capture-output -n omniseal-benchmark-backend gunicorn --chdir /app/backend -b 0.0.0.0:7870 app:app"]
|
backend/app.py
CHANGED
@@ -1,6 +1,13 @@
|
|
1 |
-
from flask import Flask, send_from_directory
|
|
|
2 |
import os
|
3 |
import logging
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
logger = logging.getLogger(__name__)
|
6 |
if not logger.hasHandlers():
|
@@ -9,8 +16,10 @@ if not logger.hasHandlers():
|
|
9 |
logger.addHandler(handler)
|
10 |
|
11 |
logger.setLevel(logging.INFO)
|
|
|
12 |
|
13 |
app = Flask(__name__, static_folder="../frontend/dist", static_url_path="")
|
|
|
14 |
|
15 |
|
16 |
@app.route("/")
|
@@ -26,10 +35,85 @@ def data_files(filename):
|
|
26 |
data_dir = os.path.join(os.path.dirname(__file__), "data")
|
27 |
file_path = os.path.join(data_dir, filename)
|
28 |
if os.path.isfile(file_path):
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
return "File not found", 404
|
32 |
|
33 |
|
34 |
if __name__ == "__main__":
|
35 |
-
app.run(host="0.0.0.0", port=
|
|
|
1 |
+
from flask import Flask, Response, send_from_directory
|
2 |
+
from flask_cors import CORS
|
3 |
import os
|
4 |
import logging
|
5 |
+
import pandas as pd
|
6 |
+
import json
|
7 |
+
from io import StringIO
|
8 |
+
from tools import get_old_format_dataframe # Import your function
|
9 |
+
import typing as tp
|
10 |
+
import collections
|
11 |
|
12 |
logger = logging.getLogger(__name__)
|
13 |
if not logger.hasHandlers():
|
|
|
16 |
logger.addHandler(handler)
|
17 |
|
18 |
logger.setLevel(logging.INFO)
|
19 |
+
logger.warning("Starting the Flask app...")
|
20 |
|
21 |
app = Flask(__name__, static_folder="../frontend/dist", static_url_path="")
|
22 |
+
CORS(app)
|
23 |
|
24 |
|
25 |
@app.route("/")
|
|
|
35 |
data_dir = os.path.join(os.path.dirname(__file__), "data")
|
36 |
file_path = os.path.join(data_dir, filename)
|
37 |
if os.path.isfile(file_path):
|
38 |
+
# Determine file type and handle accordingly
|
39 |
+
df = pd.read_csv(file_path)
|
40 |
+
# Modify the dataframe - you'll need to define first_cols and attack_scores
|
41 |
+
first_cols = [
|
42 |
+
"snr",
|
43 |
+
"sisnr",
|
44 |
+
"stoi",
|
45 |
+
"pesq",
|
46 |
+
] # Define appropriate values based on your needs
|
47 |
+
attack_scores = [
|
48 |
+
"bit_acc",
|
49 |
+
"log10_p_value",
|
50 |
+
"TPR",
|
51 |
+
"FPR",
|
52 |
+
] # Define appropriate values based on your needs
|
53 |
+
categories = {
|
54 |
+
"speed": "Time",
|
55 |
+
"updownresample": "Time",
|
56 |
+
"echo": "Time",
|
57 |
+
"random_noise": "Amplitude",
|
58 |
+
"lowpass_filter": "Amplitude",
|
59 |
+
"highpass_filter": "Amplitude",
|
60 |
+
"bandpass_filter": "Amplitude",
|
61 |
+
"smooth": "Amplitude",
|
62 |
+
"boost_audio": "Amplitude",
|
63 |
+
"duck_audio": "Amplitude",
|
64 |
+
"shush": "Amplitude",
|
65 |
+
"pink_noise": "Amplitude",
|
66 |
+
"aac_compression": "Compression",
|
67 |
+
"mp3_compression": "Compression",
|
68 |
+
}
|
69 |
+
|
70 |
+
# This part adds on all the columns
|
71 |
+
df = get_old_format_dataframe(df, first_cols, attack_scores)
|
72 |
+
|
73 |
+
# Create groups based on categories
|
74 |
+
groups = collections.OrderedDict({"Overall": set()})
|
75 |
+
for k in categories.values():
|
76 |
+
groups[k] = set()
|
77 |
+
|
78 |
+
default_selection = set()
|
79 |
+
for k, v in categories.items():
|
80 |
+
if v not in default_selection:
|
81 |
+
for k in list(df.columns):
|
82 |
+
if k.startswith(v):
|
83 |
+
groups["Overall"].add(k)
|
84 |
+
default_selection.add(k)
|
85 |
+
|
86 |
+
for col in list(df.columns):
|
87 |
+
for k in categories.keys():
|
88 |
+
if col.startswith(k):
|
89 |
+
cat = categories[k]
|
90 |
+
groups[cat].add(col)
|
91 |
+
break
|
92 |
+
|
93 |
+
# Replace NaN values with None for JSON serialization
|
94 |
+
df = df.fillna(value="NaN")
|
95 |
+
|
96 |
+
# Transpose the DataFrame so each column becomes a row and column is the model
|
97 |
+
df = df.set_index("model").T.reset_index()
|
98 |
+
df = df.rename(columns={"index": "metric"})
|
99 |
+
|
100 |
+
# Convert DataFrame to JSON
|
101 |
+
result = {
|
102 |
+
"groups": {group: list(metrics) for group, metrics in groups.items()},
|
103 |
+
"selected": list(default_selection),
|
104 |
+
"rows": df.to_dict(orient="records"),
|
105 |
+
}
|
106 |
+
|
107 |
+
return Response(json.dumps(result), mimetype="application/json")
|
108 |
+
# return Response(json.dumps(result), mimetype="application/json")
|
109 |
+
|
110 |
+
# Unreachable code - this section will never execute
|
111 |
+
# output = StringIO()
|
112 |
+
# df.to_csv(output, index=False)
|
113 |
+
# return Response(output.getvalue(), mimetype="text/csv")
|
114 |
|
115 |
return "File not found", 404
|
116 |
|
117 |
|
118 |
if __name__ == "__main__":
|
119 |
+
app.run(host="0.0.0.0", port=7870, debug=True, use_reloader=True)
|
backend/data/sav_val_full_video_benchmark.csv
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
model,attack_name,attack_variant,cat,psnr,ssim,lpips,msssim,vmaf,bit_acc,log10_p_value,TPR,FPR,decoder_time
|
2 |
+
videoseal_0.0,Brightness,factor_0.5,Visual,12.329644482775501,0.765689172471563,0.16400888313849768,0.8749285315473875,0.6847622812499999,0.9877604258557161,-22.39911645779745,0.8020833333333334,0.0,0.04272677252689997
|
3 |
+
videoseal_0.0,Brightness,factor_1.5,Visual,14.354039193711705,0.8878506775945425,0.1478040034805114,0.922600731253624,91.48575708333333,0.9782552175844709,-21.862761259598727,0.8333333333333334,0.0,0.042757692436377205
|
4 |
+
videoseal_0.0,Contrast,factor_0.5,Visual,19.05058922938615,0.8292847778648138,0.14325758003784964,0.8760610688477755,0.6737453020833334,0.9880208428949118,-22.43751910161488,0.8333333333333334,0.0,0.042714941004912056
|
5 |
+
videoseal_0.0,Contrast,factor_1.5,Visual,21.246118715557845,0.8107115399713317,0.09629796988641222,0.9281391569723686,99.27316893749999,0.9828125089406967,-22.060089082185865,0.8645833333333334,0.0,0.042758017778396606
|
6 |
+
videoseal_0.0,Crop,size_0.55,Geometric,,,,,,0.7180989719927311,-5.084022903082193,0.0,0.0,0.041914597153663635
|
7 |
+
videoseal_0.0,Crop,size_0.71,Geometric,,,,,,0.9520833479861418,-18.83922559512217,0.5416666666666666,0.0,0.041999004781246185
|
8 |
+
videoseal_0.0,GaussianBlur,kernel_size_9,Visual,31.261418189283557,0.8564526836077372,0.2545727002822484,0.9441723121951023,82.53886110416666,0.9886718845615784,-22.524100619904697,0.9270833333333334,0.0,0.04526924838622411
|
9 |
+
videoseal_0.0,Grayscale,default,Visual,25.135986236049394,1.006394298747182,0.16119166614953429,0.9570745130379995,69.34677589583333,0.5167968831956387,-0.5049506741170464,0.0,0.0,0.04505695402622223
|
10 |
+
videoseal_0.0,H264,crf_23,Compression,38.90266357816779,0.976277074466149,0.025900887136231177,0.9912077020853758,93.4950784375,0.9773437529802322,-21.254674812157564,0.6770833333333334,0.0,0.26233071585496265
|
11 |
+
videoseal_0.0,H264,crf_30,Compression,34.89336664070968,0.9441891511281332,0.07064529450144619,0.9780133875707785,90.57634715625,0.9298177100718021,-16.948903400945508,0.2916666666666667,0.0,0.2648838981986046
|
12 |
+
videoseal_0.0,H264,crf_40,Compression,29.61771797047508,0.8512644742925962,0.21676112001296133,0.9216825664043427,77.12887388541667,0.7444010442122817,-6.524993251353135,0.0,0.0,0.26909273862838745
|
13 |
+
videoseal_0.0,H264,crf_50,Compression,24.375132083999276,0.7168533718213439,0.44491561502218246,0.7669866091261307,42.544007739583336,0.5953125000620881,-1.6307919905700874,0.0,0.0,0.27051642785469693
|
14 |
+
videoseal_0.0,H264_Crop_Brightness0,"xargs_[23, 0.71, 0.5]",Compression,,,,,,0.8328125017384688,-10.553013238178776,0.08333333333333333,0.0,0.15082495907942453
|
15 |
+
videoseal_0.0,H264_Crop_Brightness1,"xargs_[30, 0.71, 0.5]",Compression,,,,,,0.6783854194606344,-3.9887163895481392,0.0,0.0,0.15231983363628387
|
16 |
+
videoseal_0.0,H264_Crop_Brightness2,"xargs_[40, 0.71, 0.5]",Compression,,,,,,0.558203123199443,-1.0105757298040505,0.0,0.0,0.15606174369653067
|
17 |
+
videoseal_0.0,H264_Crop_Brightness3,"xargs_[50, 0.71, 0.5]",Compression,,,,,,0.5205729169150194,-0.5174883076741513,0.0,0.0,0.1565847098827362
|
18 |
+
videoseal_0.0,H264rgb,crf_23,Compression,41.47758589761431,0.9816663532207409,0.027765587966617506,0.9943965021520853,94.04945610416667,0.9869791685293118,-22.30228143979824,0.8645833333333334,0.0,0.26086734731992084
|
19 |
+
videoseal_0.0,H264rgb,crf_30,Compression,37.1260413791376,0.9574717245995998,0.0760538221608537,0.9858291608591875,92.73585030208335,0.9799479190260172,-21.489114757416896,0.6979166666666666,0.0,0.2627016330758731
|
20 |
+
videoseal_0.0,H264rgb,crf_40,Compression,32.388330112588456,0.8992538259675106,0.19846482132561505,0.9558645101885,86.78819740624999,0.9144531264901161,-15.596305555499745,0.2604166666666667,0.0,0.267351637283961
|
21 |
+
videoseal_0.0,H264rgb,crf_50,Compression,27.841309726436464,0.7996925072123607,0.359958834014833,0.8841126126547655,68.91671463541667,0.7197916662941376,-5.245144452455555,0.010416666666666666,0.0,0.2688034226497014
|
22 |
+
videoseal_0.0,HorizontalFlip,default,Geometric,,,,,,0.988541675110658,-22.509592133545524,0.8958333333333334,0.0,0.04236834992965063
|
23 |
+
videoseal_0.0,Hue,factor_0.25,Visual,22.093641063881886,0.9400382476548353,0.2163538116340836,0.9469405251244704,61.196745177083336,0.6230468852445483,-2.1118133625895967,0.0,0.0,0.04279887676239014
|
24 |
+
videoseal_0.0,Identity,default,None,49.978977931859426,0.9937164143969616,0.006842429180930291,0.9962141122668982,94.63625695833332,0.9893229268491268,-22.592961285890492,0.9270833333333334,0.0,0.05321664363145828
|
25 |
+
videoseal_0.0,JPEG,quality_40,Compression,37.04748280666869,0.912163307890296,0.061407871961516015,0.9650243514527878,92.12864571875001,0.9470052197575569,-18.385397764676345,0.4791666666666667,0.0,0.04320657749970754
|
26 |
+
videoseal_0.0,MedianFilter,kernel_size_9,Visual,29.635423336436688,0.8052526020134488,0.21484369677879536,0.9034083429723978,79.76610556249999,0.9889323009798924,-22.554467241038065,0.9270833333333334,0.0,0.045565965274969734
|
27 |
+
videoseal_0.0,Perspective,distortion_scale_0.5,Geometric,,,,,,0.9149739692608515,-15.442059052575727,0.21875,0.0,0.044607033332188926
|
28 |
+
videoseal_0.0,Resize,size_0.55,Geometric,,,,,,0.9891927173982064,-22.584066906143118,0.9375,0.0,0.04200796037912369
|
29 |
+
videoseal_0.0,Resize,size_0.71,Geometric,,,,,,0.9894531350582838,-22.61095164976307,0.9375,0.0,0.04194989303747813
|
30 |
+
videoseal_0.0,Rotate,angle_10,Geometric,,,,,,0.9381510528425375,-17.10844228502611,0.23958333333333334,0.0,0.04480337103207906
|
31 |
+
videoseal_0.0,Rotate,angle_90,Geometric,,,,,,0.5110677148525914,-0.4356897813412122,0.0,0.0,0.04462430874506632
|
32 |
+
videoseal_0.0,Saturation,factor_0.5,Visual,31.1184732912089,0.9963171773900589,0.0435978326034577,0.9937543322642645,82.37308011458333,0.9872395930190881,-22.325443424433285,0.8020833333333334,0.0,0.04291540135939916
|
33 |
+
videoseal_0.0,Saturation,factor_1.5,Visual,31.443817581094304,0.9884588439017534,0.037789984742024295,0.9898110615710417,87.21965684375,0.9891927186399698,-22.574382076523154,0.9375,0.0,0.04274391631285349
|
34 |
+
videoseal_0.0,VP9,default,Compression,37.837220910611414,0.9681100845336914,0.04557402139956442,0.9873604613045851,93.01640629166666,0.965234378973643,-20.019336430542744,0.4270833333333333,0.0,0.2505236243208249
|
backend/data/val2014_1k_image_benchmark.csv
ADDED
@@ -0,0 +1,265 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
model,attack_name,attack_variant,cat,psnr,ssim,lpips,bit_acc,log10_p_value,TPR,FPR,decoder_time,qual_time,det_time,attack_time
|
2 |
+
cine_jit,brightness,brightness_factor_1.5,Visual,14.793723794937133,0.8787051364599999,0.14193622463196515,0.9981428577303887,-4.191011628767688,0.985,0.0,0.019354299999999998,0.1177627,0.0410492,0.0022933000000000003
|
3 |
+
cine_jit,brightness,brightness_factor_2,Visual,10.968698310852051,0.73736501481,0.2617685646489263,0.9960714295208454,-4.167917673642502,0.982,0.0,0.0202609,0.1193021,0.0413342,0.0023506
|
4 |
+
cine_jit,center_crop,scale_0.1,Geometric,,,,0.4987143074721098,-0.3352273607556046,0.0,0.0,0.015408100000000003,0.0,0.0299736,0.0023213
|
5 |
+
cine_jit,center_crop,scale_0.2,Geometric,,,,0.49592859322577715,-0.33112507926489454,0.0,0.0,0.0147408,0.0,0.030030800000000007,0.0022835
|
6 |
+
cine_jit,center_crop,scale_0.5,Geometric,,,,0.5040714505165815,-0.3373113577495052,0.0,0.0,0.017443300000000002,0.0,0.03601299999999999,0.0023024000000000005
|
7 |
+
cine_jit,collage,scale_0.1,Inpainting,-2.264131217956543,0.15222266984399999,0.7499057468175888,0.6403571749031544,-0.8613041623189308,0.002,0.0,0.018156500000000002,0.1183056,0.037305000000000005,0.0033442000000000003
|
8 |
+
cine_jit,comb,default,Mixed,,,,0.5037857362255455,-0.34787567211106724,0.0,0.0,0.017114600000000004,0.0,0.0346486,0.015026899999999998
|
9 |
+
cine_jit,contrast,contrast_factor_1.5,Visual,21.203966033935547,0.82492182279,0.10614364800043403,0.9979285719394684,-4.189271843250608,0.984,0.0,0.019087000000000003,0.11721569999999999,0.0398754,0.0024752999999999997
|
10 |
+
cine_jit,contrast,contrast_factor_2,Visual,17.20670739173889,0.70639500298,0.1901860120818019,0.9970714294910431,-4.175135788491075,0.975,0.001,0.020367200000000002,0.1193308,0.0412925,0.0024322999999999997
|
11 |
+
cine_jit,gaussian_blur,kernel_size_17,Visual,22.98837381362915,0.7345776365200001,0.46964600117504596,0.9962857156395912,-4.161671516710178,0.964,0.0,0.019586000000000003,0.1177006,0.0402553,0.0027628
|
12 |
+
cine_jit,gaussian_blur,kernel_size_3,Visual,29.48486163520813,0.92603678758,0.1511742896437645,0.9997857143878937,-4.210891665518569,0.994,0.0,0.0193962,0.11915580000000002,0.040181600000000005,0.0028139999999999997
|
13 |
+
cine_jit,hflip,default,Geometric,,,,0.5152857366800309,-0.3860999028091876,0.0,0.0,0.019453899999999996,0.0,0.038473799999999996,0.0021997
|
14 |
+
cine_jit,hue,hue_factor_-0.1,Visual,26.82082160949707,0.95958051585,0.13717786891572178,0.976928575694561,-3.953951484600151,0.893,0.0,0.014568700000000002,0.11870789999999999,0.0315958,0.0038947999999999995
|
15 |
+
cine_jit,hue,hue_factor_0.1,Visual,26.859237878799437,0.9648306783,0.1396170155685395,0.9948571441471576,-4.156042565949502,0.975,0.0,0.0165752,0.11801149999999999,0.0341875,0.003989599999999999
|
16 |
+
cine_jit,jpeg,quality_factor_40,Compression,29.44433637237549,0.91525193599,0.19659307485073804,0.9393571620583534,-3.409343335671343,0.497,0.0,0.0185747,0.11844269999999998,0.0379668,0.0219767
|
17 |
+
cine_jit,jpeg,quality_factor_80,Compression,32.83987800598145,0.95561534721,0.10288211115077138,0.9963571443557739,-4.158669019244395,0.93,0.0,0.0198866,0.11633569999999999,0.04084700000000001,0.0232457
|
18 |
+
cine_jit,median_filter,kernel_size_3,Visual,,,,0.9995000002384186,-4.2061873004823465,0.992,0.0,0.0194793,0.0,0.0406742,0.0031006000000000002
|
19 |
+
cine_jit,median_filter,kernel_size_7,Visual,,,,0.999071429014206,-4.19945762958086,0.984,0.0,0.0195634,0.0,0.0416309,0.0049805
|
20 |
+
cine_jit,none,default,None,44.57761585617065,0.99689209203,0.022877193189691752,0.9997142858505249,-4.209715574259513,0.994,0.0,0.0380514,0.11829179999999997,0.05887730000000001,0.0021683
|
21 |
+
cine_jit,overlay_text,default,Inpainting,26.566834508895873,0.9797355762,0.056516835706308485,0.9996428573131562,-4.208539483000458,0.99,0.0,0.019463900000000003,0.1181968,0.0410009,0.021147700000000002
|
22 |
+
cine_jit,perspective,distortion_scale_0.1,Geometric,,,,0.5249285944625736,-0.47179957110970555,0.0,0.0,0.0186661,0.0,0.03826859999999999,0.0032442
|
23 |
+
cine_jit,perspective,distortion_scale_0.5,Geometric,,,,0.5015000222399831,-0.349701211221236,0.0,0.0,0.0210106,0.0,0.042139899999999994,0.0032573
|
24 |
+
cine_jit,proportion,prop_0.1,Geometric,,,,0.8256428890526295,-2.270391522598131,0.168,0.0,0.0189112,0.0,0.0397027,0.0023819999999999996
|
25 |
+
cine_jit,resize,scale_0.1,Geometric,,,,0.9991428574919701,-4.201489896759147,0.99,0.0,0.013764600000000002,0.0,0.029183,0.0023250000000000002
|
26 |
+
cine_jit,resize,scale_0.5,Geometric,,,,0.9996428573131562,-4.208539483000458,0.994,0.0,0.0159048,0.0,0.033760099999999994,0.0023076000000000004
|
27 |
+
cine_jit,rotate,angle_10,Geometric,,,,0.5035714503005146,-0.3465748494178488,0.0,0.0,0.019503999999999997,0.0,0.03929080000000001,0.0026563999999999997
|
28 |
+
cine_jit,saturation,saturation_factor_1.5,Visual,29.795919807434082,0.96583138219,0.047503451135009526,0.9997857143878937,-4.210891665518569,0.997,0.0,0.018806200000000002,0.12157259999999999,0.0396032,0.0024063999999999995
|
29 |
+
cine_jit,saturation,saturation_factor_2,Visual,24.66211896324158,0.92016696315,0.08295480765774846,0.9999285714626313,-4.21324384803668,0.998,0.0,0.018576799999999997,0.1155013,0.0395487,0.0023869
|
30 |
+
cine_jit,sharpness,sharpness_factor_1.5,Visual,36.179243997573856,0.9877379007,0.03578403472341597,0.9997142858505249,-4.209715574259513,0.993,0.0,0.018844700000000002,0.1178692,0.0396441,0.0025960000000000002
|
31 |
+
cine_jit,sharpness,sharpness_factor_2,Visual,31.19517758369446,0.96670936118,0.06171484182775021,0.9995714287757873,-4.2076902683942485,0.991,0.0,0.019257800000000002,0.11999629999999999,0.0422377,0.0025938999999999997
|
32 |
+
dctdwt,brightness,brightness_factor_1.5,Visual,14.646175559997559,0.85921773233,0.1388432988859713,0.5978125,-1.9191306399385262,0.099,0.0,0.0235184,0.1246352,0.047183499999999996,0.0022683
|
33 |
+
dctdwt,brightness,brightness_factor_2,Visual,10.881604486465454,0.71897309263,0.26098551776260137,0.4898125,-0.34018891538781537,0.0,0.0,0.024112099999999997,0.12904450000000003,0.0475997,0.0023271
|
34 |
+
dctdwt,collage,scale_0.1,Inpainting,-2.2728081817626955,0.150185196504,0.7494750100374222,0.68025,-1.8593439550505408,0.005,0.0,0.0238288,0.1306898,0.04771430000000001,0.0033881
|
35 |
+
dctdwt,contrast,contrast_factor_1.5,Visual,21.041186895370483,0.81546665239,0.10033562627620995,0.62546875,-2.447305479356551,0.147,0.0,0.02357,0.12252060000000001,0.0470408,0.0024881
|
36 |
+
dctdwt,contrast,contrast_factor_2,Visual,17.130134965896605,0.69788034973,0.18464771055430174,0.493,-0.3944471596834818,0.003,0.0,0.023721700000000002,0.1282683,0.0471453,0.0025323000000000003
|
37 |
+
dctdwt,gaussian_blur,kernel_size_17,Visual,23.000045793533324,0.7343527059800001,0.46832468992471693,0.49846875,-0.38040580612390384,0.0,0.0,0.0232742,0.12188739999999998,0.0466825,0.0027191999999999997
|
38 |
+
dctdwt,gaussian_blur,kernel_size_3,Visual,29.359823127746584,0.9225038952700001,0.1445731447674334,0.7554375,-4.24479106449854,0.294,0.0,0.0234535,0.12255439999999998,0.046827400000000005,0.0028728
|
39 |
+
dctdwt,hflip,default,Geometric,,,,0.50515625,-0.41070173930413784,0.0,0.0,0.024068199999999998,0.0,0.047574399999999996,0.0023911
|
40 |
+
dctdwt,hue,hue_factor_-0.1,Visual,26.185697172164918,0.94145341576,0.1829733139714226,0.685,-3.6290524452344743,0.277,0.0,0.0202348,0.13034090000000004,0.040309899999999996,0.0045601
|
41 |
+
dctdwt,hue,hue_factor_0.1,Visual,26.28839067840576,0.94862848134,0.1473156900377944,0.817625,-6.088935426143821,0.529,0.0,0.0199294,0.1205514,0.0397847,0.0038936
|
42 |
+
dctdwt,jpeg,quality_factor_40,Compression,29.497363302230834,0.91596003594,0.19278194385766984,0.5020625,-0.3826146140818607,0.0,0.0,0.023294000000000002,0.12497190000000001,0.046757200000000006,0.0217527
|
43 |
+
dctdwt,jpeg,quality_factor_80,Compression,32.97083967590332,0.95628321189,0.0949205633001402,0.50665625,-0.41018963104978795,0.0,0.0,0.0236413,0.12104549999999999,0.047097499999999994,0.0233617
|
44 |
+
dctdwt,median_filter,kernel_size_3,Visual,,,,0.52965625,-0.5827200230159719,0.001,0.0,0.0233184,0.0,0.046724,0.0030951000000000004
|
45 |
+
dctdwt,median_filter,kernel_size_7,Visual,,,,0.52696875,-0.5416524306005963,0.001,0.0,0.023101,0.0,0.04641760000000001,0.004961600000000001
|
46 |
+
dctdwt,none,default,None,37.100932926177975,0.98238478442,0.018059058379149066,0.9069375,-7.465387567368447,0.693,0.0,0.023649999999999997,0.14264190000000002,0.0489201,0.0023167
|
47 |
+
dctdwt,overlay_text,default,Inpainting,26.161182703018188,0.9655021622,0.052341841217130425,0.9075,-7.481749456599679,0.694,0.0,0.023286399999999995,0.12185660000000001,0.046642,0.0208104
|
48 |
+
dctdwt,perspective,distortion_scale_0.1,Geometric,,,,0.5094375,-0.4148919277292913,0.0,0.0,0.023255599999999998,0.0,0.046636500000000004,0.0032637
|
49 |
+
dctdwt,perspective,distortion_scale_0.5,Geometric,,,,0.49571875,-0.34551440090266644,0.0,0.0,0.0232342,0.0,0.04653340000000001,0.0031872
|
50 |
+
dctdwt,proportion,prop_0.1,Geometric,,,,0.56490625,-0.8622671504886679,0.004,0.0,0.023345799999999996,0.0,0.046826700000000006,0.0023633999999999994
|
51 |
+
dctdwt,rotate,angle_10,Geometric,,,,0.50721875,-0.3981109464696025,0.0,0.0,0.023347700000000002,0.0,0.0473137,0.0033089
|
52 |
+
dctdwt,saturation,saturation_factor_1.5,Visual,28.590861644744873,0.9479178643299999,0.04503343831095845,0.6079375,-2.4414515215618957,0.151,0.0,0.023415699999999998,0.1286404,0.047054,0.002418
|
53 |
+
dctdwt,saturation,saturation_factor_2,Visual,24.03351840400696,0.9004733717600001,0.08263210132345557,0.472,-0.3452179077776427,0.003,0.0,0.0235096,0.12627249999999998,0.04716070000000001,0.0024
|
54 |
+
dctdwt,sharpness,sharpness_factor_1.5,Visual,32.89536434936524,0.96798861493,0.034998534508980814,0.90575,-7.425334355548517,0.685,0.0,0.0234587,0.1212171,0.046932299999999996,0.0026072999999999995
|
55 |
+
dctdwt,sharpness,sharpness_factor_2,Visual,29.32010269546509,0.94230270498,0.06395385470613837,0.9031875,-7.3604109030809415,0.664,0.0,0.023422100000000005,0.1195551,0.0467783,0.0025878
|
56 |
+
fnns,brightness,brightness_factor_1.5,Visual,14.666424600601196,0.8575865740299999,0.1761525107510388,0.99659375,-9.509029064634491,0.975,0.0,0.011226599999999998,0.1234303,0.0230385,0.0023639999999999998
|
57 |
+
fnns,brightness,brightness_factor_2,Visual,10.89384718132019,0.71421256051,0.29418559215962886,0.98828125,-9.22717421456476,0.914,0.0,0.012082800000000001,0.1175197,0.0244659,0.0022692000000000003
|
58 |
+
fnns,center_crop,scale_0.1,Geometric,,,,0.99215625,-9.332077256146167,0.924,0.0,0.0038908999999999997,0.0,0.0062866,0.0022579
|
59 |
+
fnns,center_crop,scale_0.2,Geometric,,,,0.9965,-9.49380218710162,0.955,0.0,0.0058032000000000005,0.0,0.0101479,0.0022439
|
60 |
+
fnns,center_crop,scale_0.5,Geometric,,,,0.99821875,-9.558841561493942,0.972,0.0,0.007449300000000001,0.0,0.0140286,0.0022887000000000003
|
61 |
+
fnns,collage,scale_0.1,Inpainting,-2.264151153564453,0.15096082084699997,0.7516143677830696,0.8478125,-4.94242237560023,0.258,0.0,0.011860699999999998,0.12263500000000001,0.023200000000000002,0.0033249999999999994
|
62 |
+
fnns,comb,default,Mixed,,,,0.957,-7.995744090059443,0.657,0.001,0.0057744,0.0,0.011760999999999999,0.0144822
|
63 |
+
fnns,contrast,contrast_factor_1.5,Visual,21.08928023147583,0.8189915701699999,0.12515786097198725,0.99815625,-9.552669354332867,0.965,0.0,0.0123833,0.1195645,0.0235169,0.0024822999999999994
|
64 |
+
fnns,contrast,contrast_factor_2,Visual,17.15247671699524,0.7011445664399999,0.2040405571088195,0.9940625,-9.392927502610569,0.917,0.0,0.011627799999999997,0.12218280000000001,0.023237099999999997,0.0024706999999999993
|
65 |
+
fnns,gaussian_blur,kernel_size_17,Visual,23.001661640167235,0.73342866011,0.4680922738313675,0.501875,-0.3548576072833981,0.0,0.0,0.0112015,0.1178255,0.0224232,0.0027759
|
66 |
+
fnns,gaussian_blur,kernel_size_3,Visual,29.340129753112794,0.9207293692400002,0.15687376248463988,0.95278125,-7.713495870490613,0.666,0.0,0.0110674,0.11823220000000001,0.022301,0.0026820000000000004
|
67 |
+
fnns,hflip,default,Geometric,,,,0.56934375,-0.7522198412154251,0.0,0.0,0.0109787,0.0,0.0221559,0.0021186000000000004
|
68 |
+
fnns,hue,hue_factor_-0.1,Visual,26.20327004623413,0.94627732258,0.16387603045627475,0.99171875,-9.278746262161759,0.862,0.0,0.008224,0.11820260000000002,0.0160829,0.0038195
|
69 |
+
fnns,hue,hue_factor_0.1,Visual,26.221160842895507,0.95119678531,0.16759045490436256,0.99465625,-9.401950091789502,0.949,0.0,0.0084077,0.122867,0.0173771,0.0038316999999999995
|
70 |
+
fnns,jpeg,quality_factor_40,Compression,29.31752152252197,0.91143800601,0.20191697863489388,0.82709375,-4.214259600535113,0.064,0.0,0.0113499,0.12450749999999998,0.022549600000000003,0.021025399999999996
|
71 |
+
fnns,jpeg,quality_factor_80,Compression,32.3667008934021,0.9493270618499999,0.1147521951533854,0.95403125,-7.771567083699816,0.502,0.001,0.010940000000000002,0.1186529,0.022150999999999997,0.022403299999999998
|
72 |
+
fnns,median_filter,kernel_size_3,Visual,,,,0.99915625,-9.594859719577293,0.987,0.0,0.0119945,0.0,0.0234126,0.0029682999999999997
|
73 |
+
fnns,median_filter,kernel_size_7,Visual,,,,0.89875,-5.967818774041979,0.315,0.0,0.0127122,0.0,0.024368,0.0049116
|
74 |
+
fnns,none,default,None,37.73194052124023,0.98343209724,0.0577609139168635,0.999125,-9.592714061221972,0.991,0.0,0.011058299999999998,0.12131009999999999,0.022179699999999997,0.0020877999999999995
|
75 |
+
fnns,overlay_text,default,Inpainting,26.282964448928833,0.9665547330900001,0.08968364307656884,0.99896875,-9.585761984636033,0.99,0.0,0.011139299999999998,0.11765619999999999,0.0222427,0.0200088
|
76 |
+
fnns,perspective,distortion_scale_0.1,Geometric,,,,0.996375,-9.472621044609186,0.917,0.001,0.0128539,0.0,0.024233099999999997,0.0031759000000000006
|
77 |
+
fnns,perspective,distortion_scale_0.5,Geometric,,,,0.9118125,-6.591575849895768,0.276,0.0,0.010885099999999998,0.0,0.0219434,0.0031799
|
78 |
+
fnns,proportion,prop_0.1,Geometric,,,,0.8770625,-5.6069631497592525,0.122,0.0,0.012266899999999999,0.0,0.0235276,0.0024128
|
79 |
+
fnns,resize,scale_0.1,Geometric,,,,0.4676875,-0.2618836687110853,0.0,0.0,0.0019244,0.0,0.004073500000000001,0.0023171
|
80 |
+
fnns,resize,scale_0.5,Geometric,,,,0.82228125,-4.392052658381943,0.142,0.0,0.0062721,0.0,0.012288599999999998,0.0022366
|
81 |
+
fnns,rotate,angle_10,Geometric,,,,0.94728125,-7.522718862210089,0.463,0.0,0.0120438,0.0,0.0233069,0.0027481
|
82 |
+
fnns,saturation,saturation_factor_1.5,Visual,28.54383068084717,0.9485864386,0.07616740123927593,0.99909375,-9.591195547282094,0.987,0.0,0.0119347,0.12006960000000001,0.023122200000000002,0.0024886999999999995
|
83 |
+
fnns,saturation,saturation_factor_2,Visual,23.90470901298523,0.8981677048100001,0.10701824130117893,0.99871875,-9.575859766012146,0.984,0.0,0.0110701,0.12370179999999999,0.022131100000000004,0.0025103
|
84 |
+
fnns,sharpness,sharpness_factor_1.5,Visual,33.518123767852785,0.96978701776,0.07903308323398232,0.99915625,-9.59435724319616,0.992,0.0,0.010910699999999999,0.1172491,0.022112,0.0025691999999999998
|
85 |
+
fnns,sharpness,sharpness_factor_2,Visual,29.774914964675904,0.9443477919900001,0.10925241761282087,0.99896875,-9.586499370537702,0.99,0.0,0.011623699999999999,0.1178423,0.023621299999999998,0.0025761999999999994
|
86 |
+
hidden,brightness,brightness_factor_1.5,Visual,14.668389726638795,0.85556499607,0.16644846443086864,0.9644375,-8.305146735463047,0.66,0.0,0.011175,0.1207114,0.0223857,0.0023567
|
87 |
+
hidden,brightness,brightness_factor_2,Visual,10.89320477104187,0.71096163557,0.2858060501739383,0.96040625,-8.249435268732869,0.667,0.0,0.011186,0.117228,0.022693500000000002,0.0023314
|
88 |
+
hidden,center_crop,scale_0.1,Geometric,,,,0.9074375,-6.347466337025129,0.245,0.0,0.0040462,0.0,0.0064735999999999995,0.0022198
|
89 |
+
hidden,center_crop,scale_0.2,Geometric,,,,0.92946875,-7.017488963128573,0.373,0.0,0.0030765000000000002,0.0,0.006219200000000001,0.0021753
|
90 |
+
hidden,center_crop,scale_0.5,Geometric,,,,0.942375,-7.431960819750468,0.42,0.0,0.006442399999999999,0.0,0.0131342,0.0022432999999999997
|
91 |
+
hidden,collage,scale_0.1,Inpainting,-2.2765180587768556,0.15227499644599998,0.7508550782799721,0.64425,-1.386259516529165,0.001,0.0,0.011146399999999997,0.11861680000000001,0.023527,0.0033564
|
92 |
+
hidden,comb,default,Mixed,,,,0.8813125,-5.800753509063626,0.21,0.0,0.0057363,0.0,0.0119149,0.0138353
|
93 |
+
hidden,contrast,contrast_factor_1.5,Visual,21.11191944694519,0.8200089765699999,0.11636101794615387,0.94975,-7.653379017435201,0.458,0.0,0.0113499,0.1202828,0.022605999999999998,0.0024560999999999997
|
94 |
+
hidden,contrast,contrast_factor_2,Visual,17.163515506744385,0.70152928769,0.19615146344155074,0.94015625,-7.334541481094144,0.403,0.0,0.0111141,0.119358,0.0224578,0.0024878
|
95 |
+
hidden,gaussian_blur,kernel_size_17,Visual,22.999225114822387,0.73255334052,0.4681666596233845,0.5169375,-0.4356468352194895,0.0,0.0,0.0117121,0.11800999999999999,0.0239112,0.0027128
|
96 |
+
hidden,gaussian_blur,kernel_size_3,Visual,29.30019935798645,0.9197116746599999,0.15321054110303522,0.8750625,-5.358207788862211,0.206,0.0,0.0116768,0.1195265,0.023172799999999997,0.0027125000000000005
|
97 |
+
hidden,hflip,default,Geometric,,,,0.5266875,-0.506463284296297,0.0,0.0,0.0111497,0.0,0.022611899999999997,0.0023009
|
98 |
+
hidden,hue,hue_factor_-0.1,Visual,26.263194860458373,0.94564773068,0.16030002095922827,0.77078125,-3.0402687884686643,0.017,0.0,0.0076119000000000004,0.1198969,0.0153348,0.0038686000000000003
|
99 |
+
hidden,hue,hue_factor_0.1,Visual,26.285945333480836,0.9506901385900001,0.16239549501426517,0.84275,-4.578824021509619,0.047,0.0,0.0075802,0.11818119999999999,0.015326900000000001,0.003913699999999999
|
100 |
+
hidden,jpeg,quality_factor_40,Compression,29.327193628311157,0.91114804064,0.1993132409527898,0.73696875,-2.634302581673334,0.008,0.0,0.012230399999999999,0.11884210000000002,0.0238538,0.022604500000000003
|
101 |
+
hidden,jpeg,quality_factor_80,Compression,32.452746685028075,0.94956489769,0.1088007452711463,0.8658125,-5.299139346263899,0.102,0.0,0.0116404,0.11652020000000002,0.023130300000000003,0.023208699999999995
|
102 |
+
hidden,median_filter,kernel_size_3,Visual,,,,0.94465625,-7.4924709514490715,0.45,0.0,0.0112601,0.0,0.0225324,0.0030381
|
103 |
+
hidden,median_filter,kernel_size_7,Visual,,,,0.826875,-4.139066232474529,0.061,0.0,0.011703199999999999,0.0,0.023112999999999998,0.0050012
|
104 |
+
hidden,none,default,None,38.24059494400024,0.9832278780400001,0.048101929443888365,0.95125,-7.736043218507175,0.468,0.0,0.0117971,0.11796540000000001,0.0232564,0.002114
|
105 |
+
hidden,overlay_text,default,Inpainting,26.321853666305543,0.96633778048,0.08044499544799327,0.949125,-7.6631777560924546,0.468,0.0,0.011302700000000002,0.1168147,0.0225988,0.0209161
|
106 |
+
hidden,perspective,distortion_scale_0.1,Geometric,,,,0.9314375,-7.046730361831291,0.37,0.0,0.011042999999999999,0.0,0.0222458,0.0032808
|
107 |
+
hidden,perspective,distortion_scale_0.5,Geometric,,,,0.88640625,-5.735525309642246,0.095,0.0,0.0127299,0.0,0.025348199999999998,0.0033152000000000004
|
108 |
+
hidden,proportion,prop_0.1,Geometric,,,,0.6554375,-1.5626950188892554,0.002,0.0,0.0116917,0.0,0.0230418,0.0023060999999999997
|
109 |
+
hidden,resize,scale_0.1,Geometric,,,,0.588125,-0.8615945622307308,0.0,0.001,0.002156,0.0,0.004242599999999999,0.0022698
|
110 |
+
hidden,resize,scale_0.5,Geometric,,,,0.85703125,-5.180355576112077,0.164,0.0,0.0059527,0.0,0.0119695,0.0022125
|
111 |
+
hidden,rotate,angle_10,Geometric,,,,0.80421875,-3.6745007884330465,0.006,0.0,0.0121264,0.0,0.023733599999999997,0.0026304999999999996
|
112 |
+
hidden,saturation,saturation_factor_1.5,Visual,28.53894853782654,0.94601668902,0.07099743086658418,0.95834375,-7.99798803696701,0.541,0.0,0.011136600000000002,0.11637819999999999,0.022526499999999998,0.0024262
|
113 |
+
hidden,saturation,saturation_factor_2,Visual,23.863983478546142,0.893267175,0.10509758074954152,0.9626875,-8.198485659421427,0.587,0.0,0.0119064,0.12104259999999997,0.023869399999999995,0.0024253
|
114 |
+
hidden,sharpness,sharpness_factor_1.5,Visual,33.91716563034058,0.97022058575,0.06683097404614091,0.9565,-7.897718003173097,0.48,0.0,0.011433699999999998,0.1169576,0.022681899999999998,0.002593
|
115 |
+
hidden,sharpness,sharpness_factor_2,Visual,30.043136520385744,0.9452485202400001,0.0955756522230804,0.9566875,-7.898313902122441,0.474,0.0,0.0117193,0.11878699999999999,0.0235555,0.0026398999999999993
|
116 |
+
invismark,brightness,brightness_factor_1.5,Visual,14.738342275619507,0.87701128767,0.12574041003361344,0.9217381114959717,-16.870595611317132,0.564,0.0,0.014522300000000002,0.115453,0.027938800000000003,0.0023911
|
117 |
+
invismark,brightness,brightness_factor_2,Visual,10.926432598114014,0.7333982691700001,0.24976269207894802,0.8870238243937493,-14.34283482516149,0.371,0.0,0.014733399999999999,0.11640390000000002,0.027884,0.0023564000000000002
|
118 |
+
invismark,center_crop,scale_0.1,Geometric,,,,0.504190485805273,-0.41988612053084645,0.0,0.0,0.0077372,0.0,0.015672600000000002,0.0022518000000000004
|
119 |
+
invismark,center_crop,scale_0.2,Geometric,,,,0.5263333438932896,-0.6297731029618481,0.0,0.0,0.008647900000000004,0.0,0.017333900000000003,0.0021893
|
120 |
+
invismark,center_crop,scale_0.5,Geometric,,,,0.7017738223075867,-6.349929769617189,0.106,0.0,0.010717399999999998,0.0,0.021571100000000003,0.0022503
|
121 |
+
invismark,collage,scale_0.1,Inpainting,-2.2717801971435545,0.15258344491500003,0.7485640191435814,0.6715714416205883,-3.9067390915672293,0.005,0.0,0.013112500000000001,0.1161422,0.0262442,0.0033128000000000003
|
122 |
+
invismark,comb,default,Mixed,,,,0.5207976287901401,-0.7423868250004568,0.0,0.0,0.0099893,0.0,0.020150300000000003,0.013827200000000001
|
123 |
+
invismark,contrast,contrast_factor_1.5,Visual,21.284102626800536,0.8295019183,0.08798286745883524,0.9293214450478554,-17.359351795808255,0.583,0.0,0.013177700000000002,0.11486100000000002,0.026334700000000003,0.0024246999999999997
|
124 |
+
invismark,contrast,contrast_factor_2,Visual,17.240934774398802,0.71059349919,0.17467144411057234,0.9044762061834335,-15.378894959062933,0.439,0.0,0.0140256,0.1169982,0.028518500000000002,0.0024259
|
125 |
+
invismark,gaussian_blur,kernel_size_17,Visual,22.977614444732666,0.7336594663000001,0.46859607407450676,0.630976201236248,-4.88192924623468,0.138,0.0,0.0135907,0.1167086,0.026984700000000004,0.0027131
|
126 |
+
invismark,gaussian_blur,kernel_size_3,Visual,29.54929346084595,0.92676824657,0.14022700368985533,0.946142874956131,-18.774471721181644,0.742,0.0,0.013097200000000002,0.1160889,0.026771100000000003,0.0027396000000000005
|
127 |
+
invismark,hflip,default,Geometric,,,,0.9410476362109185,-18.36003269363746,0.713,0.0,0.0131719,0.0,0.0264494,0.0022329000000000003
|
128 |
+
invismark,hue,hue_factor_-0.1,Visual,27.01629251098633,0.96224084741,0.11988744892820251,0.9269523967504502,-17.09118743325101,0.577,0.0,0.01045,0.11923030000000001,0.020155799999999998,0.0039475
|
129 |
+
invismark,hue,hue_factor_0.1,Visual,27.031705299377442,0.96727936293,0.12164110924972919,0.9242023964524269,-16.895729777224606,0.545,0.0,0.009856299999999998,0.119536,0.019549,0.0038695
|
130 |
+
invismark,jpeg,quality_factor_40,Compression,29.48294907569885,0.91550242827,0.19326017789542674,0.5046190570294857,-0.4287540272089966,0.0,0.0,0.013161,0.1154166,0.0264601,0.0212822
|
131 |
+
invismark,jpeg,quality_factor_80,Compression,32.96638896179199,0.95642980775,0.09412649696320295,0.5962381073236466,-2.7460936200689785,0.029,0.0,0.0130851,0.1165092,0.026442500000000004,0.022693299999999996
|
132 |
+
invismark,median_filter,kernel_size_3,Visual,,,,0.9445952557325363,-18.64258300141059,0.723,0.0,0.013303899999999999,0.0,0.026676199999999997,0.0030442000000000004
|
133 |
+
invismark,median_filter,kernel_size_7,Visual,,,,0.937821446120739,-18.06399662769626,0.672,0.0,0.0158664,0.0,0.029966400000000004,0.004986599999999999
|
134 |
+
invismark,none,default,None,48.622152503967285,0.9985117812900001,0.0021112090940005146,0.9460357320904732,-18.775607450342015,0.74,0.0,0.0132579,0.11887980000000001,0.0264375,0.0021634000000000002
|
135 |
+
invismark,overlay_text,default,Inpainting,26.609479709625244,0.98131364282,0.037218111069872974,0.9439285893440247,-18.59862668056303,0.732,0.0,0.013085699999999999,0.11834510000000001,0.026246699999999998,0.020623600000000002
|
136 |
+
invismark,perspective,distortion_scale_0.1,Geometric,,,,0.9295595407485961,-17.44331711677961,0.613,0.0,0.0130899,0.0,0.026438200000000002,0.0033
|
137 |
+
invismark,perspective,distortion_scale_0.5,Geometric,,,,0.5367262020111084,-1.0716648781015674,0.009,0.0,0.0130061,0.0,0.0261629,0.0031957000000000005
|
138 |
+
invismark,proportion,prop_0.1,Geometric,,,,0.7994881105422974,-8.199109844695037,0.037,0.0,0.013233800000000002,0.0,0.026556399999999997,0.0023561000000000003
|
139 |
+
invismark,resize,scale_0.1,Geometric,,,,0.9342381118834019,-18.00090341700723,0.718,0.0,0.007659700000000003,0.0,0.015326800000000002,0.0022634
|
140 |
+
invismark,resize,scale_0.5,Geometric,,,,0.9461904942393303,-18.784772085560732,0.74,0.0,0.009988399999999998,0.0,0.020179,0.0022713
|
141 |
+
invismark,rotate,angle_10,Geometric,,,,0.7906428708434105,-9.433997016934267,0.172,0.0,0.0132085,0.0,0.0265561,0.0026880999999999997
|
142 |
+
invismark,saturation,saturation_factor_1.5,Visual,30.167457122802734,0.97049209176,0.02039245542581193,0.9434762079119682,-18.561493958574186,0.713,0.0,0.015084900000000002,0.1171526,0.0282834,0.0024073
|
143 |
+
invismark,saturation,saturation_factor_2,Visual,24.94753152656555,0.9273588591799999,0.05185797966807149,0.939928588449955,-18.268050526190144,0.683,0.0,0.0131024,0.11664170000000001,0.026349700000000007,0.0023942
|
144 |
+
invismark,sharpness,sharpness_factor_1.5,Visual,36.77891961669922,0.9896274905800001,0.018068040760233998,0.9453095412254333,-18.713304501004895,0.727,0.0,0.0131716,0.1163315,0.0263789,0.0026026999999999995
|
145 |
+
invismark,sharpness,sharpness_factor_2,Visual,31.412074157714844,0.96876730805,0.04722047738730908,0.9447023984193802,-18.665347708247868,0.716,0.0,0.013499800000000001,0.11553030000000002,0.026700400000000003,0.0025253
|
146 |
+
mbrs_jit,brightness,brightness_factor_1.5,Visual,14.794059349060058,0.8806199334199999,0.1361859868131578,0.9291833801269531,-50.020756475197636,0.516,0.0,0.009025,0.1187098,0.018179899999999995,0.0023442000000000003
|
147 |
+
mbrs_jit,brightness,brightness_factor_2,Visual,10.971753702163696,0.73978515945,0.25749551785737274,0.8711417121887207,-37.18011360197734,0.361,0.0,0.009268799999999999,0.11902309999999999,0.0183737,0.0022317
|
148 |
+
mbrs_jit,center_crop,scale_0.1,Geometric,,,,0.49892086279392245,-0.3992944758629108,0.0,0.0,0.0039055,0.0,0.0080086,0.0022259000000000003
|
149 |
+
mbrs_jit,center_crop,scale_0.2,Geometric,,,,0.5015000296831131,-0.4163618514094413,0.0,0.001,0.0046491,0.0,0.009515000000000001,0.0022262000000000002
|
150 |
+
mbrs_jit,center_crop,scale_0.5,Geometric,,,,0.501454195767641,-0.42976865186104724,0.0,0.0,0.0067247,0.0,0.013626899999999999,0.0022267999999999997
|
151 |
+
mbrs_jit,collage,scale_0.1,Inpainting,-2.2705446701049805,0.153908827451,0.7493265954256058,0.5522625272870064,-1.4061028906068083,0.0,0.0,0.009075,0.1234314,0.018154,0.0033933
|
152 |
+
mbrs_jit,comb,default,Mixed,,,,0.5007083617448806,-0.4235272262698103,0.0,0.0,0.006024700000000001,0.0,0.0122516,0.0133933
|
153 |
+
mbrs_jit,contrast,contrast_factor_1.5,Visual,21.20251899719238,0.8252890588499999,0.0998312968686223,0.9326958803534507,-50.13676659865939,0.48,0.0,0.0090442,0.11767160000000002,0.018091499999999996,0.0024246999999999997
|
154 |
+
mbrs_jit,contrast,contrast_factor_2,Visual,17.203935625076294,0.7074689942600001,0.18483599698543549,0.8948125464320182,-41.165277216518675,0.369,0.0,0.0089817,0.11779740000000001,0.0180601,0.0024249999999999996
|
155 |
+
mbrs_jit,gaussian_blur,kernel_size_17,Visual,22.99119821166992,0.7347000718300001,0.4694867573082447,0.7640250397324562,-18.881354375187044,0.235,0.0,0.009020399999999998,0.118628,0.0181268,0.0027277
|
156 |
+
mbrs_jit,gaussian_blur,kernel_size_3,Visual,29.506669797897338,0.9261319254100001,0.149008793592453,0.9788875494599343,-63.19926317503318,0.774,0.0,0.0089814,0.1200953,0.018237299999999998,0.0026942
|
157 |
+
mbrs_jit,hflip,default,Geometric,,,,0.49552919510006904,-0.4307810747120268,0.005,0.0,0.0089933,0.0,0.018475900000000003,0.0022728
|
158 |
+
mbrs_jit,hue,hue_factor_-0.1,Visual,26.80436898612976,0.96080882581,0.13122530694911255,0.9757167153954506,-62.12744554865094,0.77,0.0,0.005545400000000001,0.1220198,0.0112091,0.0042026
|
159 |
+
mbrs_jit,hue,hue_factor_0.1,Visual,26.853628866195677,0.96608248797,0.13202814944228158,0.977983382999897,-62.93878781407436,0.769,0.0,0.005736299999999999,0.1178799,0.0113598,0.0038125
|
160 |
+
mbrs_jit,jpeg,quality_factor_40,Compression,29.422522090911865,0.91454193763,0.19919137293100356,0.9586042170524597,-56.5557176870814,0.589,0.0,0.008929600000000001,0.12004820000000002,0.018063499999999996,0.0202802
|
161 |
+
mbrs_jit,jpeg,quality_factor_80,Compression,32.79868677711487,0.95503525658,0.10404237950406968,0.9818833784461022,-64.56721281845707,0.814,0.0,0.008924399999999999,0.12191490000000002,0.018105200000000002,0.021677599999999998
|
162 |
+
mbrs_jit,median_filter,kernel_size_3,Visual,,,,0.9683000485897064,-59.69739855062012,0.684,0.0,0.0090183,0.0,0.018219299999999997,0.003083200000000001
|
163 |
+
mbrs_jit,median_filter,kernel_size_7,Visual,,,,0.8706125450134278,-35.792431247810356,0.338,0.0,0.0090183,0.0,0.018343400000000003,0.0049427
|
164 |
+
mbrs_jit,none,default,None,45.01749309921264,0.99740643931,0.016292677354300393,0.9885667086839676,-66.96926444381546,0.856,0.0,0.013110100000000001,0.13664420000000002,0.023291200000000005,0.00216
|
165 |
+
mbrs_jit,overlay_text,default,Inpainting,26.574565769195555,0.98022422642,0.05075947973690927,0.9841042175889015,-65.03088446124899,0.856,0.0,0.009039100000000001,0.1179907,0.0181108,0.020686100000000002
|
166 |
+
mbrs_jit,perspective,distortion_scale_0.1,Geometric,,,,0.5033708624839782,-0.4569927616268258,0.0,0.0,0.0090012,0.0,0.0182141,0.0032088
|
167 |
+
mbrs_jit,perspective,distortion_scale_0.5,Geometric,,,,0.4955958615243435,-0.37052302701501766,0.0,0.0,0.009051199999999999,0.0,0.0182537,0.003175
|
168 |
+
mbrs_jit,proportion,prop_0.1,Geometric,,,,0.5605291949212551,-1.6282437737911375,0.0,0.0,0.0090122,0.0,0.0183227,0.0023582
|
169 |
+
mbrs_jit,resize,scale_0.1,Geometric,,,,0.8911417133808136,-39.98036366345572,0.465,0.0,0.0037305000000000007,0.0,0.007634800000000001,0.0023143
|
170 |
+
mbrs_jit,resize,scale_0.5,Geometric,,,,0.9818125479221343,-64.30701206601205,0.811,0.0,0.0060625,0.0,0.0124553,0.0022524
|
171 |
+
mbrs_jit,rotate,angle_10,Geometric,,,,0.5004791958630085,-0.4171406005639453,0.0,0.0,0.008968299999999998,0.0,0.0181556,0.0026779999999999994
|
172 |
+
mbrs_jit,saturation,saturation_factor_1.5,Visual,29.944995527267455,0.96819170549,0.03296007356466726,0.988458377122879,-66.92096639983883,0.851,0.0,0.0089244,0.1180723,0.018029600000000003,0.0024332
|
173 |
+
mbrs_jit,saturation,saturation_factor_2,Visual,24.846499814987183,0.9250432067100001,0.06301208788575605,0.9868125441670418,-66.34252351918782,0.849,0.0,0.0090454,0.12097819999999998,0.0181308,0.0023625000000000005
|
174 |
+
mbrs_jit,sharpness,sharpness_factor_1.5,Visual,36.37889844322205,0.9884405183599999,0.031173059170134364,0.9886000419855118,-67.01102738217817,0.857,0.0,0.0096068,0.1184642,0.0194337,0.0026605999999999995
|
175 |
+
mbrs_jit,sharpness,sharpness_factor_2,Visual,31.286748254776,0.96757572166,0.059012719467282294,0.9885625417232513,-67.03232498555793,0.862,0.0,0.009006400000000001,0.1183642,0.018123199999999996,0.0025877999999999995
|
176 |
+
ssl,brightness,brightness_factor_1.5,Visual,14.666704242706299,0.85775743702,0.17534192876145244,0.9898125,-9.208813414172605,0.861,0.0,0.011607199999999998,0.1177051,0.023011499999999997,0.0022622
|
177 |
+
ssl,brightness,brightness_factor_2,Visual,10.894122716903686,0.71435831421,0.2934588051736355,0.9783125,-8.798077512801068,0.788,0.0,0.011104,0.1173177,0.0223333,0.0023755999999999994
|
178 |
+
ssl,center_crop,scale_0.1,Geometric,,,,0.9768125,-8.678997241194127,0.735,0.0,0.0025133,0.0,0.0048871,0.0021497
|
179 |
+
ssl,center_crop,scale_0.2,Geometric,,,,0.98715625,-9.084324608293683,0.831,0.0,0.0040173,0.0,0.0072225,0.0021552
|
180 |
+
ssl,center_crop,scale_0.5,Geometric,,,,0.99225,-9.29499658794747,0.873,0.0,0.0064994,0.0,0.013135099999999999,0.0022311
|
181 |
+
ssl,collage,scale_0.1,Inpainting,-2.262250091552734,0.15156199658000002,0.7516803656816482,0.8246875,-4.456688032299573,0.199,0.0,0.012288599999999998,0.1190981,0.0239294,0.0033125
|
182 |
+
ssl,comb,default,Mixed,,,,0.9386875,-7.305030885715763,0.38,0.0,0.0066,0.0,0.013726099999999998,0.016093899999999998
|
183 |
+
ssl,contrast,contrast_factor_1.5,Visual,21.090113580703736,0.8190682861699999,0.12430819328129292,0.990875,-9.240701388893402,0.868,0.0,0.011350099999999998,0.12024580000000001,0.0235158,0.0024878
|
184 |
+
ssl,contrast,contrast_factor_2,Visual,17.152819324493407,0.7011987689600001,0.20334376034140586,0.9835,-8.94856919966525,0.815,0.0,0.0116858,0.1170778,0.022949599999999997,0.0023877999999999994
|
185 |
+
ssl,gaussian_blur,kernel_size_17,Visual,23.00141637992859,0.73342743876,0.46816167458891866,0.51284375,-0.43358824860475326,0.0,0.0,0.010992100000000001,0.11853549999999999,0.0221647,0.002782
|
186 |
+
ssl,gaussian_blur,kernel_size_3,Visual,29.341009077072144,0.9207692349,0.1559926134981215,0.93284375,-7.012409162301727,0.379,0.0,0.011043299999999999,0.1164943,0.022258599999999996,0.0027701
|
187 |
+
ssl,hflip,default,Geometric,,,,0.53434375,-0.5313603406038664,0.0,0.0,0.011164,0.0,0.022360999999999995,0.0022149
|
188 |
+
ssl,hue,hue_factor_-0.1,Visual,26.20397741317749,0.9463060623799999,0.163308296488598,0.97959375,-8.757611514361445,0.729,0.0,0.0077664,0.11858,0.015617599999999999,0.0038316999999999995
|
189 |
+
ssl,hue,hue_factor_0.1,Visual,26.22026176071167,0.95125071392,0.16717887587472796,0.986,-9.036309155152695,0.794,0.0,0.009665199999999999,0.12042879999999999,0.0176085,0.0039002999999999998
|
190 |
+
ssl,jpeg,quality_factor_40,Compression,29.317452054977416,0.9114407704299999,0.2018083140105009,0.806375,-3.8483989482909755,0.044,0.0,0.0111357,0.1179114,0.022425399999999998,0.020991799999999998
|
191 |
+
ssl,jpeg,quality_factor_80,Compression,32.365828380584716,0.9493290624199999,0.11406618077680468,0.94215625,-7.342269345541497,0.36,0.0,0.0112431,0.1210589,0.0227689,0.023215999999999997
|
192 |
+
ssl,median_filter,kernel_size_3,Visual,,,,0.9938125,-9.355810893541028,0.891,0.0,0.0123576,0.0,0.0240618,0.0030770999999999997
|
193 |
+
ssl,median_filter,kernel_size_7,Visual,,,,0.88415625,-5.55413173196328,0.2,0.0,0.0113427,0.0,0.0229303,0.0049667999999999995
|
194 |
+
ssl,none,default,None,37.75746123123169,0.98352955177,0.05662920736055821,0.993875,-9.358633651540634,0.892,0.0,0.011422499999999999,0.1187183,0.0228569,0.0021622000000000004
|
195 |
+
ssl,overlay_text,default,Inpainting,26.284858444213867,0.96664741091,0.08865019478276372,0.99384375,-9.358064698163162,0.893,0.0,0.0110043,0.117299,0.022308899999999996,0.020749700000000003
|
196 |
+
ssl,perspective,distortion_scale_0.1,Geometric,,,,0.98803125,-9.126225580495474,0.82,0.0,0.0111043,0.0,0.022348599999999996,0.0032933000000000003
|
197 |
+
ssl,perspective,distortion_scale_0.5,Geometric,,,,0.884375,-5.816851749177662,0.265,0.001,0.011731499999999999,0.0,0.023035500000000004,0.0034295
|
198 |
+
ssl,proportion,prop_0.1,Geometric,,,,0.836875,-4.594338601331186,0.119,0.0,0.011123199999999998,0.0,0.022382100000000002,0.0023755999999999994
|
199 |
+
ssl,resize,scale_0.1,Geometric,,,,0.480625,-0.30077685691342126,0.0,0.0,0.0024989,0.0,0.0047035,0.0022058
|
200 |
+
ssl,resize,scale_0.5,Geometric,,,,0.79834375,-3.8352954961692602,0.084,0.0,0.0058119,0.0,0.0118095,0.0022506
|
201 |
+
ssl,rotate,angle_10,Geometric,,,,0.9216875,-6.704540234616244,0.305,0.0,0.0110619,0.0,0.0224101,0.0026637000000000006
|
202 |
+
ssl,saturation,saturation_factor_1.5,Visual,28.552481477737427,0.94877856186,0.07488102758303285,0.99359375,-9.346210404385907,0.896,0.0,0.0112018,0.11687199999999999,0.022391499999999998,0.0024197999999999993
|
203 |
+
ssl,saturation,saturation_factor_2,Visual,23.910604997634888,0.8984749926200001,0.1058227788284421,0.99365625,-9.347790890563363,0.896,0.0,0.0117848,0.11746529999999998,0.024530899999999998,0.0024058
|
204 |
+
ssl,sharpness,sharpness_factor_1.5,Visual,33.538280977249144,0.9699265181,0.07791425779834389,0.99359375,-9.345360278345975,0.887,0.0,0.012224199999999998,0.1180759,0.0238256,0.0025433
|
205 |
+
ssl,sharpness,sharpness_factor_2,Visual,29.78780319213867,0.94451763018,0.10809876059368252,0.99303125,-9.320970672262485,0.876,0.0,0.0110052,0.1169254,0.022236000000000002,0.0025881
|
206 |
+
trustmark,brightness,brightness_factor_1.5,Visual,14.797746950149536,0.8772074622699999,0.13106224421039223,0.9735,-8.87156538487166,0.87,0.017,0.012873800000000001,0.1184639,0.0252285,0.0023060999999999997
|
207 |
+
trustmark,brightness,brightness_factor_2,Visual,10.967200563430787,0.73551933821,0.25289407966285943,0.92015625,-7.316462404466016,0.612,0.022,0.0130118,0.1162128,0.02536,0.0023311
|
208 |
+
trustmark,center_crop,scale_0.1,Geometric,,,,0.49853125,-0.362972070852509,0.024,0.024,0.0114391,0.0,0.0185321,0.0021624999999999995
|
209 |
+
trustmark,center_crop,scale_0.2,Geometric,,,,0.50109375,-0.37706022653399907,0.025,0.033,0.011471600000000002,0.0,0.019470300000000003,0.002271
|
210 |
+
trustmark,center_crop,scale_0.5,Geometric,,,,0.5830625,-0.9233145066916311,0.015,0.027,0.011047000000000001,0.0,0.0216516,0.0023463000000000004
|
211 |
+
trustmark,collage,scale_0.1,Inpainting,-2.262478870391846,0.153151256997,0.7491333208680153,0.55215625,-0.6432707991983161,0.021,0.028,0.0128308,0.11817309999999999,0.025748800000000002,0.0034088000000000005
|
212 |
+
trustmark,comb,default,Mixed,,,,0.55740625,-0.7327267759795759,0.02,0.026,0.0103812,0.0,0.020571199999999998,0.014579
|
213 |
+
trustmark,contrast,contrast_factor_1.5,Visual,21.22028749847412,0.8260762013,0.09491565416008234,0.97665625,-8.88007288698107,0.849,0.029,0.012868299999999997,0.1179123,0.025302599999999998,0.0024433
|
214 |
+
trustmark,contrast,contrast_factor_2,Visual,17.216852909088136,0.7077482628699999,0.180330394577235,0.92528125,-7.392852184893115,0.605,0.024,0.014002299999999999,0.11858759999999999,0.0266977,0.0025331999999999998
|
215 |
+
trustmark,gaussian_blur,kernel_size_17,Visual,22.95456008529663,0.73257132756,0.4709335263669491,0.9975,-9.565699842340388,0.989,0.027,0.0127814,0.11717440000000001,0.0246055,0.0027695
|
216 |
+
trustmark,gaussian_blur,kernel_size_3,Visual,29.342174648284914,0.92420044224,0.1475478604696691,0.99978125,-9.624602853959406,0.998,0.018,0.013329100000000002,0.11571820000000001,0.025582,0.0028026999999999995
|
217 |
+
trustmark,hflip,default,Geometric,,,,0.999875,-9.628342347190188,0.999,0.016,0.013413399999999999,0.0,0.025798899999999996,0.0022058
|
218 |
+
trustmark,hue,hue_factor_-0.1,Visual,26.659574853897094,0.9596278155499999,0.12567418080149217,0.99890625,-9.599538603967973,0.994,0.023,0.0094128,0.11987419999999999,0.017830800000000004,0.0038683
|
219 |
+
trustmark,hue,hue_factor_0.1,Visual,26.680271739959718,0.96466628384,0.12753733341069892,0.99934375,-9.6082473390882,0.994,0.032,0.009896499999999999,0.1194752,0.019034299999999997,0.0038387
|
220 |
+
trustmark,jpeg,quality_factor_40,Compression,29.29385005950928,0.9128465758099998,0.19774762840569018,0.994125,-9.443292442445914,0.963,0.033,0.012949099999999998,0.11760290000000001,0.024939100000000002,0.0224959
|
221 |
+
trustmark,jpeg,quality_factor_80,Compression,32.549212696075436,0.95360632495,0.10035306259058416,0.9988125,-9.58921249128877,0.99,0.023,0.012716200000000002,0.1174732,0.0245303,0.0218363
|
222 |
+
trustmark,median_filter,kernel_size_3,Visual,,,,0.99890625,-9.61393852903663,0.998,0.025,0.012807000000000002,0.0,0.0246357,0.0029994
|
223 |
+
trustmark,median_filter,kernel_size_7,Visual,,,,0.99821875,-9.588934445709722,0.993,0.036,0.0128314,0.0,0.024765600000000002,0.0049686
|
224 |
+
trustmark,none,default,None,42.2213345451355,0.99585676234,0.01032034737977665,1.0,-9.632959861247398,1.0,0.035,0.013203900000000003,0.11655950000000001,0.0250909,0.0021698000000000004
|
225 |
+
trustmark,overlay_text,default,Inpainting,26.509072881698607,0.97872485392,0.04483264752291143,1.0,-9.632959861247398,1.0,0.021,0.0140841,0.1180175,0.0267732,0.0218657
|
226 |
+
trustmark,perspective,distortion_scale_0.1,Geometric,,,,0.93209375,-7.587544652395137,0.639,0.027,0.014885500000000001,0.0,0.027424,0.0035392000000000006
|
227 |
+
trustmark,perspective,distortion_scale_0.5,Geometric,,,,0.502,-0.3816433120333905,0.033,0.028,0.0138754,0.0,0.0267733,0.0032817000000000007
|
228 |
+
trustmark,proportion,prop_0.1,Geometric,,,,0.59259375,-0.9155222785098207,0.023,0.035,0.0129079,0.0,0.0259174,0.0023933
|
229 |
+
trustmark,resize,scale_0.1,Geometric,,,,0.50834375,-0.41025264537352857,0.019,0.024,0.007562800000000001,0.0,0.014404900000000002,0.0023701
|
230 |
+
trustmark,resize,scale_0.5,Geometric,,,,0.991,-9.443955472020585,0.978,0.023,0.0103108,0.0,0.019234300000000003,0.0023396
|
231 |
+
trustmark,rotate,angle_10,Geometric,,,,0.51853125,-0.44729028444282454,0.018,0.026,0.014100199999999998,0.0,0.027807099999999998,0.0027414
|
232 |
+
trustmark,saturation,saturation_factor_1.5,Visual,29.69855445289612,0.96744526765,0.027429696291452275,0.99959375,-9.620244889254721,0.998,0.026,0.0129253,0.1188082,0.024837799999999997,0.0023939
|
233 |
+
trustmark,saturation,saturation_factor_2,Visual,24.726748781204222,0.92450320485,0.05773347282549366,0.9988125,-9.595148644183382,0.993,0.031,0.0129342,0.11720070000000002,0.025221600000000004,0.0023819999999999996
|
234 |
+
trustmark,sharpness,sharpness_factor_1.5,Visual,35.8256508026123,0.9870943233099999,0.0245468912050128,1.0,-9.632959861247398,1.0,0.026,0.013113300000000001,0.1178609,0.0253425,0.0025359999999999996
|
235 |
+
trustmark,sharpness,sharpness_factor_2,Visual,31.106086637496947,0.9664032158499999,0.05236728109046817,0.99996875,-9.631441347307522,0.999,0.032,0.012927500000000001,0.1175815,0.025330500000000002,0.0025631
|
236 |
+
wam,brightness,brightness_factor_1.5,Visual,14.672207807540893,0.8655128466199999,0.16237908020615577,0.99965625,-9.620123013682628,1.0,0.039,0.009398900000000002,0.11825149999999998,0.0182699,0.002339
|
237 |
+
wam,brightness,brightness_factor_2,Visual,10.897510557174682,0.7239938314800001,0.2812343974113464,0.99865625,-9.58886769805988,1.0,0.118,0.00892,0.116314,0.017605400000000004,0.0023182999999999997
|
238 |
+
wam,center_crop,scale_0.1,Geometric,,,,0.73115625,-3.1154344100965408,0.924,0.029,0.0034852999999999998,0.0,0.006915200000000001,0.0022110000000000003
|
239 |
+
wam,center_crop,scale_0.2,Geometric,,,,0.96128125,-8.491957203316176,0.989,0.016,0.0041104,0.0,0.008510799999999999,0.002232
|
240 |
+
wam,center_crop,scale_0.5,Geometric,,,,0.99203125,-9.3842039418357,0.998,0.015,0.0061799,0.0,0.0125342,0.0022246999999999996
|
241 |
+
wam,collage,scale_0.1,Inpainting,-2.266400936126709,0.150992852677,0.7509078124165535,0.98928125,-9.231033772974063,0.999,0.727,0.008549700000000002,0.11729419999999999,0.0172299,0.0033697999999999996
|
242 |
+
wam,comb,default,Mixed,,,,0.95353125,-8.187348275275076,0.988,0.03,0.0065046999999999995,0.0,0.0121825,0.015962399999999998
|
243 |
+
wam,contrast,contrast_factor_1.5,Visual,21.097586919784547,0.82376825003,0.11690622131153941,0.99984375,-9.62618334013686,1.0,0.013,0.008498499999999999,0.11840220000000003,0.0171592,0.0024749999999999998
|
244 |
+
wam,contrast,contrast_factor_2,Visual,17.155871156692506,0.7053444779500001,0.19687655824422837,0.99953125,-9.612441393742374,1.0,0.028,0.0092228,0.11565819999999999,0.019978000000000003,0.0024688999999999996
|
245 |
+
wam,gaussian_blur,kernel_size_17,Visual,22.95761491012573,0.7311312484,0.4726328406482935,0.99896875,-9.586375780353464,1.0,0.009,0.008511900000000001,0.1175784,0.017191199999999997,0.0027689000000000004
|
246 |
+
wam,gaussian_blur,kernel_size_3,Visual,29.077282075881957,0.9184001717,0.16821790143474938,1.0,-9.632959861247398,1.0,0.011,0.008505500000000001,0.11813740000000002,0.017184800000000004,0.0027189
|
247 |
+
wam,hflip,default,Geometric,,,,0.99990625,-9.628404319427766,1.0,0.016,0.008607,0.0,0.017864800000000004,0.0021622000000000004
|
248 |
+
wam,hue,hue_factor_-0.1,Visual,26.14288458442688,0.9490712910899999,0.1619285793080926,0.9998125,-9.624162349815851,1.0,0.013,0.0051073,0.11874689999999999,0.010357000000000002,0.003894199999999999
|
249 |
+
wam,hue,hue_factor_0.1,Visual,26.128018869400023,0.95344312296,0.16993943024799227,0.99996875,-9.631441347307522,1.0,0.017,0.005118299999999999,0.12012980000000001,0.010380499999999999,0.003937499999999999
|
250 |
+
wam,jpeg,quality_factor_40,Compression,29.23654267692566,0.91142145463,0.20342829067260026,0.9893125,-9.250217390456019,0.999,0.015,0.008553100000000001,0.11742779999999998,0.0173516,0.021732599999999998
|
251 |
+
wam,jpeg,quality_factor_80,Compression,32.21726478385925,0.9502540023499999,0.1186315699070692,0.9996875,-9.618401866264062,1.0,0.013,0.008511,0.1177304,0.0172153,0.0241543
|
252 |
+
wam,median_filter,kernel_size_3,Visual,,,,0.99996875,-9.631441347307522,1.0,0.012,0.0085927,0.0,0.017314999999999997,0.0030805
|
253 |
+
wam,median_filter,kernel_size_7,Visual,,,,0.99990625,-9.628404319427766,1.0,0.014,0.0086174,0.0,0.0174321,0.004961299999999999
|
254 |
+
wam,none,default,None,38.230781982421874,0.98804717543,0.044977972767315806,1.0,-9.632959861247398,1.0,0.011,0.0086198,0.11807740000000001,0.0173055,0.0022228
|
255 |
+
wam,overlay_text,default,Inpainting,26.324783542633057,0.97102511774,0.07685666616633534,1.0,-9.632959861247398,1.0,0.004,0.009522099999999999,0.11790919999999999,0.018214200000000003,0.022677600000000003
|
256 |
+
wam,perspective,distortion_scale_0.1,Geometric,,,,0.99946875,-9.610509453662228,1.0,0.016,0.0098468,0.0,0.019868,0.0032359999999999997
|
257 |
+
wam,perspective,distortion_scale_0.5,Geometric,,,,0.85396875,-5.6154813489614,0.905,0.008,0.0102,0.0,0.0189043,0.0033667000000000002
|
258 |
+
wam,proportion,prop_0.1,Geometric,,,,0.99559375,-9.44765893022657,1.0,0.011,0.0085811,0.0,0.017270499999999998,0.0023768
|
259 |
+
wam,resize,scale_0.1,Geometric,,,,0.999875,-9.626885805487888,1.0,0.012,0.0030872,0.0,0.0063238,0.0022122
|
260 |
+
wam,resize,scale_0.5,Geometric,,,,1.0,-9.632959861247398,1.0,0.011,0.0054988,0.0,0.011165600000000001,0.0022557999999999996
|
261 |
+
wam,rotate,angle_10,Geometric,,,,0.8441875,-4.868862999109111,1.0,0.009,0.0099483,0.0,0.0195273,0.0027067
|
262 |
+
wam,saturation,saturation_factor_1.5,Visual,28.340535629272463,0.95163577627,0.0824107708670199,1.0,-9.632959861247398,1.0,0.016,0.008511900000000001,0.1174159,0.017166800000000003,0.0023759
|
263 |
+
wam,saturation,saturation_factor_2,Visual,23.703161268234254,0.90095248591,0.12500894116982816,1.0,-9.632959861247398,1.0,0.03,0.0085302,0.11879369999999999,0.017209200000000004,0.0024134
|
264 |
+
wam,sharpness,sharpness_factor_1.5,Visual,34.35579618835449,0.97884988797,0.05415955503284931,1.0,-9.632959861247398,1.0,0.012,0.009009600000000001,0.1190259,0.018506599999999998,0.002568
|
265 |
+
wam,sharpness,sharpness_factor_2,Visual,30.462276391983032,0.95786161128,0.07630361559614539,1.0,-9.632959861247398,1.0,0.01,0.0090291,0.11821040000000001,0.017744700000000002,0.0026834999999999997
|
backend/data/voxpopuli_1k_audio_benchmark.csv
ADDED
@@ -0,0 +1,317 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
model,attack_name,attack_variant,cat,snr,sisnr,stoi,pesq,bit_acc,log10_p_value,TPR,FPR,decoder_time
|
2 |
+
audioseal,aac_compression,bitrate_128k,Compression,-2.9830347065,-32.95352837944031,0.4664224487543106,4.098213049650192,0.6494375,-1.2334972956936,0.815,0.0,0.002149062156677246
|
3 |
+
audioseal,aac_compression,bitrate_12k,Compression,-2.9823490155999997,-32.50592269706726,0.46959361523389814,3.1339561458826064,0.6090625,-0.9478815484181471,0.452,0.0,0.0024324698448181152
|
4 |
+
audioseal,aac_compression,bitrate_24k,Compression,-2.9819135489,-33.05287943744659,0.4759108220934868,3.425803221821785,0.6239375,-1.0456914125697212,0.569,0.0,0.0021468307971954344
|
5 |
+
audioseal,aac_compression,bitrate_256k,Compression,-2.9830347065,-32.95352837944031,0.4664224487543106,4.098213049650192,0.6494375,-1.2334972956936,0.815,0.0,0.002158302545547485
|
6 |
+
audioseal,aac_compression,bitrate_32k,Compression,-2.9812310468,-32.815688985824586,0.47089322909712794,3.751123477935791,0.6356875,-1.1255123017390227,0.672,0.0,0.0021524655818939207
|
7 |
+
audioseal,aac_compression,bitrate_64k,Compression,-2.9829755886000004,-32.9600377368927,0.46681530892848966,4.07449337553978,0.650375,-1.2262760183662826,0.804,0.0,0.0021389915943145752
|
8 |
+
audioseal,bandpass_filter,default,AmplitudeDomain,24.105980387,24.086872463226317,0.9983422924280166,4.446569070577621,1.0,-4.816479930623699,1.0,0.0,0.002690896987915039
|
9 |
+
audioseal,boost_audio,amount_10,AmplitudeDomain,27.490898249999997,27.523548038482666,0.9983003395795822,4.478912364006042,1.0,-4.816479930623699,1.0,0.0,0.00295473051071167
|
10 |
+
audioseal,boost_audio,amount_20,AmplitudeDomain,27.490898196,27.52354825401306,0.9983003395795822,4.478912389755249,1.0,-4.816479930623699,1.0,0.0,0.002136138677597046
|
11 |
+
audioseal,boost_audio,amount_30,AmplitudeDomain,27.490898296,27.523548526763918,0.9983003396987915,4.478912400722503,1.0,-4.816479930623699,1.0,0.0,0.0021405029296875
|
12 |
+
audioseal,boost_audio,amount_40,AmplitudeDomain,27.490898203999997,27.52354863548279,0.9983003397583962,4.478912075281143,1.0,-4.816479930623699,1.0,0.0,0.0021726014614105223
|
13 |
+
audioseal,boost_audio,amount_50,AmplitudeDomain,27.490898357,27.523548692703248,0.9983003396391869,4.478912303447723,1.0,-4.816479930623699,1.0,0.0,0.0021609702110290526
|
14 |
+
audioseal,boost_audio,amount_60,AmplitudeDomain,27.490898243,27.52354888153076,0.9983003396987915,4.478912333250046,1.0,-4.816479930623699,1.0,0.0,0.0021722843647003173
|
15 |
+
audioseal,boost_audio,amount_70,AmplitudeDomain,27.490898337999997,27.523548919677733,0.9983003395795822,4.478912398815155,1.0,-4.816479930623699,1.0,0.0,0.00222796368598938
|
16 |
+
audioseal,boost_audio,amount_80,AmplitudeDomain,27.490898214,27.52354895591736,0.9983003397583962,4.478912457942963,1.0,-4.816479930623699,1.0,0.0,0.002206225872039795
|
17 |
+
audioseal,boost_audio,amount_90,AmplitudeDomain,27.490898247999997,27.523549072265624,0.9983003395795822,4.478912031412125,1.0,-4.816479930623699,1.0,0.0,0.002185866117477417
|
18 |
+
audioseal,duck_audio,amount_10,AmplitudeDomain,27.490898214,27.523547246932985,0.9983003397583962,4.478912457942963,1.0,-4.816479930623699,1.0,0.0,0.0030705716609954834
|
19 |
+
audioseal,duck_audio,amount_20,AmplitudeDomain,27.490898243,27.52354668235779,0.9983003396987915,4.478912333250046,1.0,-4.816479930623699,1.0,0.0,0.002166616439819336
|
20 |
+
audioseal,duck_audio,amount_30,AmplitudeDomain,27.490898203999997,27.52354575920105,0.9983003397583962,4.478912075281143,1.0,-4.816479930623699,1.0,0.0,0.002219524621963501
|
21 |
+
audioseal,duck_audio,amount_40,AmplitudeDomain,27.490898196,27.523544473648073,0.9983003395795822,4.478912389755249,1.0,-4.816479930623699,1.0,0.0,0.0021631605625152587
|
22 |
+
audioseal,duck_audio,amount_50,AmplitudeDomain,27.490897804,27.52354214668274,0.9983003396391869,4.478912019014358,1.0,-4.816479930623699,1.0,0.0,0.002237513303756714
|
23 |
+
audioseal,duck_audio,amount_60,AmplitudeDomain,27.490898243,27.52353792953491,0.9983003396987915,4.478912333250046,1.0,-4.816479930623699,0.999,0.0,0.00218328070640564
|
24 |
+
audioseal,duck_audio,amount_70,AmplitudeDomain,27.490898196,27.523528928756715,0.9983003395795822,4.478912389755249,0.99925,-4.80171454356716,0.979,0.0,0.0022133216857910154
|
25 |
+
audioseal,duck_audio,amount_80,AmplitudeDomain,27.490898243,27.523503158569337,0.9983003396987915,4.478912333250046,0.992875,-4.681271172155415,0.954,0.0,0.002189488649368286
|
26 |
+
audioseal,duck_audio,amount_90,AmplitudeDomain,27.490898243,27.523364263534546,0.9983003396987915,4.478912333250046,0.922125,-3.533769068997174,0.778,0.0,0.0021596860885620115
|
27 |
+
audioseal,echo,volume_duration_0.1_0.1,TimeDomain,27.38271043,27.42094648551941,0.9981907363533974,4.485064728021622,0.999875,-4.814019032780943,1.0,0.0,0.002918574810028076
|
28 |
+
audioseal,echo,volume_duration_0.1_0.2,TimeDomain,27.400470629,27.43758633041382,0.9982369958758354,4.484100021839142,0.999875,-4.814019032780943,1.0,0.0,0.0021556644439697267
|
29 |
+
audioseal,echo,volume_duration_0.1_0.3,TimeDomain,27.410227604,27.446123653411867,0.9982753695249558,4.4851054630279545,0.999625,-4.80942141437103,1.0,0.0,0.002166072368621826
|
30 |
+
audioseal,echo,volume_duration_0.1_0.4,TimeDomain,27.427147618999996,27.462004795074463,0.9983133244514465,4.484032229423523,0.9998125,-4.8127885838595645,1.0,0.0,0.0021607458591461183
|
31 |
+
audioseal,echo,volume_duration_0.1_0.5,TimeDomain,27.428097571,27.461722919464112,0.9983384850025177,4.484593273878097,0.9995625,-4.807866788174051,1.0,0.0,0.0022092573642730714
|
32 |
+
audioseal,echo,volume_duration_0.2_0.1,TimeDomain,27.288067634,27.332195444107057,0.9980883614420891,4.48613211941719,0.9996875,-4.810651863292408,1.0,0.0,0.0021887311935424804
|
33 |
+
audioseal,echo,volume_duration_0.2_0.2,TimeDomain,27.317039628,27.36012978363037,0.9982102920413017,4.484641200780868,0.999875,-4.814019032780943,1.0,0.0,0.0021866095066070557
|
34 |
+
audioseal,echo,volume_duration_0.2_0.3,TimeDomain,27.329390582,27.371120742797853,0.998303088605404,4.486519741296768,0.9995625,-4.808190965449652,1.0,0.0,0.002152219533920288
|
35 |
+
audioseal,echo,volume_duration_0.2_0.4,TimeDomain,27.350817664,27.391469942092897,0.9983834694623948,4.484806433916092,0.9995,-4.807484453238709,1.0,0.0,0.0021892125606536865
|
36 |
+
audioseal,echo,volume_duration_0.2_0.5,TimeDomain,27.354363657,27.3937366104126,0.9984264469146729,4.48524210190773,0.999125,-4.799253645724404,1.0,0.0,0.002176964044570923
|
37 |
+
audioseal,echo,volume_duration_0.3_0.1,TimeDomain,27.207146502999997,27.25630700492859,0.9979700927138329,4.48573874926567,0.9996875,-4.810651863292408,1.0,0.0,0.0021867353916168214
|
38 |
+
audioseal,echo,volume_duration_0.3_0.2,TimeDomain,27.245651265,27.293885515213013,0.9981613897681236,4.4846069147586824,0.999875,-4.814019032780943,1.0,0.0,0.002175506353378296
|
39 |
+
audioseal,echo,volume_duration_0.3_0.3,TimeDomain,27.260362886000003,27.307129642486572,0.9983069443702698,4.4854503750801085,0.9993125,-4.803269169764138,1.0,0.0,0.0021895740032196044
|
40 |
+
audioseal,echo,volume_duration_0.3_0.4,TimeDomain,27.285992615999998,27.331688932418825,0.9984190352559089,4.484202446460724,0.999125,-4.80010175971044,1.0,0.0,0.002157371759414673
|
41 |
+
audioseal,echo,volume_duration_0.3_0.5,TimeDomain,27.291818487999997,27.33625043487549,0.9984725059270859,4.4837423572540285,0.9986875,-4.790964680550356,1.0,0.0,0.0021606721878051757
|
42 |
+
audioseal,echo,volume_duration_0.4_0.1,TimeDomain,27.141785306,27.19504215812683,0.9978444098234177,4.484591067075729,0.9994375,-4.805730067606896,1.0,0.0,0.0021922059059143067
|
43 |
+
audioseal,echo,volume_duration_0.4_0.2,TimeDomain,27.188033658000002,27.240488939285278,0.9980980061888695,4.483409338235855,0.999875,-4.814019032780943,1.0,0.0,0.002151975870132446
|
44 |
+
audioseal,echo,volume_duration_0.4_0.3,TimeDomain,27.204829087,27.255744396209717,0.9982951900959015,4.480680451512336,0.999,-4.797765279708448,1.0,0.0,0.002143540620803833
|
45 |
+
audioseal,echo,volume_duration_0.4_0.4,TimeDomain,27.234239684,27.284136878967285,0.9984392393827438,4.483283754587173,0.9988125,-4.793949515103549,1.0,0.0,0.002160638093948364
|
46 |
+
audioseal,echo,volume_duration_0.4_0.5,TimeDomain,27.241997134,27.290705503463744,0.9984974927306175,4.483868525981903,0.998625,-4.7897342316289775,1.0,0.0,0.0021663377285003663
|
47 |
+
audioseal,echo,volume_duration_0.5_0.1,TimeDomain,27.092017693000003,27.14845722961426,0.9977213858962058,4.484328577041626,0.999375,-4.804499618685517,1.0,0.0,0.0021957993507385255
|
48 |
+
audioseal,echo,volume_duration_0.5_0.2,TimeDomain,27.144288491,27.20005023574829,0.9980325457453728,4.483051059007645,0.9998125,-4.8127885838595645,1.0,0.0,0.002200569152832031
|
49 |
+
audioseal,echo,volume_duration_0.5_0.3,TimeDomain,27.162876807999996,27.217060104370116,0.9982789071202278,4.483178278446197,0.99875,-4.792843484022935,1.0,0.0,0.0021575536727905273
|
50 |
+
audioseal,echo,volume_duration_0.5_0.4,TimeDomain,27.195611213,27.248867986679077,0.9984507187008858,4.482154030561447,0.998625,-4.790258168339414,1.0,0.0,0.002161156415939331
|
51 |
+
audioseal,echo,volume_duration_0.5_0.5,TimeDomain,27.204978742999998,27.257174882888794,0.998510359942913,4.482537386655808,0.9985,-4.787273333786221,1.0,0.0,0.002189789295196533
|
52 |
+
audioseal,highpass_filter,cutoff_freq_1000,AmplitudeDomain,21.182328602000002,21.14068291568756,0.9955073400004003,4.398876127243042,0.8926875,-3.0257773361566067,1.0,0.0,0.002208060026168823
|
53 |
+
audioseal,highpass_filter,cutoff_freq_1500,AmplitudeDomain,54.08035937,54.073997226715086,0.9985681285262108,4.615612954139709,0.49625,-0.3276821801025292,0.0,0.0,0.0021800878047943113
|
54 |
+
audioseal,highpass_filter,cutoff_freq_2000,AmplitudeDomain,61.072976263,61.03007199859619,0.9980136765837669,4.629414543151856,0.4955,-0.3302751821125191,0.0,0.0,0.002165684223175049
|
55 |
+
audioseal,highpass_filter,cutoff_freq_4000,AmplitudeDomain,67.98095701,67.0710198020935,0.9990599103569985,4.30457623898983,0.4946875,-0.32844608888249216,0.0,0.0,0.0021707069873809813
|
56 |
+
audioseal,highpass_filter,cutoff_freq_500,AmplitudeDomain,24.25659867,24.238133308410646,0.9983416667580605,4.4466781709194185,1.0,-4.816479930623699,1.0,0.0,0.0029696333408355713
|
57 |
+
audioseal,highpass_filter,cutoff_freq_8000,AmplitudeDomain,6.2169019606,4.755762373292782e-06,0.9252754502296447,3.0075866129398348,0.5008125,-0.3444576990574476,0.0,0.0,0.0021798667907714842
|
58 |
+
audioseal,identity,default,None,27.490897804,27.5235477142334,0.9983003396391869,4.478912019014358,1.0,-4.816479930623699,1.0,0.0,0.00273869252204895
|
59 |
+
audioseal,lowpass_filter,cutoff_freq_1000,AmplitudeDomain,36.30464273,36.65389019775391,0.9946890828609467,4.541482497692108,0.774875,-1.8080355632818192,0.402,0.0,0.0021773648262023927
|
60 |
+
audioseal,lowpass_filter,cutoff_freq_1500,AmplitudeDomain,26.790069183,26.82092145729065,0.9982636441588402,4.471128947734833,1.0,-4.816479930623699,1.0,0.0,0.002186232328414917
|
61 |
+
audioseal,lowpass_filter,cutoff_freq_2000,AmplitudeDomain,26.977506096000003,27.00904746246338,0.9983667352199554,4.473192329168319,1.0,-4.816479930623699,1.0,0.0,0.0021765592098236084
|
62 |
+
audioseal,lowpass_filter,cutoff_freq_3000,AmplitudeDomain,27.220434206999997,27.252556091308595,0.9983347600102425,4.47677370262146,1.0,-4.816479930623699,1.0,0.0,0.002187296152114868
|
63 |
+
audioseal,lowpass_filter,cutoff_freq_4000,AmplitudeDomain,27.351481077000003,27.38384983062744,0.9983105315566063,4.4782840220928195,1.0,-4.816479930623699,1.0,0.0,0.002134929895401001
|
64 |
+
audioseal,lowpass_filter,cutoff_freq_500,AmplitudeDomain,40.271377247,43.19360399055481,0.9999437054991722,4.615413725614547,0.4923125,-0.3285815995913821,0.001,0.0,0.0029620051383972166
|
65 |
+
audioseal,lowpass_filter,cutoff_freq_5000,AmplitudeDomain,27.413841508999997,27.446325828552247,0.9983024520874023,4.478620184898377,1.0,-4.816479930623699,1.0,0.0,0.0021703310012817383
|
66 |
+
audioseal,mp3_compression,bitrate_128k,Compression,13.7527268143,13.5955879073143,0.9801154602766037,3.538307793140411,0.9999375,-4.815249481702321,1.0,0.0,0.002122753381729126
|
67 |
+
audioseal,mp3_compression,bitrate_12k,Compression,13.7527268143,13.5955879073143,0.9801154602766037,3.538307793140411,0.9999375,-4.815249481702321,1.0,0.0,0.0023865768909454347
|
68 |
+
audioseal,mp3_compression,bitrate_24k,Compression,13.7527268143,13.5955879073143,0.9801154602766037,3.538307793140411,0.9999375,-4.815249481702321,1.0,0.0,0.002124655485153198
|
69 |
+
audioseal,mp3_compression,bitrate_256k,Compression,13.7527268143,13.5955879073143,0.9801154602766037,3.538307793140411,0.9999375,-4.815249481702321,1.0,0.0,0.0021646981239318848
|
70 |
+
audioseal,mp3_compression,bitrate_32k,Compression,13.7527268143,13.5955879073143,0.9801154602766037,3.538307793140411,0.9999375,-4.815249481702321,1.0,0.0,0.0021297059059143066
|
71 |
+
audioseal,mp3_compression,bitrate_64k,Compression,13.7527268143,13.5955879073143,0.9801154602766037,3.538307793140411,0.9999375,-4.815249481702321,1.0,0.0,0.0021320953369140627
|
72 |
+
audioseal,pink_noise,noise_std_0.01,AmplitudeDomain,27.514257193,27.546105991363525,0.9962426938414574,4.498846264362335,1.0,-4.816479930623699,1.0,0.0,0.002743488073348999
|
73 |
+
audioseal,pink_noise,noise_std_0.05,AmplitudeDomain,28.014129627,28.034535690307617,0.9976779875755311,4.509153402090073,1.0,-4.816479930623699,1.0,0.0,0.0021497745513916018
|
74 |
+
audioseal,pink_noise,noise_std_0.1,AmplitudeDomain,28.918705023,28.925366207122803,0.9980815652608871,4.514612845420837,0.999625,-4.80909723709543,0.966,0.0,0.002158024787902832
|
75 |
+
audioseal,pink_noise,noise_std_0.2,AmplitudeDomain,31.426840763,31.377700601577757,0.99834820073843,4.526790219545364,0.992875,-4.685157322949023,0.851,0.0,0.0021545958518981935
|
76 |
+
audioseal,pink_noise,noise_std_0.3,AmplitudeDomain,33.492802725000004,33.379100545883176,0.998547433912754,4.536635388851166,0.9749375,-4.3752995407488475,0.74,0.0,0.002171793222427368
|
77 |
+
audioseal,pink_noise,noise_std_0.5,AmplitudeDomain,36.939423253,36.793143905639646,0.998734354019165,4.547515295505524,0.91375,-3.481302565126693,0.508,0.0,0.0021879966259002685
|
78 |
+
audioseal,pink_noise,noise_std_1.0,AmplitudeDomain,42.34149089,42.23548239517212,0.9990696859955788,4.568574451684952,0.7703125,-1.9088702000458528,0.176,0.0,0.002145315408706665
|
79 |
+
audioseal,random_noise,noise_std_0.001,AmplitudeDomain,25.828023422,25.8359071598053,0.9890752083808184,4.370451912403107,1.0,-4.816479930623699,0.992,0.0,0.0030528144836425783
|
80 |
+
audioseal,random_noise,noise_std_0.01,AmplitudeDomain,12.107032952239999,11.745100831389427,0.8036135695427656,3.355803730249405,0.90675,-3.3756597422500048,0.17,0.0,0.002205796718597412
|
81 |
+
audioseal,random_noise,noise_std_0.1,AmplitudeDomain,-1.3758792786664,-12.569344950001687,0.3404003149531782,1.6723893641233445,0.5255,-0.42707083373794374,0.0,0.0,0.002151812791824341
|
82 |
+
audioseal,random_noise,noise_std_0.3,AmplitudeDomain,-2.7616377386799997,-29.572127930879592,0.11079027246264195,0.9522688180208206,0.51,-0.36732513540540546,0.0,0.0,0.002164815425872803
|
83 |
+
audioseal,shush,fraction_0.001,AmplitudeDomain,27.497973265,27.531084775924683,0.9983003432154656,4.4789498813152315,1.0,-4.816479930623699,1.0,0.0,0.0030367558002471922
|
84 |
+
audioseal,shush,fraction_0.01,AmplitudeDomain,27.559786735000003,27.593602016448976,0.9983023186922073,4.478496834993362,0.999875,-4.814343210056542,1.0,0.0,0.002159601926803589
|
85 |
+
audioseal,shush,fraction_0.1,AmplitudeDomain,27.690666481,27.73281824684143,0.9934558970595281,4.471048183202743,0.99975,-4.811882312213786,1.0,0.0,0.0021702258586883544
|
86 |
+
audioseal,shush,fraction_0.3,AmplitudeDomain,27.53475779579918,26.94338047194481,0.9606238183551541,4.31581031537056,0.999125,-4.800425936986041,1.0,0.0,0.00219006085395813
|
87 |
+
audioseal,smooth,window_size_10,AmplitudeDomain,32.504226426,32.71271647262573,0.9979438580870629,4.517208714962005,0.9785625,-4.413863776227651,0.999,0.0,0.0021834590435028077
|
88 |
+
audioseal,smooth,window_size_2,AmplitudeDomain,27.439078667,27.4734873714447,0.9983069218993187,4.479365072965622,0.9999375,-4.815249481702321,1.0,0.0,0.0028089663982391357
|
89 |
+
audioseal,smooth,window_size_20,AmplitudeDomain,33.105437064,33.70110526847839,0.9970181322395801,4.518889941453934,0.818125,-2.130263934762764,0.947,0.0,0.002193148136138916
|
90 |
+
audioseal,smooth,window_size_4,AmplitudeDomain,27.734613895,27.77806330871582,0.9983216876983643,4.479762789726258,0.9990625,-4.798023196803026,1.0,0.0,0.0021580464839935304
|
91 |
+
audioseal,smooth,window_size_40,AmplitudeDomain,29.386511955000003,30.914485628128052,0.9856325167864561,4.474366877555847,0.5154375,-0.3912118745742915,0.005,0.0,0.002184403896331787
|
92 |
+
audioseal,smooth,window_size_8,AmplitudeDomain,30.193826119,30.30066379928589,0.9981970170736313,4.500697636842728,0.99925,-4.801714543567159,1.0,0.0,0.002200110912322998
|
93 |
+
audioseal,speed,speed_factor_0.5,TimeDomain,27.597359031,27.626001260757445,0.9938562220335007,4.301031017780304,0.495125,-0.3277983642447605,0.0,0.0,0.0024215741157531737
|
94 |
+
audioseal,speed,speed_factor_0.6,TimeDomain,27.551618663000003,27.580033836364745,0.9958883818387986,4.453170692205429,0.495875,-0.3342249022039102,0.0,0.0,0.0021728618144989014
|
95 |
+
audioseal,speed,speed_factor_0.7,TimeDomain,27.519240007,27.54807085609436,0.9968558456897736,4.467334972381591,0.49875,-0.3428843529510275,0.0,0.0,0.002183025598526001
|
96 |
+
audioseal,speed,speed_factor_0.8,TimeDomain,27.498673820999997,27.528588197708128,0.9975947113037109,4.455290354013443,0.491625,-0.32584173394627386,0.0,0.0,0.002203305959701538
|
97 |
+
audioseal,speed,speed_factor_0.9,TimeDomain,27.509495291,27.541041912078857,0.9981273492574692,4.452619766235352,0.50625,-0.3645908462165224,0.001,0.0,0.0022077200412750245
|
98 |
+
audioseal,speed,speed_factor_1.0,TimeDomain,27.490897804,27.5235477142334,0.9983003396391869,4.478912019014358,1.0,-4.816479930623699,1.0,0.0,0.0022165770530700683
|
99 |
+
audioseal,speed,speed_factor_1.1,TimeDomain,27.48132714,27.514036338806154,0.9985450240969658,4.493088223218918,0.4853125,-0.31965282479094936,0.005,0.0,0.002055176258087158
|
100 |
+
audioseal,speed,speed_factor_1.2,TimeDomain,27.469047686,27.501734582901,0.9977629639370534,4.482866108894348,0.494,-0.3322072774475455,0.0,0.0,0.0019341022968292236
|
101 |
+
audioseal,speed,speed_factor_1.25,TimeDomain,27.46205064,27.494723510742187,0.9978053505880925,4.4835970284938815,0.4953125,-0.33058643464321036,0.0,0.0,0.0019106862545013427
|
102 |
+
audioseal,speed,speed_factor_1.3,TimeDomain,27.454844446,27.487501487731933,0.997913019047508,4.481552858352661,0.4931875,-0.332114835723429,0.0,0.0,0.001871814012527466
|
103 |
+
audioseal,speed,speed_factor_1.4,TimeDomain,27.439985418,27.472608707427977,0.9970811705913729,4.481344126701355,0.4971875,-0.33556284909890227,0.0,0.0,0.0017700130939483642
|
104 |
+
audioseal,speed,speed_factor_1.5,TimeDomain,27.424997366000003,27.457582918167112,0.9970994674291797,4.46924634385109,0.4965,-0.3363599923106193,0.0,0.0,0.0017023983001708985
|
105 |
+
audioseal,speed_julius,speed_1.25,TimeDomain,27.502783687999997,27.536245512008666,0.9978226033909414,4.483869478225708,0.508125,-0.3697963460139547,0.0,0.0,0.001982886791229248
|
106 |
+
audioseal,updownresample,default,TimeDomain,27.488045445000004,27.520690738677978,0.9983003515601158,4.478923916816711,1.0,-4.816479930623699,1.0,0.0,0.002532235622406006
|
107 |
+
timbre,aac_compression,bitrate_128k,Compression,-3.016099186,-32.689577864646914,0.4639322808980942,3.7157825474739075,0.9982857151031495,-4.187501255689788,0.985,0.0,0.00011862802505493164
|
108 |
+
timbre,aac_compression,bitrate_12k,Compression,-3.0178175635,-32.109464657783505,0.46698418790102003,2.734997652888298,0.8436428980231285,-2.2481979190459773,0.145,0.0,0.000810882568359375
|
109 |
+
timbre,aac_compression,bitrate_24k,Compression,-3.0155987268999995,-32.652322078704834,0.47371174973249436,2.846291582584381,0.9971428583264351,-4.172384230439009,0.971,0.0,0.00012607908248901366
|
110 |
+
timbre,aac_compression,bitrate_256k,Compression,-3.016099186,-32.689577864646914,0.4639322808980942,3.7157825474739075,0.9982857151031495,-4.187501255689788,0.985,0.0,0.00011699318885803222
|
111 |
+
timbre,aac_compression,bitrate_32k,Compression,-3.0141955531000004,-32.60586356925965,0.469097312271595,3.209427271962166,0.9980714294910431,-4.1839729819126195,0.98,0.0,0.00011885356903076171
|
112 |
+
timbre,aac_compression,bitrate_64k,Compression,-3.0152417041999997,-32.69309564590454,0.46440978851914405,3.681292848825455,0.9981428580284119,-4.185802826477369,0.986,0.0,0.00011983036994934082
|
113 |
+
timbre,bandpass_filter,default,AmplitudeDomain,21.553893992000003,21.57744797897339,0.9905448611974716,4.192282337903976,0.979214293897152,-3.9108359052364023,0.964,0.0,0.0008527047634124756
|
114 |
+
timbre,boost_audio,amount_10,AmplitudeDomain,23.03733937,23.117870761871337,0.9882627011537551,4.0591108376979825,0.9995714287757873,-4.20769026839425,0.994,0.0,0.000931513786315918
|
115 |
+
timbre,boost_audio,amount_20,AmplitudeDomain,23.037339331000002,23.117870803833007,0.9882627012133598,4.059110817432404,0.9995714287757873,-4.20769026839425,0.994,0.0,0.00018044233322143556
|
116 |
+
timbre,boost_audio,amount_30,AmplitudeDomain,23.037339388,23.117870925903322,0.9882627012133598,4.059110471248626,0.9995714287757873,-4.20769026839425,0.994,0.0,0.0001558074951171875
|
117 |
+
timbre,boost_audio,amount_40,AmplitudeDomain,23.037339314,23.11787090110779,0.9882627012729645,4.0591104793548585,0.9995714287757873,-4.20769026839425,0.994,0.0,0.00015819716453552247
|
118 |
+
timbre,boost_audio,amount_50,AmplitudeDomain,23.037339447999997,23.117870986938478,0.9882627014517784,4.059110713958741,0.9995714287757873,-4.20769026839425,0.994,0.0,0.0001452028751373291
|
119 |
+
timbre,boost_audio,amount_60,AmplitudeDomain,23.03733937,23.117871042251586,0.9882627013325691,4.059110548734665,0.9995714287757873,-4.20769026839425,0.994,0.0,0.00013898921012878417
|
120 |
+
timbre,boost_audio,amount_70,AmplitudeDomain,23.037339436000003,23.1178710269928,0.9882627013921738,4.059110403060913,0.9995714287757873,-4.20769026839425,0.994,0.0,0.00014886808395385743
|
121 |
+
timbre,boost_audio,amount_80,AmplitudeDomain,23.037339407,23.11787109184265,0.9882627012133598,4.059110761404037,0.9995714287757873,-4.20769026839425,0.994,0.0,0.00015689754486083985
|
122 |
+
timbre,boost_audio,amount_90,AmplitudeDomain,23.037339243999998,23.117871074676515,0.9882627013325691,4.059110458850861,0.9995000002384186,-4.206514177135194,0.994,0.0,0.00017716240882873535
|
123 |
+
timbre,duck_audio,amount_10,AmplitudeDomain,23.037339407,23.11787052345276,0.9882627012133598,4.059110761404037,0.9996428573131562,-4.208866359653306,0.996,0.0,0.0017389848232269287
|
124 |
+
timbre,duck_audio,amount_20,AmplitudeDomain,23.03733937,23.117870306015014,0.9882627013325691,4.059110548734665,0.9997142858505249,-4.210042450912361,0.996,0.0,0.000134979248046875
|
125 |
+
timbre,duck_audio,amount_30,AmplitudeDomain,23.037339314,23.117870003700258,0.9882627012729645,4.0591104793548585,0.9997142858505249,-4.209715574259514,0.995,0.0,0.00018231558799743653
|
126 |
+
timbre,duck_audio,amount_40,AmplitudeDomain,23.037339331000002,23.117869668006897,0.9882627012133598,4.059110817432404,0.9998571429252624,-4.212067756777626,0.996,0.0,0.00013910770416259766
|
127 |
+
timbre,duck_audio,amount_50,AmplitudeDomain,23.037338939,23.117868993759156,0.9882627013921738,4.059110451459885,0.9999285714626313,-4.213243848036681,0.996,0.0,0.00018799376487731935
|
128 |
+
timbre,duck_audio,amount_60,AmplitudeDomain,23.03733937,23.117867712974547,0.9882627013325691,4.059110548734665,0.9999285714626313,-4.213243848036681,0.996,0.0,0.00015519094467163086
|
129 |
+
timbre,duck_audio,amount_70,AmplitudeDomain,23.037339331000002,23.117864943504333,0.9882627012133598,4.059110817432404,0.9999285714626313,-4.213243848036681,0.997,0.0,0.00016283583641052245
|
130 |
+
timbre,duck_audio,amount_80,AmplitudeDomain,23.03733937,23.117857255935668,0.9882627013325691,4.059110548734665,0.9999285714626313,-4.213243848036681,0.997,0.0,0.00015387701988220216
|
131 |
+
timbre,duck_audio,amount_90,AmplitudeDomain,23.03733937,23.117815521240235,0.9882627013325691,4.059110548734665,0.9998571429252624,-4.212067756777626,0.996,0.0,0.0001390979290008545
|
132 |
+
timbre,echo,volume_duration_0.1_0.1,TimeDomain,23.058574404999998,23.136376903533936,0.9884722717404365,4.260719349145889,0.9992857146263122,-4.203312780010874,0.992,0.0,0.000978919744491577
|
133 |
+
timbre,echo,volume_duration_0.1_0.2,TimeDomain,23.062751501999998,23.140940647125245,0.9884836875200271,4.167676860094071,0.9994285717010498,-4.205338085876138,0.993,0.0,0.00014860105514526368
|
134 |
+
timbre,echo,volume_duration_0.1_0.3,TimeDomain,23.064420587,23.142851810455323,0.988651276409626,4.165503089666367,0.9996428573131562,-4.208866359653306,0.994,0.0,0.0001616039276123047
|
135 |
+
timbre,echo,volume_duration_0.1_0.4,TimeDomain,23.067334774,23.146379413604738,0.9888061032295227,4.157149973630905,0.9995000002384186,-4.206514177135194,0.994,0.0,0.0001762206554412842
|
136 |
+
timbre,echo,volume_duration_0.1_0.5,TimeDomain,23.071520203,23.15059486293793,0.9888930906057358,4.158359636545181,0.9995714287757873,-4.20769026839425,0.995,0.0,0.00019042229652404784
|
137 |
+
timbre,echo,volume_duration_0.2_0.1,TimeDomain,23.059505628,23.137535921096802,0.9886038570404053,4.319992366313934,0.999071429014206,-4.199784506233707,0.986,0.0,0.00016522622108459473
|
138 |
+
timbre,echo,volume_duration_0.2_0.2,TimeDomain,23.062243325,23.140641065597535,0.9888115010261536,4.209611073732376,0.9994285717010498,-4.205338085876138,0.992,0.0,0.00018046331405639649
|
139 |
+
timbre,echo,volume_duration_0.2_0.3,TimeDomain,23.063971263,23.142436641693116,0.9892207071185112,4.205044130086899,0.9995714287757873,-4.20769026839425,0.992,0.0,0.00017685294151306152
|
140 |
+
timbre,echo,volume_duration_0.2_0.4,TimeDomain,23.066061788,23.145259954452516,0.9895594311356545,4.1958190033435825,0.9995000002384186,-4.206514177135194,0.994,0.0,0.00014179182052612304
|
141 |
+
timbre,echo,volume_duration_0.2_0.5,TimeDomain,23.069321686,23.14848069190979,0.9897076660990715,4.193786190748215,0.9994285717010498,-4.205664962528985,0.996,0.0,0.00016965270042419435
|
142 |
+
timbre,echo,volume_duration_0.3_0.1,TimeDomain,23.060183515000002,23.138519869804384,0.9885831794142723,4.349690264463424,0.9983571436405182,-4.188677346948842,0.975,0.0,0.0001753103733062744
|
143 |
+
timbre,echo,volume_duration_0.3_0.2,TimeDomain,23.061421125000003,23.14007873249054,0.9889620788693428,4.232893126249313,0.9992857146263122,-4.203312780010873,0.989,0.0,0.00015654397010803222
|
144 |
+
timbre,echo,volume_duration_0.3_0.3,TimeDomain,23.063315176000003,23.14187160873413,0.9895795256495475,4.225193454027176,0.9995000002384186,-4.206514177135194,0.99,0.0,0.00016840147972106934
|
145 |
+
timbre,echo,volume_duration_0.3_0.4,TimeDomain,23.064103254000003,23.143469398498535,0.9900603525042534,4.214872876882553,0.9993571431636811,-4.204161994617082,0.992,0.0,0.00017195367813110352
|
146 |
+
timbre,echo,volume_duration_0.3_0.5,TimeDomain,23.066023063,23.145268540382386,0.9902382781505584,4.2126333270072935,0.9994285717010498,-4.205664962528985,0.994,0.0,0.00016719555854797363
|
147 |
+
timbre,echo,volume_duration_0.4_0.1,TimeDomain,23.060615365,23.13930356788635,0.9884682890772819,4.36647781419754,0.9972857155203819,-4.172545907287932,0.957,0.0,0.0001490635871887207
|
148 |
+
timbre,echo,volume_duration_0.4_0.2,TimeDomain,23.060368073000003,23.139313826560976,0.9889922727346421,4.246361300945282,0.9991428575515747,-4.200960597492761,0.987,0.0,0.00016701292991638185
|
149 |
+
timbre,echo,volume_duration_0.4_0.3,TimeDomain,23.062512101,23.141202114105223,0.9897936277985573,4.238582856416702,0.9993571431636811,-4.2044888712699295,0.988,0.0,0.0001910722255706787
|
150 |
+
timbre,echo,volume_duration_0.4_0.4,TimeDomain,23.061632727,23.141171226501466,0.990397069811821,4.224454021453857,0.9992857146263122,-4.202985903358027,0.992,0.0,0.00014206528663635254
|
151 |
+
timbre,echo,volume_duration_0.4_0.5,TimeDomain,23.061902326,23.1412330493927,0.990600147664547,4.221957989931107,0.9994285717010498,-4.205664962528985,0.994,0.0,0.00020479655265808106
|
152 |
+
timbre,echo,volume_duration_0.5_0.1,TimeDomain,23.060831143999998,23.139886434555052,0.9883017528057099,4.374279906272888,0.9965714301466941,-4.161438748003068,0.946,0.0,0.00019787073135375975
|
153 |
+
timbre,echo,volume_duration_0.5_0.2,TimeDomain,23.059172439,23.13841294670105,0.9889526620507241,4.255659073114395,0.9987857148647309,-4.195733894503177,0.985,0.0,0.0001561431884765625
|
154 |
+
timbre,echo,volume_duration_0.5_0.3,TimeDomain,23.061624164,23.140475032806396,0.9899158412218094,4.246328328609467,0.9992857146263122,-4.203312780010874,0.987,0.0,0.0003218212127685547
|
155 |
+
timbre,echo,volume_duration_0.5_0.4,TimeDomain,23.058838583999997,23.138544832229613,0.9906247833967209,4.232294749021531,0.9992857146263122,-4.202985903358027,0.99,0.0,0.00020379424095153808
|
156 |
+
timbre,echo,volume_duration_0.5_0.5,TimeDomain,23.057257956,23.136670225143433,0.9908382821083069,4.229573710203171,0.999071429014206,-4.200111382886552,0.991,0.0,0.00019757819175720214
|
157 |
+
timbre,highpass_filter,cutoff_freq_1000,AmplitudeDomain,17.9302786075,17.909413573265077,0.9864015222787857,4.242087431430817,0.9797142946124077,-3.9057702415750786,0.844,0.0,0.00018762540817260741
|
158 |
+
timbre,highpass_filter,cutoff_freq_1500,AmplitudeDomain,17.142627490500004,17.131696575164796,0.9868747017979622,4.285577730894088,0.9519285905361176,-3.5123809776949217,0.414,0.0,0.00012218499183654785
|
159 |
+
timbre,highpass_filter,cutoff_freq_2000,AmplitudeDomain,16.5536001225,16.557781538009642,0.98686279463768,4.301341676473617,0.8917143190503121,-2.7744391795097996,0.187,0.0,0.00014025306701660156
|
160 |
+
timbre,highpass_filter,cutoff_freq_4000,AmplitudeDomain,14.5696523645,14.931626720428467,0.9870448138713837,1.7599666955471038,0.7842143263220787,-1.7033190722085378,0.002,0.0,0.00014255428314208986
|
161 |
+
timbre,highpass_filter,cutoff_freq_500,AmplitudeDomain,21.2273378915,21.25543515586853,0.9905450972914696,4.178760293960571,0.9981428580284119,-4.184495319865983,0.988,0.001,0.0007832105159759522
|
162 |
+
timbre,highpass_filter,cutoff_freq_8000,AmplitudeDomain,3.4596947243200002,3.840954578834044e-06,0.8691871973872185,2.4541222710609434,0.4955000219941139,-0.3313222659633685,0.0,0.0,0.00014750075340270996
|
163 |
+
timbre,identity,default,None,23.037338939,23.117870637893677,0.9882627013921738,4.059110451459885,0.9995714287757873,-4.20769026839425,0.995,0.0,0.0010104639530181885
|
164 |
+
timbre,lowpass_filter,cutoff_freq_1000,AmplitudeDomain,25.373918251000003,25.56166519165039,0.9916164393424988,4.109995054006577,0.7207143228054047,-1.2627132891370463,0.008,0.0,0.0002222774028778076
|
165 |
+
timbre,lowpass_filter,cutoff_freq_1500,AmplitudeDomain,25.011249943000003,25.17093202018738,0.9893632483482361,4.079528137207031,0.8042857540249825,-1.902722726488952,0.042,0.0,0.0001913471221923828
|
166 |
+
timbre,lowpass_filter,cutoff_freq_2000,AmplitudeDomain,24.687748153,24.8251399269104,0.9881105170249939,4.067780660629272,0.8562143229842186,-2.3905747623003055,0.2,0.0,0.00018790006637573243
|
167 |
+
timbre,lowpass_filter,cutoff_freq_3000,AmplitudeDomain,24.071899319,24.17611590385437,0.9871895866990089,4.064190368175507,0.9328571673035622,-3.2738193390246315,0.728,0.0,0.00016063451766967773
|
168 |
+
timbre,lowpass_filter,cutoff_freq_4000,AmplitudeDomain,23.623956453999998,23.712090062141417,0.9882407568097115,4.06687665271759,0.983285721540451,-3.9605781796071793,0.985,0.0,0.00014780187606811525
|
169 |
+
timbre,lowpass_filter,cutoff_freq_500,AmplitudeDomain,25.524629766999997,25.778618000030516,0.9949413176178932,4.092113968133926,0.6611428896784782,-0.8949532711408312,0.001,0.0,0.0008414497375488281
|
170 |
+
timbre,lowpass_filter,cutoff_freq_5000,AmplitudeDomain,23.358291735999998,23.44032704925537,0.9882781857252121,4.066385211467743,0.9992857146263122,-4.202985903358027,0.994,0.0,0.00012797665596008301
|
171 |
+
timbre,mp3_compression,bitrate_128k,Compression,13.3749234278,13.244534018516541,0.9702074038386345,3.330306144237518,0.9992142860889435,-4.201809812098971,0.993,0.0,8.025884628295898e-05
|
172 |
+
timbre,mp3_compression,bitrate_12k,Compression,13.3749234278,13.244534018516541,0.9702074038386345,3.330306144237518,0.9992142860889435,-4.201809812098971,0.993,0.0,0.0007440211772918701
|
173 |
+
timbre,mp3_compression,bitrate_24k,Compression,13.3749234278,13.244534018516541,0.9702074038386345,3.330306144237518,0.9992142860889435,-4.201809812098971,0.993,0.0,7.816362380981445e-05
|
174 |
+
timbre,mp3_compression,bitrate_256k,Compression,13.3749234278,13.244534018516541,0.9702074038386345,3.330306144237518,0.9992142860889435,-4.201809812098971,0.993,0.0,7.798933982849121e-05
|
175 |
+
timbre,mp3_compression,bitrate_32k,Compression,13.3749234278,13.244534018516541,0.9702074038386345,3.330306144237518,0.9992142860889435,-4.201809812098971,0.993,0.0,7.943916320800781e-05
|
176 |
+
timbre,mp3_compression,bitrate_64k,Compression,13.3749234278,13.244534018516541,0.9702074038386345,3.330306144237518,0.9992142860889435,-4.201809812098971,0.993,0.0,7.970404624938965e-05
|
177 |
+
timbre,pink_noise,noise_std_0.01,AmplitudeDomain,23.060983445999998,23.140059600830078,0.9874781097769737,4.104656201124191,1.0,-4.214419939295736,0.998,0.0,0.0015762784481048583
|
178 |
+
timbre,pink_noise,noise_std_0.05,AmplitudeDomain,23.552978778,23.608997337341307,0.9882280906438827,4.1554450240135195,0.9994285717010498,-4.2053380858761376,0.994,0.0,0.00012574315071105956
|
179 |
+
timbre,pink_noise,noise_std_0.1,AmplitudeDomain,24.554619382,24.581193855285644,0.9891936846971512,4.2148006813526155,0.9982142863869667,-4.188893692188425,0.98,0.0,0.00013210797309875488
|
180 |
+
timbre,pink_noise,noise_std_0.2,AmplitudeDomain,26.8146298,26.79583799934387,0.9906474224925041,4.277312744021415,0.9966428586244583,-4.161987909095002,0.963,0.0,0.00014474940299987794
|
181 |
+
timbre,pink_noise,noise_std_0.3,AmplitudeDomain,28.807030749,28.732064781188964,0.991663924396038,4.335479756116867,0.9925714311599731,-4.108318924425866,0.915,0.0,0.00013599586486816407
|
182 |
+
timbre,pink_noise,noise_std_0.5,AmplitudeDomain,32.346500513,32.192042221069336,0.9932221040129662,4.381545362472534,0.9750000073909759,-3.8812770208373095,0.775,0.0,0.0001223173141479492
|
183 |
+
timbre,pink_noise,noise_std_1.0,AmplitudeDomain,38.12598151699999,37.9764054107666,0.9957437787055969,4.473813244104385,0.8989285976290703,-2.9620592680325233,0.392,0.0,0.00016016936302185058
|
184 |
+
timbre,random_noise,noise_std_0.001,AmplitudeDomain,22.395850303499998,22.464655440330507,0.9795849829465151,3.9890834991931916,0.9983571435213089,-4.190690221807963,0.986,0.0,0.0008912644386291504
|
185 |
+
timbre,random_noise,noise_std_0.01,AmplitudeDomain,11.862927757789999,11.53104309963435,0.7981569704189897,3.232732026696205,0.8930000281631947,-2.8771084644329723,0.371,0.0,0.0001559884548187256
|
186 |
+
timbre,random_noise,noise_std_0.05,AmplitudeDomain,1.1101922156748,-3.8306750736478716,0.5151872817464173,2.0830560475587845,0.5972857427448034,-0.6760138123541515,0.004,0.0,0.00015809059143066407
|
187 |
+
timbre,random_noise,noise_std_0.1,AmplitudeDomain,-1.3784635760051802,-12.521387594774366,0.33993703429074956,1.6909189423322677,0.5195714515522123,-0.39568639557098084,0.0,0.0,0.0001564798355102539
|
188 |
+
timbre,random_noise,noise_std_0.3,AmplitudeDomain,-2.76365715122,-29.668151121616365,0.11099030740222952,0.9566996495723724,0.49921430690586566,-0.3362518204388009,0.0,0.0,0.00013060712814331056
|
189 |
+
timbre,shush,fraction_0.001,AmplitudeDomain,23.047173611999998,23.12836867427826,0.988262890279293,4.059048800945282,0.9995714287757873,-4.20769026839425,0.994,0.0,0.0018173334598541259
|
190 |
+
timbre,shush,fraction_0.01,AmplitudeDomain,23.051625028000004,23.133696541786193,0.9882659870386123,4.051508974552155,0.9995714287757873,-4.20769026839425,0.995,0.0,0.00018916559219360352
|
191 |
+
timbre,shush,fraction_0.1,AmplitudeDomain,22.974761665,23.055890051841736,0.9830720415032375,4.045620162963867,0.999071429014206,-4.19945762958086,0.988,0.0,0.00017384791374206544
|
192 |
+
timbre,shush,fraction_0.3,AmplitudeDomain,22.69990509077869,22.24708671474457,0.950097905366154,3.8637656059265137,0.9954285728931427,-4.1511855478919735,0.965,0.0,0.00015955257415771484
|
193 |
+
timbre,smooth,window_size_10,AmplitudeDomain,25.287192645999998,25.476246419906616,0.9878932871222496,4.050110034942627,0.9670000151991844,-3.7011238968243534,0.799,0.0,0.00015685367584228517
|
194 |
+
timbre,smooth,window_size_2,AmplitudeDomain,23.677105896,23.771506363868713,0.9883461973071098,4.063563228368759,0.9995714287757873,-4.207363391741403,0.996,0.0,0.0008360700607299805
|
195 |
+
timbre,smooth,window_size_20,AmplitudeDomain,25.163709608,25.380656554222107,0.9874505549669266,3.971804225921631,0.8466428982019425,-2.253303971129543,0.409,0.0,0.0001259467601776123
|
196 |
+
timbre,smooth,window_size_4,AmplitudeDomain,24.587374516000004,24.722055252075194,0.9882031226754189,4.058638134479523,0.9987857148647309,-4.195080141197484,0.98,0.0,0.00016213083267211913
|
197 |
+
timbre,smooth,window_size_40,AmplitudeDomain,23.686278823000002,23.83378123283386,0.9862703087925911,3.8058924539089203,0.7880000421404838,-1.721840385352955,0.041,0.0,0.00017325758934020997
|
198 |
+
timbre,smooth,window_size_8,AmplitudeDomain,25.184040563000003,25.362084054946898,0.9880411030054093,4.05468354845047,0.9945000024437904,-4.127888223895409,0.915,0.0,0.0001670534610748291
|
199 |
+
timbre,speed,speed_factor_0.5,TimeDomain,23.164388459,23.250019129753113,0.9675885364413261,3.9387735540866853,0.503714308142662,-0.3552021302161772,0.0,0.0,0.0007451081275939941
|
200 |
+
timbre,speed,speed_factor_0.6,TimeDomain,23.137356926,23.21823881149292,0.9802183853387832,3.9740435717105864,0.48892859248816967,-0.30447676197161705,0.0,0.0,0.00018470120429992675
|
201 |
+
timbre,speed,speed_factor_0.7,TimeDomain,23.1215156825,23.201123468399047,0.9835117028951645,3.9974764308929442,0.5261428801640868,-0.40372641301052387,0.001,0.0,0.00012314605712890624
|
202 |
+
timbre,speed,speed_factor_0.8,TimeDomain,23.105676254000002,23.184912987709044,0.9859802498817444,4.035564354658127,0.48050002079457044,-0.28627018472290533,0.0,0.0,0.00014587783813476562
|
203 |
+
timbre,speed,speed_factor_0.9,TimeDomain,23.09691114,23.175634346961974,0.987400122821331,4.05122420835495,0.5210000229403376,-0.38334100329352505,0.0,0.0,0.00021924543380737305
|
204 |
+
timbre,speed,speed_factor_1.0,TimeDomain,23.037338939,23.117870637893677,0.9882627013921738,4.059110451459885,0.9995714287757873,-4.20769026839425,0.995,0.0,0.00018298768997192382
|
205 |
+
timbre,speed,speed_factor_1.1,TimeDomain,23.097422414,23.17733418369293,0.9882891296744346,4.056013465642929,0.5110714499950408,-0.3514548388682578,0.0,0.0,0.00023429179191589356
|
206 |
+
timbre,speed,speed_factor_1.2,TimeDomain,23.141367654,23.221162298202515,0.987638057410717,4.0532760384082795,0.4820000204816461,-0.3072306785340523,0.0,0.0,0.00017452692985534668
|
207 |
+
timbre,speed,speed_factor_1.25,TimeDomain,23.166927987999994,23.246787944793702,0.9872605185508728,4.048982208251953,0.47464287680387496,-0.2691583450765769,0.0,0.0,0.00016434216499328614
|
208 |
+
timbre,speed,speed_factor_1.3,TimeDomain,23.194804929,23.27482028579712,0.9857641064388845,4.055791646957397,0.49392859321832655,-0.31493879235061367,0.0,0.0,0.00018447685241699218
|
209 |
+
timbre,speed,speed_factor_1.4,TimeDomain,23.255632455000004,23.336239112854003,0.9844989613158796,4.060039211988449,0.4945000220015645,-0.3343100562615312,0.0,0.0,0.00020914936065673828
|
210 |
+
timbre,speed,speed_factor_1.5,TimeDomain,23.320791268,23.402300429344177,0.983104746447334,4.050121637582779,0.4857143067121506,-0.29838416452610983,0.0,0.0,0.00022339940071105957
|
211 |
+
timbre,speed_julius,speed_1.25,TimeDomain,23.163970802,23.243846035003664,0.9869087376594543,4.064347949266434,0.48542859172821046,-0.2948268455138651,0.0,0.0,0.0013008887767791749
|
212 |
+
timbre,updownresample,default,TimeDomain,23.058686518000002,23.138978697776796,0.9882626916170121,4.060844824314118,0.9995714287757873,-4.20769026839425,0.995,0.0,0.0007720792293548584
|
213 |
+
wavmark_fast,aac_compression,bitrate_128k,Compression,-2.9875080071,-32.89825182342529,0.4666054165363312,3.9030432443618777,1.0,-4.816479930623699,1.0,0.0,0.08859440898895264
|
214 |
+
wavmark_fast,aac_compression,bitrate_12k,Compression,-2.9874862944,-32.416104107856754,0.4689542044997215,3.126311210274696,0.5940625,-0.6453178253456938,0.859,0.0,0.08819228410720825
|
215 |
+
wavmark_fast,aac_compression,bitrate_24k,Compression,-2.9864551211999997,-32.84251833629608,0.4757162485420704,3.2640174469947816,0.98975,-4.629745168869822,1.0,0.0,0.08806233549118042
|
216 |
+
wavmark_fast,aac_compression,bitrate_256k,Compression,-2.9875080071,-32.89825182342529,0.4666054165363312,3.9030432443618777,1.0,-4.816479930623699,1.0,0.0,0.08860210871696472
|
217 |
+
wavmark_fast,aac_compression,bitrate_32k,Compression,-2.9859536177,-32.89537646484375,0.4708034683763981,3.55694220995903,0.99875,-4.792195129471734,1.0,0.0,0.08805446982383729
|
218 |
+
wavmark_fast,aac_compression,bitrate_64k,Compression,-2.9872233121,-32.87129989337921,0.46702927047014237,3.8878698768615725,1.0,-4.816479930623699,1.0,0.0,0.08800644779205322
|
219 |
+
wavmark_fast,bandpass_filter,default,AmplitudeDomain,34.507906454,34.506749475479126,0.9993391914367675,4.3243469939231876,1.0,-4.816479930623699,1.0,0.0,0.09067084670066833
|
220 |
+
wavmark_fast,boost_audio,amount_10,AmplitudeDomain,37.106459736000005,37.10722325706482,0.9989369603991508,4.280538969039917,1.0,-4.816479930623699,1.0,0.0,0.08878720140457154
|
221 |
+
wavmark_fast,boost_audio,amount_20,AmplitudeDomain,37.106459646000005,37.10722493553162,0.9989369601011276,4.280539420604706,1.0,-4.816479930623699,1.0,0.0,0.09076850271224976
|
222 |
+
wavmark_fast,boost_audio,amount_30,AmplitudeDomain,37.106459736000005,37.10722624778747,0.9989369603395462,4.28053870511055,1.0,-4.816479930623699,1.0,0.0,0.09071999335289002
|
223 |
+
wavmark_fast,boost_audio,amount_40,AmplitudeDomain,37.106459657,37.10722717857361,0.9989369601607323,4.280539204597473,1.0,-4.816479930623699,1.0,0.0,0.09062656998634339
|
224 |
+
wavmark_fast,boost_audio,amount_50,AmplitudeDomain,37.106459757,37.107227920532225,0.998936960220337,4.280539542913437,1.0,-4.816479930623699,1.0,0.0,0.09076185369491577
|
225 |
+
wavmark_fast,boost_audio,amount_60,AmplitudeDomain,37.106459691,37.10722855186462,0.998936960220337,4.280538454771042,1.0,-4.816479930623699,1.0,0.0,0.09081684684753417
|
226 |
+
wavmark_fast,boost_audio,amount_70,AmplitudeDomain,37.106459785,37.107229091644285,0.9989369601011276,4.280539194583893,1.0,-4.816479930623699,1.0,0.0,0.09117722702026367
|
227 |
+
wavmark_fast,boost_audio,amount_80,AmplitudeDomain,37.106459709,37.10722951698303,0.9989369601011276,4.280539014339447,1.0,-4.816479930623699,1.0,0.0,0.090738445520401
|
228 |
+
wavmark_fast,boost_audio,amount_90,AmplitudeDomain,37.106459678,37.107229934692384,0.998936960220337,4.28053877568245,1.0,-4.816479930623699,1.0,0.0,0.09129915976524353
|
229 |
+
wavmark_fast,duck_audio,amount_10,AmplitudeDomain,37.106459709,37.10721847724915,0.9989369601011276,4.280539014339447,1.0,-4.816479930623699,1.0,0.0,0.08857630848884583
|
230 |
+
wavmark_fast,duck_audio,amount_20,AmplitudeDomain,37.106459691,37.10721459579468,0.998936960220337,4.280538454771042,1.0,-4.816479930623699,1.0,0.0,0.08944728469848633
|
231 |
+
wavmark_fast,duck_audio,amount_30,AmplitudeDomain,37.106459657,37.10720892524719,0.9989369601607323,4.280539204597473,1.0,-4.816479930623699,1.0,0.0,0.08942146015167236
|
232 |
+
wavmark_fast,duck_audio,amount_40,AmplitudeDomain,37.106459646000005,37.107200174331666,0.9989369601011276,4.280539420604706,1.0,-4.816479930623699,1.0,0.0,0.089430593252182
|
233 |
+
wavmark_fast,duck_audio,amount_50,AmplitudeDomain,37.106459363,37.10718564033508,0.998936960220337,4.280539211034775,1.0,-4.816479930623699,1.0,0.0,0.08969602632522583
|
234 |
+
wavmark_fast,duck_audio,amount_60,AmplitudeDomain,37.106459691,37.107158765792846,0.998936960220337,4.280538454771042,1.0,-4.816479930623699,1.0,0.0,0.08893551969528199
|
235 |
+
wavmark_fast,duck_audio,amount_70,AmplitudeDomain,37.106459646000005,37.10710089302063,0.9989369601011276,4.280539420604706,1.0,-4.816479930623699,1.0,0.0,0.08894403219223022
|
236 |
+
wavmark_fast,duck_audio,amount_80,AmplitudeDomain,37.106459691,37.1069353351593,0.998936960220337,4.280538454771042,1.0,-4.816479930623699,1.0,0.0,0.08922357177734375
|
237 |
+
wavmark_fast,duck_audio,amount_90,AmplitudeDomain,37.106459691,37.1060419960022,0.998936960220337,4.280538454771042,0.9990625,-4.798347374078625,1.0,0.0,0.08935253047943115
|
238 |
+
wavmark_fast,echo,volume_duration_0.1_0.1,TimeDomain,37.089975814,37.090940301895145,0.9988282642364502,4.360328173875809,1.0,-4.816479930623699,1.0,0.0,0.08885336208343506
|
239 |
+
wavmark_fast,echo,volume_duration_0.1_0.2,TimeDomain,37.122932883000004,37.12387501335144,0.998885162293911,4.385337398052216,1.0,-4.816479930623699,1.0,0.0,0.08862174868583679
|
240 |
+
wavmark_fast,echo,volume_duration_0.1_0.3,TimeDomain,37.146919716,37.147854696273804,0.9989413158893585,4.400736413240432,1.0,-4.816479930623699,1.0,0.0,0.08881439423561097
|
241 |
+
wavmark_fast,echo,volume_duration_0.1_0.4,TimeDomain,37.169938586,37.1708637714386,0.9989915698170662,4.412016189575195,1.0,-4.816479930623699,1.0,0.0,0.0886401720046997
|
242 |
+
wavmark_fast,echo,volume_duration_0.1_0.5,TimeDomain,37.191100545,37.19199673271179,0.9990165874958038,4.418684198379516,1.0,-4.816479930623699,1.0,0.0,0.08880055212974548
|
243 |
+
wavmark_fast,echo,volume_duration_0.2_0.1,TimeDomain,37.080781291,37.08194690322876,0.9988463762402534,4.380180658817292,0.99975,-4.811882312213786,1.0,0.002,0.09103460335731506
|
244 |
+
wavmark_fast,echo,volume_duration_0.2_0.2,TimeDomain,37.117512557000005,37.11865612602234,0.9989774403572083,4.407225279092788,0.9999375,-4.815249481702321,1.0,0.0,0.09135012030601501
|
245 |
+
wavmark_fast,echo,volume_duration_0.2_0.3,TimeDomain,37.142156493,37.14328610229492,0.9990918035507202,4.423554579973221,0.99975,-4.811558134938187,1.0,0.0,0.09116204190254211
|
246 |
+
wavmark_fast,echo,volume_duration_0.2_0.4,TimeDomain,37.16273807200001,37.16385936164856,0.9991801292896271,4.434813483953476,0.999375,-4.804175441409916,1.0,0.0,0.09124903702735901
|
247 |
+
wavmark_fast,echo,volume_duration_0.2_0.5,TimeDomain,37.180183827,37.181266122817995,0.999235699236393,4.4423065366745,0.9995,-4.806636339252673,1.0,0.0,0.09098451900482178
|
248 |
+
wavmark_fast,echo,volume_duration_0.3_0.1,TimeDomain,37.072697738,37.07404238319397,0.9988426172733307,4.391833901882172,0.999125,-4.799902000275604,1.0,0.002,0.0913105661869049
|
249 |
+
wavmark_fast,echo,volume_duration_0.3_0.2,TimeDomain,37.112247122999996,37.113569864273074,0.9990188059210777,4.419835691452026,0.9995,-4.806960516528273,1.0,0.0,0.09112776041030884
|
250 |
+
wavmark_fast,echo,volume_duration_0.3_0.3,TimeDomain,37.137192629000005,37.13849479675293,0.9991682235598565,4.435229746341705,0.9978125,-4.774262332361497,1.0,0.0,0.09144638180732727
|
251 |
+
wavmark_fast,echo,volume_duration_0.3_0.4,TimeDomain,37.153922573,37.1552174243927,0.9992856590747833,4.446405870676041,0.9953125,-4.725817147898329,1.0,0.001,0.25627053546905515
|
252 |
+
wavmark_fast,echo,volume_duration_0.3_0.5,TimeDomain,37.166561403,37.167809160232544,0.9993439459204674,4.453599447250366,0.996875,-4.756129775816423,1.0,0.0,0.2485218198299408
|
253 |
+
wavmark_fast,echo,volume_duration_0.4_0.1,TimeDomain,37.065987665,37.0674824848175,0.9988250817060471,4.399653608322144,0.9981875,-4.782941734992167,1.0,0.003,0.24821097946166992
|
254 |
+
wavmark_fast,echo,volume_duration_0.4_0.2,TimeDomain,37.107359798,37.10883295631409,0.9990420936346054,4.427909694671631,0.9988125,-4.794273692379149,1.0,0.0,0.2449603672027588
|
255 |
+
wavmark_fast,echo,volume_duration_0.4_0.3,TimeDomain,37.132271378,37.133718002319334,0.9992150553464889,4.442555178165436,0.991125,-4.646170247805623,1.0,0.0,0.25857047271728517
|
256 |
+
wavmark_fast,echo,volume_duration_0.4_0.4,TimeDomain,37.144085112,37.145524744033814,0.9993505580425263,4.453329203128814,0.98675,-4.565949355864019,1.0,0.001,0.24813990139961242
|
257 |
+
wavmark_fast,echo,volume_duration_0.4_0.5,TimeDomain,37.151169062,37.15255554008484,0.9994105567932129,4.460110380411148,0.991,-4.64490608515723,1.0,0.0,0.2537290155887604
|
258 |
+
wavmark_fast,echo,volume_duration_0.5_0.1,TimeDomain,37.060730187,37.062343730926514,0.99879674077034,4.405258128643036,0.99675,-4.75763434687494,1.0,0.003,0.08867436265945434
|
259 |
+
wavmark_fast,echo,volume_duration_0.5_0.2,TimeDomain,37.10299175,37.10458340644836,0.9990403534173965,4.433753147363663,0.9974375,-4.768724728578792,1.0,0.0,0.08873675918579102
|
260 |
+
wavmark_fast,echo,volume_duration_0.5_0.3,TimeDomain,37.127580677000005,37.129140754699705,0.9992449271082878,4.448325385570526,0.979375,-4.4305814869361875,1.0,0.0,0.08891457295417786
|
261 |
+
wavmark_fast,echo,volume_duration_0.5_0.4,TimeDomain,37.133792377,37.13534573364258,0.9993864963650704,4.457691887617111,0.971,-4.285928194847545,1.0,0.001,0.08867789435386658
|
262 |
+
wavmark_fast,echo,volume_duration_0.5_0.5,TimeDomain,37.134914478000006,37.1364107208252,0.9994514514803886,4.46380647277832,0.9811875,-4.4710288239155425,1.0,0.0,0.08852255964279175
|
263 |
+
wavmark_fast,highpass_filter,cutoff_freq_1000,AmplitudeDomain,29.192599064000003,29.187004205703737,0.9987333769202232,4.211219745159149,1.0,-4.816479930623699,1.0,0.0,0.08882171583175659
|
264 |
+
wavmark_fast,highpass_filter,cutoff_freq_1500,AmplitudeDomain,27.866681550000003,27.85863847732544,0.9988181031346322,4.231240867614746,1.0,-4.816479930623699,1.0,0.0,0.0889482364654541
|
265 |
+
wavmark_fast,highpass_filter,cutoff_freq_2000,AmplitudeDomain,27.069044601,27.05935388946533,0.9988585416674614,4.219625002145767,1.0,-4.816479930623699,1.0,0.0,0.08839867568016052
|
266 |
+
wavmark_fast,highpass_filter,cutoff_freq_4000,AmplitudeDomain,25.939593543000004,25.922948052406312,0.998652354836464,1.8327756155729293,0.9641875,-4.136669449924068,1.0,0.0,0.08847514414787293
|
267 |
+
wavmark_fast,highpass_filter,cutoff_freq_500,AmplitudeDomain,33.999206131,33.99774976921081,0.999339465379715,4.269688676357269,1.0,-4.816479930623699,1.0,0.0,0.0888461594581604
|
268 |
+
wavmark_fast,highpass_filter,cutoff_freq_8000,AmplitudeDomain,11.0353231241,5.660733065894874e-06,0.9647402307987213,3.4256449007987975,0.4985625,-0.3342198868156321,0.0,0.0,1.3876799483299256
|
269 |
+
wavmark_fast,identity,default,None,37.106459363,37.10722121620178,0.998936960220337,4.280539211034775,1.0,-4.816479930623699,1.0,0.0,0.08850661158561707
|
270 |
+
wavmark_fast,lowpass_filter,cutoff_freq_1000,AmplitudeDomain,47.707708178000004,47.72515328216553,0.9994625598192215,4.494483410120011,0.4985625,-0.3342198868156321,0.0,0.0,1.3865266160964966
|
271 |
+
wavmark_fast,lowpass_filter,cutoff_freq_1500,AmplitudeDomain,46.849645923000004,46.863336967468264,0.9991981204152107,4.4629428062438965,0.4989375,-0.33543214022250006,0.0,0.0,1.3866502151489257
|
272 |
+
wavmark_fast,lowpass_filter,cutoff_freq_2000,AmplitudeDomain,44.022224464,44.02917639350891,0.9990887554883957,4.422933247804642,0.603625,-0.6902508060593248,0.927,0.0,0.0896060643196106
|
273 |
+
wavmark_fast,lowpass_filter,cutoff_freq_3000,AmplitudeDomain,40.167952963000005,40.17062502670288,0.9988864148259163,4.385342133522034,0.967875,-4.2136046587089515,1.0,0.0,0.08923430871963502
|
274 |
+
wavmark_fast,lowpass_filter,cutoff_freq_4000,AmplitudeDomain,38.346858686,38.34838856887817,0.9989637913703918,4.359298593521118,1.0,-4.816479930623699,1.0,0.0,0.08904341983795167
|
275 |
+
wavmark_fast,lowpass_filter,cutoff_freq_500,AmplitudeDomain,46.283275346,46.30683748626709,0.999697956264019,4.478948615789413,0.4985625,-0.3342198868156321,0.0,0.0,1.3859931275844575
|
276 |
+
wavmark_fast,lowpass_filter,cutoff_freq_5000,AmplitudeDomain,37.765053148999996,37.76623497772217,0.9989445144534111,4.331456186056137,1.0,-4.816479930623699,1.0,0.0,0.08917616319656373
|
277 |
+
wavmark_fast,mp3_compression,bitrate_128k,Compression,13.8976512446,13.747753658771515,0.9804508103132248,3.4287818524837492,0.9930625,-4.695674850124005,1.0,0.0,0.08797769713401794
|
278 |
+
wavmark_fast,mp3_compression,bitrate_12k,Compression,13.8976512446,13.747753658771515,0.9804508103132248,3.4287818524837492,0.9930625,-4.695674850124005,1.0,0.0,0.08809244346618653
|
279 |
+
wavmark_fast,mp3_compression,bitrate_24k,Compression,13.8976512446,13.747753658771515,0.9804508103132248,3.4287818524837492,0.9930625,-4.695674850124005,1.0,0.0,0.08802561020851135
|
280 |
+
wavmark_fast,mp3_compression,bitrate_256k,Compression,13.8976512446,13.747753658771515,0.9804508103132248,3.4287818524837492,0.9930625,-4.695674850124005,1.0,0.0,0.08801355099678039
|
281 |
+
wavmark_fast,mp3_compression,bitrate_32k,Compression,13.8976512446,13.747753658771515,0.9804508103132248,3.4287818524837492,0.9930625,-4.695674850124005,1.0,0.0,0.08807813954353333
|
282 |
+
wavmark_fast,mp3_compression,bitrate_64k,Compression,13.8976512446,13.747753658771515,0.9804508103132248,3.4287818524837492,0.9930625,-4.695674850124005,1.0,0.0,0.08798179268836975
|
283 |
+
wavmark_fast,pink_noise,noise_std_0.01,AmplitudeDomain,37.129699376999994,37.12961152076721,0.9878011481165886,4.387919470787049,1.0,-4.816479930623699,1.0,0.0,0.08865425157546997
|
284 |
+
wavmark_fast,pink_noise,noise_std_0.05,AmplitudeDomain,37.606095921,37.59088203239441,0.9962602050304413,4.536406343460083,0.9995625,-4.808190965449652,1.0,0.0,0.09036100912094117
|
285 |
+
wavmark_fast,pink_noise,noise_std_0.1,AmplitudeDomain,38.653754350999996,38.61257526397705,0.9981359251737595,4.579092809915543,0.9971875,-4.771328365516672,0.999,0.0,0.09041275238990784
|
286 |
+
wavmark_fast,pink_noise,noise_std_0.2,AmplitudeDomain,41.008778299999996,40.92637730407715,0.999066511631012,4.609556779384613,0.9926875,-4.710399914164768,0.996,0.0,0.09043782091140747
|
287 |
+
wavmark_fast,pink_noise,noise_std_0.3,AmplitudeDomain,43.142974931000005,43.03559168243408,0.9993692525625228,4.619397721290588,0.9859375,-4.608680946322971,0.992,0.0,0.09082852983474732
|
288 |
+
wavmark_fast,pink_noise,noise_std_0.5,AmplitudeDomain,46.535688347999994,46.40362324523926,0.9996080594658852,4.624002512097359,0.9604375,-4.225939944448027,0.985,0.0,0.09085973262786866
|
289 |
+
wavmark_fast,pink_noise,noise_std_1.0,AmplitudeDomain,51.953074521000005,51.80321054458618,0.9997898852229118,4.63449525642395,0.8535625,-2.8232105803576415,0.905,0.001,0.09068192768096923
|
290 |
+
wavmark_fast,random_noise,noise_std_0.001,AmplitudeDomain,30.785755260000002,30.781781690597533,0.9901066988259554,4.403251094341278,0.9941875,-4.732725312468545,0.998,0.0,0.08926639127731323
|
291 |
+
wavmark_fast,random_noise,noise_std_0.01,AmplitudeDomain,12.275103448729999,11.922962853521108,0.8046108680218458,3.3652599804401397,0.7175,-1.5019870972099634,0.735,0.009,0.0894797637462616
|
292 |
+
wavmark_fast,random_noise,noise_std_0.1,AmplitudeDomain,-1.373946785224,-12.550327552573755,0.3413363172071986,1.6901236518621445,0.499125,-0.3389038077488093,0.219,0.153,0.5223038415908814
|
293 |
+
wavmark_fast,random_noise,noise_std_0.3,AmplitudeDomain,-2.76209428742,-29.56996650314331,0.11089815186850319,0.95042644572258,0.4985625,-0.3342198868156321,0.0,0.0,1.388951686143875
|
294 |
+
wavmark_fast,shush,fraction_0.001,AmplitudeDomain,37.109107081000005,37.10986704826355,0.9989369610548019,4.280620128393173,1.0,-4.816479930623699,1.0,0.0,0.08852245855331421
|
295 |
+
wavmark_fast,shush,fraction_0.01,AmplitudeDomain,37.105093314,37.10583508682251,0.9989368416666985,4.281307213544846,1.0,-4.816479930623699,1.0,0.0,0.08860870909690857
|
296 |
+
wavmark_fast,shush,fraction_0.1,AmplitudeDomain,36.924855307,36.92546386528015,0.9942346813569347,4.271687304854393,1.0,-4.816479930623699,1.0,0.0,0.08879113006591798
|
297 |
+
wavmark_fast,shush,fraction_0.3,AmplitudeDomain,36.38455856506148,35.51180329281092,0.9625661544884461,4.0862873094081875,0.7633125,-1.7198181867805828,1.0,0.0,0.37965972113609314
|
298 |
+
wavmark_fast,smooth,window_size_10,AmplitudeDomain,46.058379373,46.07378907394409,0.9990661440491676,4.432527548313141,0.91375,-3.3304718397378146,1.0,0.0,0.09081375336647034
|
299 |
+
wavmark_fast,smooth,window_size_2,AmplitudeDomain,38.746418454,38.748188943862914,0.9989860734939575,4.32336143732071,1.0,-4.816479930623699,1.0,0.0,0.09038062620162964
|
300 |
+
wavmark_fast,smooth,window_size_20,AmplitudeDomain,44.708247486000005,44.733002313613895,0.9989144724011422,4.399474090099335,0.8449375,-2.5253214649320372,0.974,0.0,0.09013749122619628
|
301 |
+
wavmark_fast,smooth,window_size_4,AmplitudeDomain,42.580513391000004,42.58578705596924,0.9990597384572029,4.372029628753662,0.999875,-4.814019032780943,1.0,0.0,0.09034568548202515
|
302 |
+
wavmark_fast,smooth,window_size_40,AmplitudeDomain,39.943763304,39.98563548660278,0.9981490249037742,4.261135335683822,0.591375,-0.6516296577630115,0.3,0.0,0.12235392999649047
|
303 |
+
wavmark_fast,smooth,window_size_8,AmplitudeDomain,45.886073964,45.89940946960449,0.9990786606669426,4.425969464540482,0.99125,-4.653668931903256,1.0,0.0,0.09087036800384521
|
304 |
+
wavmark_fast,speed,speed_factor_0.5,TimeDomain,37.442410726999995,37.4434162902832,0.9806143188476563,4.233908696651459,0.5043125,-0.35012422042474,0.054,0.0,0.6672682857513428
|
305 |
+
wavmark_fast,speed,speed_factor_0.6,TimeDomain,37.309908809999996,37.31079650878906,0.9963524526953698,4.257090904951095,0.5015,-0.348787285485512,0.969,0.0,0.08862294673919678
|
306 |
+
wavmark_fast,speed,speed_factor_0.7,TimeDomain,37.347111598999994,37.34802011680603,0.9977073135375977,4.289611612558365,0.5069375,-0.36613261708351325,0.0,0.0,1.389314584493637
|
307 |
+
wavmark_fast,speed,speed_factor_0.8,TimeDomain,37.236897023,37.23772625732422,0.998366555929184,4.291652025699616,0.501125,-0.3446168705495398,0.134,0.0,0.31969633960723876
|
308 |
+
wavmark_fast,speed,speed_factor_0.9,TimeDomain,37.250053189000006,37.25090453720093,0.9987917453050613,4.295082075834275,0.5996875,-0.6716440104794033,1.0,0.0,0.08919870185852051
|
309 |
+
wavmark_fast,speed,speed_factor_1.0,TimeDomain,37.106459363,37.10722121620178,0.998936960220337,4.280539211034775,1.0,-4.816479930623699,1.0,0.0,0.08921021008491516
|
310 |
+
wavmark_fast,speed,speed_factor_1.1,TimeDomain,37.241196970000004,37.242046564102175,0.9988664398789406,4.2975124938488,0.9351875,-3.686022892659117,1.0,0.0,0.13125864267349244
|
311 |
+
wavmark_fast,speed,speed_factor_1.2,TimeDomain,37.345779848,37.34669499015808,0.9986575861573219,4.301884689569473,0.4994375,-0.34477724510501473,0.0,0.001,0.15749022245407104
|
312 |
+
wavmark_fast,speed,speed_factor_1.25,TimeDomain,37.40257903199999,37.40352951622009,0.9975064278705212,4.303503092527389,0.487375,-0.30930767853286956,0.644,0.0,0.07509394669532776
|
313 |
+
wavmark_fast,speed,speed_factor_1.3,TimeDomain,37.461292060000005,37.46227868080139,0.9973282610638234,4.314832090854645,0.5026875,-0.350597459842042,0.0,0.001,0.9770462892055511
|
314 |
+
wavmark_fast,speed,speed_factor_1.4,TimeDomain,37.57822899800001,37.57928874778747,0.996943494842777,4.3297111325263975,0.5006875,-0.3540424867957197,0.0,0.0,0.8921921763420105
|
315 |
+
wavmark_fast,speed,speed_factor_1.5,TimeDomain,37.695795997,37.69692880821228,0.9964801105125043,4.330922291994095,0.4806875,-0.29122948449250985,0.901,0.0,0.05374671244621277
|
316 |
+
wavmark_fast,speed_julius,speed_1.25,TimeDomain,37.373984062999995,37.37487630081177,0.9975079716904256,4.300583213806152,0.4875,-0.32713269335590156,0.662,0.0,0.0917020308971405
|
317 |
+
wavmark_fast,updownresample,default,TimeDomain,37.138962861,37.139748765945434,0.9989369572997093,4.287393998861313,1.0,-4.816479930623699,1.0,0.0,0.08851717376708984
|
backend/environment.yml
CHANGED
@@ -4,8 +4,11 @@ channels:
|
|
4 |
- conda-forge
|
5 |
dependencies:
|
6 |
- python=3.11
|
|
|
7 |
- flask=3.0.3
|
8 |
- werkzeug=3.0.3
|
|
|
9 |
- pip
|
10 |
- pip:
|
11 |
- watchdog
|
|
|
|
4 |
- conda-forge
|
5 |
dependencies:
|
6 |
- python=3.11
|
7 |
+
- gunicorn
|
8 |
- flask=3.0.3
|
9 |
- werkzeug=3.0.3
|
10 |
+
- pandas
|
11 |
- pip
|
12 |
- pip:
|
13 |
- watchdog
|
14 |
+
- flask-cors
|
backend/tools.py
ADDED
@@ -0,0 +1,118 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import pandas as pd
|
2 |
+
|
3 |
+
|
4 |
+
def add_avg_as_columns(
|
5 |
+
benchmark_df: pd.DataFrame, attack_scores: list[str]
|
6 |
+
) -> pd.DataFrame:
|
7 |
+
# average over the attack variants (inequal number of attack variants)
|
8 |
+
attack_avg_df = (
|
9 |
+
benchmark_df[["model", "attack_name"] + attack_scores]
|
10 |
+
.groupby(["model", "attack_name"])
|
11 |
+
.agg(lambda x: x.mean(skipna=False))
|
12 |
+
.reset_index(drop=False)
|
13 |
+
)
|
14 |
+
|
15 |
+
avg_df = (
|
16 |
+
attack_avg_df[["model"] + attack_scores]
|
17 |
+
.groupby(["model"])
|
18 |
+
.agg(lambda x: x.mean(skipna=False))
|
19 |
+
.reset_index(drop=False)
|
20 |
+
)
|
21 |
+
return avg_df.rename(columns={s: f"avg_{s}" for s in attack_scores})
|
22 |
+
|
23 |
+
|
24 |
+
def add_attack_variants_as_columns(
|
25 |
+
df: pd.DataFrame, first_cols: list[str], attack_scores: list[str]
|
26 |
+
) -> pd.DataFrame:
|
27 |
+
model_dfs = []
|
28 |
+
for model in df.model.unique():
|
29 |
+
model_view = df[df.model == model]
|
30 |
+
attack_dfs = []
|
31 |
+
|
32 |
+
for i, row in model_view.iterrows():
|
33 |
+
attack_name = row["attack_name"]
|
34 |
+
attack_variant = row["attack_variant"]
|
35 |
+
|
36 |
+
g_df = model_view[
|
37 |
+
(model_view.attack_name == attack_name)
|
38 |
+
& (model_view.attack_variant == attack_variant)
|
39 |
+
]
|
40 |
+
if (
|
41 |
+
attack_name == "none"
|
42 |
+
or attack_name == "identity"
|
43 |
+
or attack_name == "Identity"
|
44 |
+
):
|
45 |
+
g_df = g_df[["model"] + first_cols + attack_scores]
|
46 |
+
else:
|
47 |
+
g_df = g_df[attack_scores]
|
48 |
+
|
49 |
+
if attack_variant == "default":
|
50 |
+
prefix = attack_name
|
51 |
+
else:
|
52 |
+
prefix = f"{attack_name}_{attack_variant}"
|
53 |
+
|
54 |
+
g_df = g_df.rename(columns={s: f"{prefix}_{s}" for s in attack_scores})
|
55 |
+
attack_dfs.append(g_df.reset_index(drop=True))
|
56 |
+
|
57 |
+
model_df = pd.concat(attack_dfs, axis=1)
|
58 |
+
model_dfs.append(model_df)
|
59 |
+
|
60 |
+
final_df = pd.concat(model_dfs, axis=0, ignore_index=True)
|
61 |
+
first_cols_ = ["model"] + first_cols
|
62 |
+
reordered_cols = first_cols_ + list(
|
63 |
+
set(final_df.columns.tolist()) - set(first_cols_)
|
64 |
+
)
|
65 |
+
|
66 |
+
return final_df[reordered_cols]
|
67 |
+
|
68 |
+
|
69 |
+
def add_attack_categories_as_columns(
|
70 |
+
benchmark_df: pd.DataFrame, attack_scores: list[str]
|
71 |
+
) -> pd.DataFrame:
|
72 |
+
# average over the attack variants (inequal number of attack variants)
|
73 |
+
attack_avg_df = (
|
74 |
+
benchmark_df[["model", "attack_name", "cat"] + attack_scores]
|
75 |
+
.groupby(["model", "attack_name", "cat"])
|
76 |
+
.agg(lambda x: x.mean(skipna=False))
|
77 |
+
.reset_index(drop=False)
|
78 |
+
)
|
79 |
+
df = (
|
80 |
+
attack_avg_df.groupby(["model", "cat"])[attack_scores]
|
81 |
+
.agg(lambda x: x.mean(skipna=False))
|
82 |
+
.reset_index()
|
83 |
+
)
|
84 |
+
|
85 |
+
model_dfs = []
|
86 |
+
|
87 |
+
for model in df.model.unique():
|
88 |
+
cat_dfs = []
|
89 |
+
|
90 |
+
for cat in df.cat.unique():
|
91 |
+
if cat == "None":
|
92 |
+
continue
|
93 |
+
|
94 |
+
cat_df = df[(df.model == model) & (df.cat == cat)]
|
95 |
+
cat_df = cat_df[attack_scores]
|
96 |
+
cat_df = cat_df.rename(columns={s: f"{cat}_{s}" for s in attack_scores})
|
97 |
+
|
98 |
+
cat_dfs.append(cat_df.reset_index(drop=True))
|
99 |
+
|
100 |
+
model_dfs.append(pd.concat(cat_dfs, axis=1))
|
101 |
+
|
102 |
+
return pd.concat(model_dfs, axis=0, ignore_index=True)
|
103 |
+
|
104 |
+
|
105 |
+
def get_old_format_dataframe(
|
106 |
+
benchmark_df: pd.DataFrame, first_cols: list[str], attack_scores: list[str]
|
107 |
+
) -> pd.DataFrame:
|
108 |
+
benchmark_df = benchmark_df.fillna("None")
|
109 |
+
|
110 |
+
avg_df = add_avg_as_columns(benchmark_df, attack_scores)
|
111 |
+
attack_variants_df = add_attack_variants_as_columns(
|
112 |
+
benchmark_df, first_cols, attack_scores
|
113 |
+
)
|
114 |
+
categories_df = add_attack_categories_as_columns(benchmark_df, attack_scores)
|
115 |
+
|
116 |
+
final_df = pd.concat([attack_variants_df, categories_df, avg_df], axis=1)
|
117 |
+
final_df = final_df.loc[:, ~final_df.columns.duplicated()].copy()
|
118 |
+
return final_df
|
frontend/.env
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
VITE_API_SERVER=""
|
frontend/.prettierignore
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Prettier ignores
|
2 |
+
node_modules
|
3 |
+
build
|
4 |
+
dist
|
5 |
+
.env
|
6 |
+
coverage
|
7 |
+
*.pyc
|
8 |
+
__pycache__/
|
frontend/.prettierrc
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"semi": false,
|
3 |
+
"singleQuote": true,
|
4 |
+
"trailingComma": "es5",
|
5 |
+
"printWidth": 100,
|
6 |
+
"tabWidth": 2,
|
7 |
+
"arrowParens": "always"
|
8 |
+
}
|
frontend/index.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
<meta charset="UTF-8" />
|
5 |
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
-
<title
|
8 |
</head>
|
9 |
<body>
|
10 |
<div id="root"></div>
|
|
|
4 |
<meta charset="UTF-8" />
|
5 |
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
+
<title>🥇 Omni Seal Bench Watermarking Leaderboard</title>
|
8 |
</head>
|
9 |
<body>
|
10 |
<div id="root"></div>
|
frontend/package-lock.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
frontend/package.json
CHANGED
@@ -6,23 +6,28 @@
|
|
6 |
"scripts": {
|
7 |
"dev": "vite",
|
8 |
"build": "tsc && vite build",
|
9 |
-
"preview": "vite preview"
|
|
|
10 |
},
|
11 |
"dependencies": {
|
12 |
-
"
|
13 |
-
"react
|
|
|
|
|
14 |
},
|
15 |
"devDependencies": {
|
16 |
-
"@
|
17 |
-
"@types/react
|
18 |
-
"@
|
19 |
-
"@typescript-eslint/
|
20 |
-
"@
|
21 |
-
"
|
22 |
-
"
|
23 |
-
"
|
24 |
-
"
|
25 |
-
"
|
26 |
-
"
|
|
|
|
|
27 |
}
|
28 |
}
|
|
|
6 |
"scripts": {
|
7 |
"dev": "vite",
|
8 |
"build": "tsc && vite build",
|
9 |
+
"preview": "vite preview",
|
10 |
+
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md,html}\""
|
11 |
},
|
12 |
"dependencies": {
|
13 |
+
"@tailwindcss/vite": "^4.0.0",
|
14 |
+
"react": "^18.3.1",
|
15 |
+
"react-dom": "^18.3.1",
|
16 |
+
"recharts": "^2.9.0"
|
17 |
},
|
18 |
"devDependencies": {
|
19 |
+
"@tailwindcss/postcss": "^4.1.8",
|
20 |
+
"@types/react": "^18.3.1",
|
21 |
+
"@types/react-dom": "^18.3.1",
|
22 |
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
23 |
+
"@typescript-eslint/parser": "^7.7.0",
|
24 |
+
"@vitejs/plugin-react": "^4.2.0",
|
25 |
+
"autoprefixer": "^10.4.19",
|
26 |
+
"daisyui": "^4.10.2",
|
27 |
+
"postcss": "^8.4.38",
|
28 |
+
"prettier": "^3.2.5",
|
29 |
+
"tailwindcss": "^4.0.0",
|
30 |
+
"typescript": "^5.4.5",
|
31 |
+
"vite": "^5.2.10"
|
32 |
}
|
33 |
}
|
frontend/src/API.ts
CHANGED
@@ -1,15 +1,19 @@
|
|
|
|
|
|
1 |
class API {
|
2 |
static async fetchIndex(): Promise<string> {
|
3 |
-
const response = await fetch(
|
4 |
-
if (!response.ok) throw new Error(
|
5 |
-
return response.text()
|
6 |
}
|
7 |
|
8 |
static async fetchStaticFile(path: string): Promise<string> {
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
12 |
}
|
13 |
}
|
14 |
|
15 |
-
export default API
|
|
|
1 |
+
const VITE_API_SERVER_URL = import.meta.env.VITE_API_SERVER_URL || ''
|
2 |
+
|
3 |
class API {
|
4 |
static async fetchIndex(): Promise<string> {
|
5 |
+
const response = await fetch(VITE_API_SERVER_URL + '/')
|
6 |
+
if (!response.ok) throw new Error('Failed to fetch index.html')
|
7 |
+
return response.text()
|
8 |
}
|
9 |
|
10 |
static async fetchStaticFile(path: string): Promise<string> {
|
11 |
+
console.log(`Fetching static file: ${path}`)
|
12 |
+
console.log(`API Server URL: ${VITE_API_SERVER_URL}`)
|
13 |
+
const response = await fetch(`${VITE_API_SERVER_URL}/${path}`)
|
14 |
+
if (!response.ok) throw new Error(`Failed to fetch ${path}`)
|
15 |
+
return response.text()
|
16 |
}
|
17 |
}
|
18 |
|
19 |
+
export default API
|
frontend/src/App.tsx
CHANGED
@@ -1,23 +1,148 @@
|
|
1 |
import { useState, useEffect } from 'react'
|
2 |
import API from './API'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
function App() {
|
5 |
-
const [count, setCount] = useState
|
6 |
-
const [
|
7 |
-
const [
|
8 |
-
const [
|
|
|
9 |
const [error, setError] = useState<string | null>(null)
|
|
|
|
|
|
|
|
|
10 |
|
11 |
useEffect(() => {
|
12 |
-
API.fetchStaticFile(
|
13 |
-
.then((
|
14 |
-
const
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
setLoading(false)
|
18 |
})
|
19 |
.catch((err) => {
|
20 |
-
setError('Failed to fetch
|
21 |
setLoading(false)
|
22 |
})
|
23 |
}, [])
|
@@ -26,40 +151,57 @@ function App() {
|
|
26 |
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100">
|
27 |
<div className="card w-11/12 max-w-4xl bg-base-100 shadow-xl mb-8">
|
28 |
<div className="card-body">
|
29 |
-
<h2 className="card-title"
|
30 |
<p>Simple proof of concept with Flask backend serving a React frontend.</p>
|
31 |
<div className="card-actions justify-center mt-4">
|
32 |
-
<button
|
33 |
-
className="btn btn-primary"
|
34 |
-
onClick={() => setCount((count: number) => count + 1)}
|
35 |
-
>
|
36 |
Count is {count}
|
37 |
</button>
|
38 |
</div>
|
39 |
</div>
|
40 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
<div className="w-11/12 max-w-4xl bg-white rounded shadow p-4 overflow-auto">
|
42 |
-
<h3 className="font-bold mb-2">
|
43 |
{loading && <div>Loading...</div>}
|
44 |
{error && <div className="text-red-500">{error}</div>}
|
45 |
{!loading && !error && (
|
46 |
<div className="overflow-x-auto">
|
47 |
-
<table
|
48 |
<thead>
|
49 |
<tr>
|
50 |
-
{
|
51 |
<th key={idx}>{col}</th>
|
52 |
))}
|
53 |
</tr>
|
54 |
</thead>
|
55 |
<tbody>
|
56 |
-
{
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
</tbody>
|
64 |
</table>
|
65 |
</div>
|
|
|
1 |
import { useState, useEffect } from 'react'
|
2 |
import API from './API'
|
3 |
+
import DataChart from './components/DataChart'
|
4 |
+
|
5 |
+
// Define types for groups and metrics
|
6 |
+
interface Groups {
|
7 |
+
[group: string]: { [subgroup: string]: string[] }
|
8 |
+
}
|
9 |
+
|
10 |
+
interface Row {
|
11 |
+
metric: string
|
12 |
+
[key: string]: string | number
|
13 |
+
}
|
14 |
+
|
15 |
+
// New Filter Component
|
16 |
+
function Filter({
|
17 |
+
groups,
|
18 |
+
selectedMetrics,
|
19 |
+
setSelectedMetrics,
|
20 |
+
}: {
|
21 |
+
groups: Groups
|
22 |
+
selectedMetrics: Set<string>
|
23 |
+
setSelectedMetrics: (metrics: Set<string>) => void
|
24 |
+
}) {
|
25 |
+
const [openGroups, setOpenGroups] = useState<{ [key: string]: boolean }>({})
|
26 |
+
const [openSubGroups, setOpenSubGroups] = useState<{ [key: string]: { [key: string]: boolean } }>(
|
27 |
+
{}
|
28 |
+
)
|
29 |
+
|
30 |
+
const toggleGroup = (group: string) => {
|
31 |
+
setOpenGroups((prev) => ({ ...prev, [group]: !prev[group] }))
|
32 |
+
}
|
33 |
+
|
34 |
+
const toggleSubGroup = (group: string, subGroup: string) => {
|
35 |
+
setOpenSubGroups((prev) => ({
|
36 |
+
...prev,
|
37 |
+
[group]: {
|
38 |
+
...prev[group],
|
39 |
+
[subGroup]: !prev[group]?.[subGroup],
|
40 |
+
},
|
41 |
+
}))
|
42 |
+
}
|
43 |
+
|
44 |
+
return (
|
45 |
+
<div className="w-11/12 flex flex-wrap gap-4 p-4 bg-gray-50 rounded shadow">
|
46 |
+
{Object.entries(groups).map(([group, subGroups]) => (
|
47 |
+
<div key={group} className="filter-group w-1/3 border p-2 rounded overflow-hidden">
|
48 |
+
<h4
|
49 |
+
onClick={() => toggleGroup(group)}
|
50 |
+
className="cursor-pointer text-lg font-semibold text-blue-600 hover:underline truncate"
|
51 |
+
title={group}
|
52 |
+
>
|
53 |
+
{group} {openGroups[group] ? '▼' : '▶'}
|
54 |
+
</h4>
|
55 |
+
{openGroups[group] && (
|
56 |
+
<div className="filter-subgroups">
|
57 |
+
{Object.entries(subGroups).map(([subGroup, metrics]) => (
|
58 |
+
<div key={subGroup} className="filter-subgroup border-t pt-2 mt-2">
|
59 |
+
<h5
|
60 |
+
onClick={() => toggleSubGroup(group, subGroup)}
|
61 |
+
className="cursor-pointer text-md font-medium text-gray-700 hover:underline truncate"
|
62 |
+
title={subGroup}
|
63 |
+
>
|
64 |
+
{subGroup} {openSubGroups[group]?.[subGroup] ? '▼' : '▶'}
|
65 |
+
</h5>
|
66 |
+
{openSubGroups[group]?.[subGroup] && (
|
67 |
+
<div className="filter-metrics grid grid-cols-2 gap-2 mt-2">
|
68 |
+
{metrics.map((metric) => (
|
69 |
+
<div key={metric} className="flex items-center space-x-2 truncate">
|
70 |
+
<input
|
71 |
+
type="checkbox"
|
72 |
+
checked={selectedMetrics.has(metric)}
|
73 |
+
onChange={(event) => {
|
74 |
+
const newSet = new Set(selectedMetrics)
|
75 |
+
if (event.target.checked) {
|
76 |
+
newSet.add(metric)
|
77 |
+
} else {
|
78 |
+
newSet.delete(metric)
|
79 |
+
}
|
80 |
+
setSelectedMetrics(newSet)
|
81 |
+
}}
|
82 |
+
className="form-checkbox h-4 w-4 text-blue-600"
|
83 |
+
/>
|
84 |
+
<label className="text-sm text-gray-600 truncate" title={metric}>
|
85 |
+
{metric.includes('_') ? metric.split('_').slice(1).join('_') : metric}
|
86 |
+
</label>
|
87 |
+
</div>
|
88 |
+
))}
|
89 |
+
</div>
|
90 |
+
)}
|
91 |
+
</div>
|
92 |
+
))}
|
93 |
+
</div>
|
94 |
+
)}
|
95 |
+
</div>
|
96 |
+
))}
|
97 |
+
</div>
|
98 |
+
)
|
99 |
+
}
|
100 |
|
101 |
function App() {
|
102 |
+
const [count, setCount] = useState(0)
|
103 |
+
const [tableRows, setTableRows] = useState<Row[]>([])
|
104 |
+
const [tableHeader, setTableHeader] = useState<string[]>([])
|
105 |
+
const [chartData, setChartData] = useState<Row[]>([])
|
106 |
+
const [loading, setLoading] = useState(true)
|
107 |
const [error, setError] = useState<string | null>(null)
|
108 |
+
const [groups, setGroups] = useState<Groups>({})
|
109 |
+
const [selectedMetrics, setSelectedMetrics] = useState<Set<string>>(new Set())
|
110 |
+
|
111 |
+
const file = 'voxpopuli_1k_audio_benchmark'
|
112 |
|
113 |
useEffect(() => {
|
114 |
+
API.fetchStaticFile(`data/${file}.csv`)
|
115 |
+
.then((response) => {
|
116 |
+
const data = JSON.parse(response)
|
117 |
+
const rows: Row[] = data['rows']
|
118 |
+
const groups = data['groups'] as { [key: string]: string[] }
|
119 |
+
|
120 |
+
// Each value of groups is a list of metrics, group them by the first part of the metric before the first _
|
121 |
+
const groupsData = Object.entries(groups).reduce(
|
122 |
+
(acc, [group, metrics]) => {
|
123 |
+
acc[group] = metrics.reduce<{ [key: string]: string[] }>((subAcc, metric) => {
|
124 |
+
const [mainGroup, subGroup] = metric.split('_')
|
125 |
+
if (!subAcc[mainGroup]) {
|
126 |
+
subAcc[mainGroup] = []
|
127 |
+
}
|
128 |
+
subAcc[mainGroup].push(metric)
|
129 |
+
return subAcc
|
130 |
+
}, {})
|
131 |
+
return acc
|
132 |
+
},
|
133 |
+
{} as { [key: string]: { [key: string]: string[] } }
|
134 |
+
)
|
135 |
+
|
136 |
+
const allKeys: string[] = Array.from(new Set(rows.flatMap((row) => Object.keys(row))))
|
137 |
+
setSelectedMetrics(new Set(data['selected']))
|
138 |
+
setTableHeader(allKeys)
|
139 |
+
setTableRows(rows)
|
140 |
+
setChartData(rows)
|
141 |
+
setGroups(groupsData)
|
142 |
setLoading(false)
|
143 |
})
|
144 |
.catch((err) => {
|
145 |
+
setError('Failed to fetch JSON: ' + err.message)
|
146 |
setLoading(false)
|
147 |
})
|
148 |
}, [])
|
|
|
151 |
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-100">
|
152 |
<div className="card w-11/12 max-w-4xl bg-base-100 shadow-xl mb-8">
|
153 |
<div className="card-body">
|
154 |
+
<h2 className="card-title">🥇 Omni Seal Bench Watermarking Leaderboard</h2>
|
155 |
<p>Simple proof of concept with Flask backend serving a React frontend.</p>
|
156 |
<div className="card-actions justify-center mt-4">
|
157 |
+
<button className="btn btn-primary" onClick={() => setCount((count) => count + 1)}>
|
|
|
|
|
|
|
158 |
Count is {count}
|
159 |
</button>
|
160 |
</div>
|
161 |
</div>
|
162 |
</div>
|
163 |
+
<DataChart data={chartData} loading={loading} error={error} headers={tableHeader} />
|
164 |
+
|
165 |
+
<Filter
|
166 |
+
groups={groups}
|
167 |
+
selectedMetrics={selectedMetrics}
|
168 |
+
setSelectedMetrics={(metrics) => {
|
169 |
+
setSelectedMetrics(metrics)
|
170 |
+
}}
|
171 |
+
/>
|
172 |
+
|
173 |
<div className="w-11/12 max-w-4xl bg-white rounded shadow p-4 overflow-auto">
|
174 |
+
<h3 className="font-bold mb-2">{file}</h3>
|
175 |
{loading && <div>Loading...</div>}
|
176 |
{error && <div className="text-red-500">{error}</div>}
|
177 |
{!loading && !error && (
|
178 |
<div className="overflow-x-auto">
|
179 |
+
<table>
|
180 |
<thead>
|
181 |
<tr>
|
182 |
+
{tableHeader.map((col, idx) => (
|
183 |
<th key={idx}>{col}</th>
|
184 |
))}
|
185 |
</tr>
|
186 |
</thead>
|
187 |
<tbody>
|
188 |
+
{tableRows
|
189 |
+
.filter((row) => selectedMetrics.has(row['metric']))
|
190 |
+
.map((row, i) => (
|
191 |
+
<tr key={i}>
|
192 |
+
{Object.keys(row).map((column, j) => {
|
193 |
+
const cell = row[column]
|
194 |
+
|
195 |
+
return (
|
196 |
+
<td key={j}>
|
197 |
+
<div className="p-4">
|
198 |
+
{isNaN(Number(cell)) ? cell : Number(Number(cell).toFixed(3))}
|
199 |
+
</div>
|
200 |
+
</td>
|
201 |
+
)
|
202 |
+
})}
|
203 |
+
</tr>
|
204 |
+
))}
|
205 |
</tbody>
|
206 |
</table>
|
207 |
</div>
|
frontend/src/components/DataChart.tsx
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts';
|
2 |
+
|
3 |
+
interface DataChartProps {
|
4 |
+
data: any[];
|
5 |
+
loading: boolean;
|
6 |
+
error: string | null;
|
7 |
+
headers: string[];
|
8 |
+
}
|
9 |
+
|
10 |
+
const DataChart = ({ data, loading, error, headers }: DataChartProps) => {
|
11 |
+
return (
|
12 |
+
<div className="w-11/12 max-w-4xl bg-white rounded shadow p-4 overflow-auto mb-8">
|
13 |
+
<h3 className="font-bold mb-2">Data Visualization</h3>
|
14 |
+
{loading && <div>Loading...</div>}
|
15 |
+
{error && <div className="text-red-500">{error}</div>}
|
16 |
+
{!loading && !error && data.length > 0 && (
|
17 |
+
<div className="h-64 mb-4">
|
18 |
+
<ResponsiveContainer width="100%" height="100%">
|
19 |
+
<LineChart
|
20 |
+
data={data}
|
21 |
+
margin={{
|
22 |
+
top: 5,
|
23 |
+
right: 30,
|
24 |
+
left: 20,
|
25 |
+
bottom: 5,
|
26 |
+
}}
|
27 |
+
>
|
28 |
+
<CartesianGrid strokeDasharray="3 3" />
|
29 |
+
<XAxis dataKey={headers[0]} />
|
30 |
+
<YAxis />
|
31 |
+
<Tooltip />
|
32 |
+
<Legend />
|
33 |
+
{headers[1] && (
|
34 |
+
<Line type="monotone" dataKey={headers[1]} stroke="#8884d8" dot={false} />
|
35 |
+
)}
|
36 |
+
{headers[2] && (
|
37 |
+
<Line type="monotone" dataKey={headers[2]} stroke="#82ca9d" dot={false} />
|
38 |
+
)}
|
39 |
+
</LineChart>
|
40 |
+
</ResponsiveContainer>
|
41 |
+
</div>
|
42 |
+
)}
|
43 |
+
</div>
|
44 |
+
);
|
45 |
+
};
|
46 |
+
|
47 |
+
export default DataChart;
|
frontend/src/index.css
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
-
@
|
2 |
-
|
3 |
-
@tailwind utilities;
|
|
|
1 |
+
@import "tailwindcss";
|
2 |
+
|
|
frontend/src/main.tsx
CHANGED
@@ -6,5 +6,5 @@ import './index.css'
|
|
6 |
ReactDOM.createRoot(document.getElementById('root')!).render(
|
7 |
<React.StrictMode>
|
8 |
<App />
|
9 |
-
</React.StrictMode
|
10 |
)
|
|
|
6 |
ReactDOM.createRoot(document.getElementById('root')!).render(
|
7 |
<React.StrictMode>
|
8 |
<App />
|
9 |
+
</React.StrictMode>
|
10 |
)
|
frontend/src/vite-env.d.ts
CHANGED
@@ -1 +1,9 @@
|
|
1 |
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/// <reference types="vite/client" />
|
2 |
+
|
3 |
+
interface ImportMetaEnv {
|
4 |
+
readonly VITE_API_SERVER: string;
|
5 |
+
}
|
6 |
+
|
7 |
+
interface ImportMeta {
|
8 |
+
readonly env: ImportMetaEnv;
|
9 |
+
}
|
frontend/tailwind.config.js
DELETED
@@ -1,14 +0,0 @@
|
|
1 |
-
/** @type {import('tailwindcss').Config} */
|
2 |
-
export default {
|
3 |
-
content: [
|
4 |
-
"./index.html",
|
5 |
-
"./src/**/*.{js,ts,jsx,tsx}",
|
6 |
-
],
|
7 |
-
theme: {
|
8 |
-
extend: {},
|
9 |
-
},
|
10 |
-
plugins: [require("daisyui")],
|
11 |
-
daisyui: {
|
12 |
-
themes: ["light"],
|
13 |
-
},
|
14 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
frontend/vite.config.ts
CHANGED
@@ -1,11 +1,12 @@
|
|
1 |
import { defineConfig } from 'vite'
|
|
|
2 |
import react from '@vitejs/plugin-react'
|
3 |
|
4 |
// https://vitejs.dev/config/
|
5 |
export default defineConfig({
|
6 |
-
plugins: [react()],
|
7 |
build: {
|
8 |
outDir: 'dist',
|
9 |
-
emptyOutDir: true
|
10 |
-
}
|
11 |
})
|
|
|
1 |
import { defineConfig } from 'vite'
|
2 |
+
import tailwindcss from '@tailwindcss/vite'
|
3 |
import react from '@vitejs/plugin-react'
|
4 |
|
5 |
// https://vitejs.dev/config/
|
6 |
export default defineConfig({
|
7 |
+
plugins: [react(), tailwindcss()],
|
8 |
build: {
|
9 |
outDir: 'dist',
|
10 |
+
emptyOutDir: true,
|
11 |
+
},
|
12 |
})
|
package-lock.json
DELETED
@@ -1,40 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"name": "omniseal_dev",
|
3 |
-
"lockfileVersion": 3,
|
4 |
-
"requires": true,
|
5 |
-
"packages": {
|
6 |
-
"": {
|
7 |
-
"devDependencies": {
|
8 |
-
"@types/react": "^19.1.6",
|
9 |
-
"@types/react-dom": "^19.1.6"
|
10 |
-
}
|
11 |
-
},
|
12 |
-
"node_modules/@types/react": {
|
13 |
-
"version": "19.1.6",
|
14 |
-
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.6.tgz",
|
15 |
-
"integrity": "sha512-JeG0rEWak0N6Itr6QUx+X60uQmN+5t3j9r/OVDtWzFXKaj6kD1BwJzOksD0FF6iWxZlbE1kB0q9vtnU2ekqa1Q==",
|
16 |
-
"dev": true,
|
17 |
-
"license": "MIT",
|
18 |
-
"dependencies": {
|
19 |
-
"csstype": "^3.0.2"
|
20 |
-
}
|
21 |
-
},
|
22 |
-
"node_modules/@types/react-dom": {
|
23 |
-
"version": "19.1.6",
|
24 |
-
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.6.tgz",
|
25 |
-
"integrity": "sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==",
|
26 |
-
"dev": true,
|
27 |
-
"license": "MIT",
|
28 |
-
"peerDependencies": {
|
29 |
-
"@types/react": "^19.0.0"
|
30 |
-
}
|
31 |
-
},
|
32 |
-
"node_modules/csstype": {
|
33 |
-
"version": "3.1.3",
|
34 |
-
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
35 |
-
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
36 |
-
"dev": true,
|
37 |
-
"license": "MIT"
|
38 |
-
}
|
39 |
-
}
|
40 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|