mirror of
https://github.com/ayabusa/Rusty-slicer.git
synced 2024-11-21 10:43:26 +00:00
the app is working but unsafe af
This commit is contained in:
parent
34027af2f4
commit
0df3a293b5
530
src-tauri/Cargo.lock
generated
530
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
BIN
src-tauri/resources/ffmpeg-linux
Executable file
BIN
src-tauri/resources/ffmpeg-linux
Executable file
Binary file not shown.
@ -3,7 +3,8 @@
|
||||
|
||||
use native_dialog::FileDialog;
|
||||
use tauri::Manager;
|
||||
use std::sync::Mutex;
|
||||
use core::time;
|
||||
use std::{fmt::format, fs, io::{Error, ErrorKind}, path::{Path, PathBuf}, sync::Mutex, ffi::OsString};
|
||||
|
||||
#[macro_use]
|
||||
extern crate lazy_static;
|
||||
@ -34,11 +35,80 @@ async fn select_folder_button(app: tauri::AppHandle) {
|
||||
let _ = app.emit_all("folder_path_changed", Payload { message: FOLDER_PATH.lock().unwrap().to_string() });
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
fn slice_button(app: tauri::AppHandle, chapter: &str){
|
||||
// Try to format the chapters and panic if it was not able to
|
||||
let formated_chapters = match format_chapter(chapter) {
|
||||
Ok(res) => res,
|
||||
Err(error) => panic!("Problem slicing chapter: {:?}", error),
|
||||
};
|
||||
let time_codes: Vec<String> = formated_chapters.0;
|
||||
let title_names: Vec<String> = formated_chapters.1;
|
||||
|
||||
println!("time codes: \n{:?}\ntitle names: \n{:?}", time_codes, title_names);
|
||||
|
||||
// create folder if it does not exist
|
||||
/*match fs::create_dir_all(FOLDER_PATH.lock().unwrap().to_owned()) {
|
||||
Ok(res) => res,
|
||||
Err(error) => panic!("Problem creating directory : {:?}", error),
|
||||
};*/
|
||||
|
||||
for i in 0..time_codes.len(){
|
||||
let args: Vec<String>;
|
||||
let mut output_file: PathBuf = PathBuf::from(&FOLDER_PATH.lock().unwrap().to_owned());
|
||||
output_file.push(format!("{:02} - {}", i+1, title_names[i]));
|
||||
output_file.set_extension("mp3");
|
||||
|
||||
if i+1<time_codes.len() {
|
||||
args = vec!["-i".to_owned(),
|
||||
FILE_PATH.lock().unwrap().to_owned(),
|
||||
"-ss".to_owned(),
|
||||
time_codes[i].to_owned(),
|
||||
"-to".to_owned(),
|
||||
time_codes[i+1].to_owned(),
|
||||
//format!("{:?}", output_file),
|
||||
output_file.display().to_string()];
|
||||
}else {
|
||||
args = vec!["-version".to_owned()];
|
||||
}
|
||||
|
||||
// launch the final ffmpeg command
|
||||
launch_ffmpeg(app.clone(), args);
|
||||
}
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
fn debug_call(message: &str){
|
||||
println!("[DBG] {}", message);
|
||||
}
|
||||
|
||||
/// Separate time codes from title and return it to a tuple of vector of string
|
||||
/// # Example
|
||||
/// ```
|
||||
/// let formated_chapters = match format_chapter(chapter) {
|
||||
/// Ok(res) => res,
|
||||
/// Err(error) => panic!("Problem slicing chapter: {:?}", error),
|
||||
/// };
|
||||
/// let time_codes: Vec<String> = formated_chapters.0;
|
||||
/// let title_names: Vec<String> = formated_chapters.1;
|
||||
/// ```
|
||||
fn format_chapter(chapter: &str) -> Result<(Vec<String>, Vec<String>), Error>{
|
||||
let lines: Vec<&str> = chapter.split("\n").collect();
|
||||
let mut time_code: Vec<String> = vec![];
|
||||
let mut title_names: Vec<String> = vec![];
|
||||
|
||||
for l in lines.iter(){
|
||||
if l.is_empty() { break; }
|
||||
let splited_line = l.split(" - ").collect::<Vec<&str>>();
|
||||
if splited_line.len()<2 || splited_line[1] == "" { // To avoid blank title
|
||||
return Err(Error::new(ErrorKind::Other, "No title associated with the time code"));
|
||||
}
|
||||
time_code.push(splited_line[0].to_owned());
|
||||
title_names.push(splited_line[1..].join(" - "));
|
||||
}
|
||||
Ok((time_code, title_names))
|
||||
}
|
||||
|
||||
// prompt user file chooser using native_dialogue crate
|
||||
fn choose_file() -> String{
|
||||
println!("Let's choose a file !");
|
||||
@ -56,10 +126,29 @@ fn choose_folder() -> String{
|
||||
format!("{:?}", path).replace("Some(\"", "").replace("\")", "") // turn the FileDialog into a string
|
||||
}
|
||||
|
||||
fn launch_ffmpeg(app: tauri::AppHandle, args: Vec<String>) {
|
||||
// get the path from the bundled binary
|
||||
let resource_path = app.path_resolver()
|
||||
.resolve_resource("resources/ffmpeg-linux")
|
||||
.expect("failed to resolve resource");
|
||||
|
||||
println!("using ffmpeg binary : {}\nwith the following argument : {:?}", resource_path.display(), args);
|
||||
// launch the command
|
||||
let output = std::process::Command::new(resource_path.as_os_str())
|
||||
.args(args)
|
||||
.output()
|
||||
.expect("failed to execute process");
|
||||
|
||||
// print the output of the ffmpeg command
|
||||
println!("status: {}", output.status);
|
||||
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
|
||||
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
|
||||
}
|
||||
|
||||
fn main() {
|
||||
// generate the tauri app
|
||||
tauri::Builder::default()
|
||||
.invoke_handler(tauri::generate_handler![select_file_button, select_folder_button, debug_call])
|
||||
.invoke_handler(tauri::generate_handler![select_file_button, select_folder_button, debug_call, slice_button])
|
||||
.run(tauri::generate_context!())
|
||||
.expect("error while running tauri application");
|
||||
}
|
||||
|
@ -14,6 +14,9 @@
|
||||
"shell": {
|
||||
"all": true,
|
||||
"open": true
|
||||
},
|
||||
"fs": {
|
||||
"scope": ["$RESOURCE/*"]
|
||||
}
|
||||
},
|
||||
"windows": [
|
||||
@ -22,7 +25,7 @@
|
||||
"resizable": true,
|
||||
"title": "Rusty slicer",
|
||||
"width": 400,
|
||||
"height": 800
|
||||
"height": 880
|
||||
}
|
||||
],
|
||||
"security": {
|
||||
@ -38,6 +41,9 @@
|
||||
"icons/128x128@2x.png",
|
||||
"icons/icon.icns",
|
||||
"icons/icon.ico"
|
||||
],
|
||||
"resources": [
|
||||
"resources/ffmpeg-linux"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -23,8 +23,8 @@
|
||||
<button id="fileButton">choose file 📂</button>
|
||||
</div>
|
||||
|
||||
<div class="chapter-list">
|
||||
<textarea rows="30">nothing for now</textarea>
|
||||
<div>
|
||||
<textarea id="chapterList" rows="30">nothing for now</textarea>
|
||||
</div>
|
||||
|
||||
<div class="select-file">
|
||||
@ -45,7 +45,7 @@
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<button class="slice-button" type="button"> Slice 🔪</button>
|
||||
<button class="slice-button" id="sliceButton"> Slice 🔪</button>
|
||||
|
||||
<footer>
|
||||
<br>
|
||||
|
@ -1,17 +1,19 @@
|
||||
const { invoke } = window.__TAURI__.tauri;
|
||||
|
||||
|
||||
invoke("debug_call", { message: 'JS init' });
|
||||
|
||||
function select_file_button_pressed(){
|
||||
let t = invoke("select_file_button");
|
||||
invoke("select_file_button")
|
||||
}
|
||||
|
||||
function select_folder_button_pressed(){
|
||||
invoke("select_folder_button")
|
||||
}
|
||||
|
||||
function slice_button_pressed(){
|
||||
invoke("slice_button", {chapter: document.getElementById("chapterList").value})
|
||||
}
|
||||
|
||||
document.getElementById("folderButton").addEventListener("click", select_folder_button_pressed);
|
||||
document.getElementById("fileButton").addEventListener("click", select_file_button_pressed);
|
||||
|
||||
document.getElementById("sliceButton").addEventListener("click", slice_button_pressed);
|
File diff suppressed because one or more lines are too long
@ -29,8 +29,14 @@ img{
|
||||
row-gap: 0;
|
||||
}
|
||||
|
||||
p{
|
||||
::-moz-selection { /* Code for Firefox */
|
||||
color: #ffffff;
|
||||
background: #d88939;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: #ffffff;
|
||||
background: #d88939;
|
||||
}
|
||||
|
||||
|
||||
|
674
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/GPLv3.txt
vendored
Normal file
674
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/GPLv3.txt
vendored
Normal file
@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/ffmpeg
vendored
Executable file
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/ffmpeg
vendored
Executable file
Binary file not shown.
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/ffprobe
vendored
Executable file
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/ffprobe
vendored
Executable file
Binary file not shown.
50843
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-all.txt
vendored
Normal file
50843
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-all.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
872
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-bitstream-filters.txt
vendored
Normal file
872
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-bitstream-filters.txt
vendored
Normal file
@ -0,0 +1,872 @@
|
||||
FFMPEG-BITSTREAM-FILTERS(1) FFMPEG-BITSTREAM-FILTERS(1)
|
||||
|
||||
NAME
|
||||
ffmpeg-bitstream-filters - FFmpeg bitstream filters
|
||||
|
||||
DESCRIPTION
|
||||
This document describes the bitstream filters provided by the
|
||||
libavcodec library.
|
||||
|
||||
A bitstream filter operates on the encoded stream data, and performs
|
||||
bitstream level modifications without performing decoding.
|
||||
|
||||
BITSTREAM FILTERS
|
||||
When you configure your FFmpeg build, all the supported bitstream
|
||||
filters are enabled by default. You can list all available ones using
|
||||
the configure option "--list-bsfs".
|
||||
|
||||
You can disable all the bitstream filters using the configure option
|
||||
"--disable-bsfs", and selectively enable any bitstream filter using the
|
||||
option "--enable-bsf=BSF", or you can disable a particular bitstream
|
||||
filter using the option "--disable-bsf=BSF".
|
||||
|
||||
The option "-bsfs" of the ff* tools will display the list of all the
|
||||
supported bitstream filters included in your build.
|
||||
|
||||
The ff* tools have a -bsf option applied per stream, taking a comma-
|
||||
separated list of filters, whose parameters follow the filter name
|
||||
after a '='.
|
||||
|
||||
ffmpeg -i INPUT -c:v copy -bsf:v filter1[=opt1=str1:opt2=str2][,filter2] OUTPUT
|
||||
|
||||
Below is a description of the currently available bitstream filters,
|
||||
with their parameters, if any.
|
||||
|
||||
aac_adtstoasc
|
||||
Convert MPEG-2/4 AAC ADTS to an MPEG-4 Audio Specific Configuration
|
||||
bitstream.
|
||||
|
||||
This filter creates an MPEG-4 AudioSpecificConfig from an MPEG-2/4 ADTS
|
||||
header and removes the ADTS header.
|
||||
|
||||
This filter is required for example when copying an AAC stream from a
|
||||
raw ADTS AAC or an MPEG-TS container to MP4A-LATM, to an FLV file, or
|
||||
to MOV/MP4 files and related formats such as 3GP or M4A. Please note
|
||||
that it is auto-inserted for MP4A-LATM and MOV/MP4 and related formats.
|
||||
|
||||
av1_metadata
|
||||
Modify metadata embedded in an AV1 stream.
|
||||
|
||||
td Insert or remove temporal delimiter OBUs in all temporal units of
|
||||
the stream.
|
||||
|
||||
insert
|
||||
Insert a TD at the beginning of every TU which does not already
|
||||
have one.
|
||||
|
||||
remove
|
||||
Remove the TD from the beginning of every TU which has one.
|
||||
|
||||
color_primaries
|
||||
transfer_characteristics
|
||||
matrix_coefficients
|
||||
Set the color description fields in the stream (see AV1 section
|
||||
6.4.2).
|
||||
|
||||
color_range
|
||||
Set the color range in the stream (see AV1 section 6.4.2; note that
|
||||
this cannot be set for streams using BT.709 primaries, sRGB
|
||||
transfer characteristic and identity (RGB) matrix coefficients).
|
||||
|
||||
tv Limited range.
|
||||
|
||||
pc Full range.
|
||||
|
||||
chroma_sample_position
|
||||
Set the chroma sample location in the stream (see AV1 section
|
||||
6.4.2). This can only be set for 4:2:0 streams.
|
||||
|
||||
vertical
|
||||
Left position (matching the default in MPEG-2 and H.264).
|
||||
|
||||
colocated
|
||||
Top-left position.
|
||||
|
||||
tick_rate
|
||||
Set the tick rate (time_scale / num_units_in_display_tick) in the
|
||||
timing info in the sequence header.
|
||||
|
||||
num_ticks_per_picture
|
||||
Set the number of ticks in each picture, to indicate that the
|
||||
stream has a fixed framerate. Ignored if tick_rate is not also
|
||||
set.
|
||||
|
||||
delete_padding
|
||||
Deletes Padding OBUs.
|
||||
|
||||
chomp
|
||||
Remove zero padding at the end of a packet.
|
||||
|
||||
dca_core
|
||||
Extract the core from a DCA/DTS stream, dropping extensions such as
|
||||
DTS-HD.
|
||||
|
||||
dump_extra
|
||||
Add extradata to the beginning of the filtered packets except when said
|
||||
packets already exactly begin with the extradata that is intended to be
|
||||
added.
|
||||
|
||||
freq
|
||||
The additional argument specifies which packets should be filtered.
|
||||
It accepts the values:
|
||||
|
||||
k
|
||||
keyframe
|
||||
add extradata to all key packets
|
||||
|
||||
e
|
||||
all add extradata to all packets
|
||||
|
||||
If not specified it is assumed k.
|
||||
|
||||
For example the following ffmpeg command forces a global header (thus
|
||||
disabling individual packet headers) in the H.264 packets generated by
|
||||
the "libx264" encoder, but corrects them by adding the header stored in
|
||||
extradata to the key packets:
|
||||
|
||||
ffmpeg -i INPUT -map 0 -flags:v +global_header -c:v libx264 -bsf:v dump_extra out.ts
|
||||
|
||||
dv_error_marker
|
||||
Blocks in DV which are marked as damaged are replaced by blocks of the
|
||||
specified color.
|
||||
|
||||
color
|
||||
The color to replace damaged blocks by
|
||||
|
||||
sta A 16 bit mask which specifies which of the 16 possible error status
|
||||
values are to be replaced by colored blocks. 0xFFFE is the default
|
||||
which replaces all non 0 error status values.
|
||||
|
||||
ok No error, no concealment
|
||||
|
||||
err Error, No concealment
|
||||
|
||||
res Reserved
|
||||
|
||||
notok
|
||||
Error or concealment
|
||||
|
||||
notres
|
||||
Not reserved
|
||||
|
||||
Aa, Ba, Ca, Ab, Bb, Cb, A, B, C, a, b, erri, erru
|
||||
The specific error status code
|
||||
|
||||
see page 44-46 or section 5.5 of
|
||||
<http://web.archive.org/web/20060927044735/http://www.smpte.org/smpte_store/standards/pdf/s314m.pdf>
|
||||
|
||||
eac3_core
|
||||
Extract the core from a E-AC-3 stream, dropping extra channels.
|
||||
|
||||
extract_extradata
|
||||
Extract the in-band extradata.
|
||||
|
||||
Certain codecs allow the long-term headers (e.g. MPEG-2 sequence
|
||||
headers, or H.264/HEVC (VPS/)SPS/PPS) to be transmitted either "in-
|
||||
band" (i.e. as a part of the bitstream containing the coded frames) or
|
||||
"out of band" (e.g. on the container level). This latter form is called
|
||||
"extradata" in FFmpeg terminology.
|
||||
|
||||
This bitstream filter detects the in-band headers and makes them
|
||||
available as extradata.
|
||||
|
||||
remove
|
||||
When this option is enabled, the long-term headers are removed from
|
||||
the bitstream after extraction.
|
||||
|
||||
filter_units
|
||||
Remove units with types in or not in a given set from the stream.
|
||||
|
||||
pass_types
|
||||
List of unit types or ranges of unit types to pass through while
|
||||
removing all others. This is specified as a '|'-separated list of
|
||||
unit type values or ranges of values with '-'.
|
||||
|
||||
remove_types
|
||||
Identical to pass_types, except the units in the given set removed
|
||||
and all others passed through.
|
||||
|
||||
Extradata is unchanged by this transformation, but note that if the
|
||||
stream contains inline parameter sets then the output may be unusable
|
||||
if they are removed.
|
||||
|
||||
For example, to remove all non-VCL NAL units from an H.264 stream:
|
||||
|
||||
ffmpeg -i INPUT -c:v copy -bsf:v 'filter_units=pass_types=1-5' OUTPUT
|
||||
|
||||
To remove all AUDs, SEI and filler from an H.265 stream:
|
||||
|
||||
ffmpeg -i INPUT -c:v copy -bsf:v 'filter_units=remove_types=35|38-40' OUTPUT
|
||||
|
||||
hapqa_extract
|
||||
Extract Rgb or Alpha part of an HAPQA file, without recompression, in
|
||||
order to create an HAPQ or an HAPAlphaOnly file.
|
||||
|
||||
texture
|
||||
Specifies the texture to keep.
|
||||
|
||||
color
|
||||
alpha
|
||||
|
||||
Convert HAPQA to HAPQ
|
||||
|
||||
ffmpeg -i hapqa_inputfile.mov -c copy -bsf:v hapqa_extract=texture=color -tag:v HapY -metadata:s:v:0 encoder="HAPQ" hapq_file.mov
|
||||
|
||||
Convert HAPQA to HAPAlphaOnly
|
||||
|
||||
ffmpeg -i hapqa_inputfile.mov -c copy -bsf:v hapqa_extract=texture=alpha -tag:v HapA -metadata:s:v:0 encoder="HAPAlpha Only" hapalphaonly_file.mov
|
||||
|
||||
h264_metadata
|
||||
Modify metadata embedded in an H.264 stream.
|
||||
|
||||
aud Insert or remove AUD NAL units in all access units of the stream.
|
||||
|
||||
pass
|
||||
insert
|
||||
remove
|
||||
|
||||
Default is pass.
|
||||
|
||||
sample_aspect_ratio
|
||||
Set the sample aspect ratio of the stream in the VUI parameters.
|
||||
See H.264 table E-1.
|
||||
|
||||
overscan_appropriate_flag
|
||||
Set whether the stream is suitable for display using overscan or
|
||||
not (see H.264 section E.2.1).
|
||||
|
||||
video_format
|
||||
video_full_range_flag
|
||||
Set the video format in the stream (see H.264 section E.2.1 and
|
||||
table E-2).
|
||||
|
||||
colour_primaries
|
||||
transfer_characteristics
|
||||
matrix_coefficients
|
||||
Set the colour description in the stream (see H.264 section E.2.1
|
||||
and tables E-3, E-4 and E-5).
|
||||
|
||||
chroma_sample_loc_type
|
||||
Set the chroma sample location in the stream (see H.264 section
|
||||
E.2.1 and figure E-1).
|
||||
|
||||
tick_rate
|
||||
Set the tick rate (time_scale / num_units_in_tick) in the VUI
|
||||
parameters. This is the smallest time unit representable in the
|
||||
stream, and in many cases represents the field rate of the stream
|
||||
(double the frame rate).
|
||||
|
||||
fixed_frame_rate_flag
|
||||
Set whether the stream has fixed framerate - typically this
|
||||
indicates that the framerate is exactly half the tick rate, but the
|
||||
exact meaning is dependent on interlacing and the picture structure
|
||||
(see H.264 section E.2.1 and table E-6).
|
||||
|
||||
zero_new_constraint_set_flags
|
||||
Zero constraint_set4_flag and constraint_set5_flag in the SPS.
|
||||
These bits were reserved in a previous version of the H.264 spec,
|
||||
and thus some hardware decoders require these to be zero. The
|
||||
result of zeroing this is still a valid bitstream.
|
||||
|
||||
crop_left
|
||||
crop_right
|
||||
crop_top
|
||||
crop_bottom
|
||||
Set the frame cropping offsets in the SPS. These values will
|
||||
replace the current ones if the stream is already cropped.
|
||||
|
||||
These fields are set in pixels. Note that some sizes may not be
|
||||
representable if the chroma is subsampled or the stream is
|
||||
interlaced (see H.264 section 7.4.2.1.1).
|
||||
|
||||
sei_user_data
|
||||
Insert a string as SEI unregistered user data. The argument must
|
||||
be of the form UUID+string, where the UUID is as hex digits
|
||||
possibly separated by hyphens, and the string can be anything.
|
||||
|
||||
For example, 086f3693-b7b3-4f2c-9653-21492feee5b8+hello will insert
|
||||
the string ``hello'' associated with the given UUID.
|
||||
|
||||
delete_filler
|
||||
Deletes both filler NAL units and filler SEI messages.
|
||||
|
||||
display_orientation
|
||||
Insert, extract or remove Display orientation SEI messages. See
|
||||
H.264 section D.1.27 and D.2.27 for syntax and semantics.
|
||||
|
||||
pass
|
||||
insert
|
||||
remove
|
||||
extract
|
||||
|
||||
Default is pass.
|
||||
|
||||
Insert mode works in conjunction with "rotate" and "flip" options.
|
||||
Any pre-existing Display orientation messages will be removed in
|
||||
insert or remove mode. Extract mode attaches the display matrix to
|
||||
the packet as side data.
|
||||
|
||||
rotate
|
||||
Set rotation in display orientation SEI (anticlockwise angle in
|
||||
degrees). Range is -360 to +360. Default is NaN.
|
||||
|
||||
flip
|
||||
Set flip in display orientation SEI.
|
||||
|
||||
horizontal
|
||||
vertical
|
||||
|
||||
Default is unset.
|
||||
|
||||
level
|
||||
Set the level in the SPS. Refer to H.264 section A.3 and tables
|
||||
A-1 to A-5.
|
||||
|
||||
The argument must be the name of a level (for example, 4.2), a
|
||||
level_idc value (for example, 42), or the special name auto
|
||||
indicating that the filter should attempt to guess the level from
|
||||
the input stream properties.
|
||||
|
||||
h264_mp4toannexb
|
||||
Convert an H.264 bitstream from length prefixed mode to start code
|
||||
prefixed mode (as defined in the Annex B of the ITU-T H.264
|
||||
specification).
|
||||
|
||||
This is required by some streaming formats, typically the MPEG-2
|
||||
transport stream format (muxer "mpegts").
|
||||
|
||||
For example to remux an MP4 file containing an H.264 stream to mpegts
|
||||
format with ffmpeg, you can use the command:
|
||||
|
||||
ffmpeg -i INPUT.mp4 -codec copy -bsf:v h264_mp4toannexb OUTPUT.ts
|
||||
|
||||
Please note that this filter is auto-inserted for MPEG-TS (muxer
|
||||
"mpegts") and raw H.264 (muxer "h264") output formats.
|
||||
|
||||
h264_redundant_pps
|
||||
This applies a specific fixup to some Blu-ray streams which contain
|
||||
redundant PPSs modifying irrelevant parameters of the stream which
|
||||
confuse other transformations which require correct extradata.
|
||||
|
||||
hevc_metadata
|
||||
Modify metadata embedded in an HEVC stream.
|
||||
|
||||
aud Insert or remove AUD NAL units in all access units of the stream.
|
||||
|
||||
insert
|
||||
remove
|
||||
sample_aspect_ratio
|
||||
Set the sample aspect ratio in the stream in the VUI parameters.
|
||||
|
||||
video_format
|
||||
video_full_range_flag
|
||||
Set the video format in the stream (see H.265 section E.3.1 and
|
||||
table E.2).
|
||||
|
||||
colour_primaries
|
||||
transfer_characteristics
|
||||
matrix_coefficients
|
||||
Set the colour description in the stream (see H.265 section E.3.1
|
||||
and tables E.3, E.4 and E.5).
|
||||
|
||||
chroma_sample_loc_type
|
||||
Set the chroma sample location in the stream (see H.265 section
|
||||
E.3.1 and figure E.1).
|
||||
|
||||
tick_rate
|
||||
Set the tick rate in the VPS and VUI parameters (time_scale /
|
||||
num_units_in_tick). Combined with num_ticks_poc_diff_one, this can
|
||||
set a constant framerate in the stream. Note that it is likely to
|
||||
be overridden by container parameters when the stream is in a
|
||||
container.
|
||||
|
||||
num_ticks_poc_diff_one
|
||||
Set poc_proportional_to_timing_flag in VPS and VUI and use this
|
||||
value to set num_ticks_poc_diff_one_minus1 (see H.265 sections
|
||||
7.4.3.1 and E.3.1). Ignored if tick_rate is not also set.
|
||||
|
||||
crop_left
|
||||
crop_right
|
||||
crop_top
|
||||
crop_bottom
|
||||
Set the conformance window cropping offsets in the SPS. These
|
||||
values will replace the current ones if the stream is already
|
||||
cropped.
|
||||
|
||||
These fields are set in pixels. Note that some sizes may not be
|
||||
representable if the chroma is subsampled (H.265 section
|
||||
7.4.3.2.1).
|
||||
|
||||
level
|
||||
Set the level in the VPS and SPS. See H.265 section A.4 and tables
|
||||
A.6 and A.7.
|
||||
|
||||
The argument must be the name of a level (for example, 5.1), a
|
||||
general_level_idc value (for example, 153 for level 5.1), or the
|
||||
special name auto indicating that the filter should attempt to
|
||||
guess the level from the input stream properties.
|
||||
|
||||
hevc_mp4toannexb
|
||||
Convert an HEVC/H.265 bitstream from length prefixed mode to start code
|
||||
prefixed mode (as defined in the Annex B of the ITU-T H.265
|
||||
specification).
|
||||
|
||||
This is required by some streaming formats, typically the MPEG-2
|
||||
transport stream format (muxer "mpegts").
|
||||
|
||||
For example to remux an MP4 file containing an HEVC stream to mpegts
|
||||
format with ffmpeg, you can use the command:
|
||||
|
||||
ffmpeg -i INPUT.mp4 -codec copy -bsf:v hevc_mp4toannexb OUTPUT.ts
|
||||
|
||||
Please note that this filter is auto-inserted for MPEG-TS (muxer
|
||||
"mpegts") and raw HEVC/H.265 (muxer "h265" or "hevc") output formats.
|
||||
|
||||
imxdump
|
||||
Modifies the bitstream to fit in MOV and to be usable by the Final Cut
|
||||
Pro decoder. This filter only applies to the mpeg2video codec, and is
|
||||
likely not needed for Final Cut Pro 7 and newer with the appropriate
|
||||
-tag:v.
|
||||
|
||||
For example, to remux 30 MB/sec NTSC IMX to MOV:
|
||||
|
||||
ffmpeg -i input.mxf -c copy -bsf:v imxdump -tag:v mx3n output.mov
|
||||
|
||||
mjpeg2jpeg
|
||||
Convert MJPEG/AVI1 packets to full JPEG/JFIF packets.
|
||||
|
||||
MJPEG is a video codec wherein each video frame is essentially a JPEG
|
||||
image. The individual frames can be extracted without loss, e.g. by
|
||||
|
||||
ffmpeg -i ../some_mjpeg.avi -c:v copy frames_%d.jpg
|
||||
|
||||
Unfortunately, these chunks are incomplete JPEG images, because they
|
||||
lack the DHT segment required for decoding. Quoting from
|
||||
<http://www.digitalpreservation.gov/formats/fdd/fdd000063.shtml>:
|
||||
|
||||
Avery Lee, writing in the rec.video.desktop newsgroup in 2001,
|
||||
commented that "MJPEG, or at least the MJPEG in AVIs having the MJPG
|
||||
fourcc, is restricted JPEG with a fixed -- and *omitted* -- Huffman
|
||||
table. The JPEG must be YCbCr colorspace, it must be 4:2:2, and it must
|
||||
use basic Huffman encoding, not arithmetic or progressive. . . . You
|
||||
can indeed extract the MJPEG frames and decode them with a regular JPEG
|
||||
decoder, but you have to prepend the DHT segment to them, or else the
|
||||
decoder won't have any idea how to decompress the data. The exact table
|
||||
necessary is given in the OpenDML spec."
|
||||
|
||||
This bitstream filter patches the header of frames extracted from an
|
||||
MJPEG stream (carrying the AVI1 header ID and lacking a DHT segment) to
|
||||
produce fully qualified JPEG images.
|
||||
|
||||
ffmpeg -i mjpeg-movie.avi -c:v copy -bsf:v mjpeg2jpeg frame_%d.jpg
|
||||
exiftran -i -9 frame*.jpg
|
||||
ffmpeg -i frame_%d.jpg -c:v copy rotated.avi
|
||||
|
||||
mjpegadump
|
||||
Add an MJPEG A header to the bitstream, to enable decoding by
|
||||
Quicktime.
|
||||
|
||||
mov2textsub
|
||||
Extract a representable text file from MOV subtitles, stripping the
|
||||
metadata header from each subtitle packet.
|
||||
|
||||
See also the text2movsub filter.
|
||||
|
||||
mp3decomp
|
||||
Decompress non-standard compressed MP3 audio headers.
|
||||
|
||||
mpeg2_metadata
|
||||
Modify metadata embedded in an MPEG-2 stream.
|
||||
|
||||
display_aspect_ratio
|
||||
Set the display aspect ratio in the stream.
|
||||
|
||||
The following fixed values are supported:
|
||||
|
||||
4/3
|
||||
16/9
|
||||
221/100
|
||||
|
||||
Any other value will result in square pixels being signalled
|
||||
instead (see H.262 section 6.3.3 and table 6-3).
|
||||
|
||||
frame_rate
|
||||
Set the frame rate in the stream. This is constructed from a table
|
||||
of known values combined with a small multiplier and divisor - if
|
||||
the supplied value is not exactly representable, the nearest
|
||||
representable value will be used instead (see H.262 section 6.3.3
|
||||
and table 6-4).
|
||||
|
||||
video_format
|
||||
Set the video format in the stream (see H.262 section 6.3.6 and
|
||||
table 6-6).
|
||||
|
||||
colour_primaries
|
||||
transfer_characteristics
|
||||
matrix_coefficients
|
||||
Set the colour description in the stream (see H.262 section 6.3.6
|
||||
and tables 6-7, 6-8 and 6-9).
|
||||
|
||||
mpeg4_unpack_bframes
|
||||
Unpack DivX-style packed B-frames.
|
||||
|
||||
DivX-style packed B-frames are not valid MPEG-4 and were only a
|
||||
workaround for the broken Video for Windows subsystem. They use more
|
||||
space, can cause minor AV sync issues, require more CPU power to decode
|
||||
(unless the player has some decoded picture queue to compensate the
|
||||
2,0,2,0 frame per packet style) and cause trouble if copied into a
|
||||
standard container like mp4 or mpeg-ps/ts, because MPEG-4 decoders may
|
||||
not be able to decode them, since they are not valid MPEG-4.
|
||||
|
||||
For example to fix an AVI file containing an MPEG-4 stream with DivX-
|
||||
style packed B-frames using ffmpeg, you can use the command:
|
||||
|
||||
ffmpeg -i INPUT.avi -codec copy -bsf:v mpeg4_unpack_bframes OUTPUT.avi
|
||||
|
||||
noise
|
||||
Damages the contents of packets or simply drops them without damaging
|
||||
the container. Can be used for fuzzing or testing error
|
||||
resilience/concealment.
|
||||
|
||||
Parameters:
|
||||
|
||||
amount
|
||||
Accepts an expression whose evaluation per-packet determines how
|
||||
often bytes in that packet will be modified. A value below 0 will
|
||||
result in a variable frequency. Default is 0 which results in no
|
||||
modification. However, if neither amount nor drop is specified,
|
||||
amount will be set to -1. See below for accepted variables.
|
||||
|
||||
drop
|
||||
Accepts an expression evaluated per-packet whose value determines
|
||||
whether that packet is dropped. Evaluation to a positive value
|
||||
results in the packet being dropped. Evaluation to a negative value
|
||||
results in a variable chance of it being dropped, roughly inverse
|
||||
in proportion to the magnitude of the value. Default is 0 which
|
||||
results in no drops. See below for accepted variables.
|
||||
|
||||
dropamount
|
||||
Accepts a non-negative integer, which assigns a variable chance of
|
||||
it being dropped, roughly inverse in proportion to the value.
|
||||
Default is 0 which results in no drops. This option is kept for
|
||||
backwards compatibility and is equivalent to setting drop to a
|
||||
negative value with the same magnitude i.e. "dropamount=4" is the
|
||||
same as "drop=-4". Ignored if drop is also specified.
|
||||
|
||||
Both "amount" and "drop" accept expressions containing the following
|
||||
variables:
|
||||
|
||||
n The index of the packet, starting from zero.
|
||||
|
||||
tb The timebase for packet timestamps.
|
||||
|
||||
pts Packet presentation timestamp.
|
||||
|
||||
dts Packet decoding timestamp.
|
||||
|
||||
nopts
|
||||
Constant representing AV_NOPTS_VALUE.
|
||||
|
||||
startpts
|
||||
First non-AV_NOPTS_VALUE PTS seen in the stream.
|
||||
|
||||
startdts
|
||||
First non-AV_NOPTS_VALUE DTS seen in the stream.
|
||||
|
||||
duration
|
||||
d Packet duration, in timebase units.
|
||||
|
||||
pos Packet position in input; may be -1 when unknown or not set.
|
||||
|
||||
size
|
||||
Packet size, in bytes.
|
||||
|
||||
key Whether packet is marked as a keyframe.
|
||||
|
||||
state
|
||||
A pseudo random integer, primarily derived from the content of
|
||||
packet payload.
|
||||
|
||||
Examples
|
||||
|
||||
Apply modification to every byte but don't drop any packets.
|
||||
|
||||
ffmpeg -i INPUT -c copy -bsf noise=1 output.mkv
|
||||
|
||||
Drop every video packet not marked as a keyframe after timestamp 30s
|
||||
but do not modify any of the remaining packets.
|
||||
|
||||
ffmpeg -i INPUT -c copy -bsf:v noise=drop='gt(t\,30)*not(key)' output.mkv
|
||||
|
||||
Drop one second of audio every 10 seconds and add some random noise to
|
||||
the rest.
|
||||
|
||||
ffmpeg -i INPUT -c copy -bsf:a noise=amount=-1:drop='between(mod(t\,10)\,9\,10)' output.mkv
|
||||
|
||||
null
|
||||
This bitstream filter passes the packets through unchanged.
|
||||
|
||||
pcm_rechunk
|
||||
Repacketize PCM audio to a fixed number of samples per packet or a
|
||||
fixed packet rate per second. This is similar to the asetnsamples audio
|
||||
filter but works on audio packets instead of audio frames.
|
||||
|
||||
nb_out_samples, n
|
||||
Set the number of samples per each output audio packet. The number
|
||||
is intended as the number of samples per each channel. Default
|
||||
value is 1024.
|
||||
|
||||
pad, p
|
||||
If set to 1, the filter will pad the last audio packet with
|
||||
silence, so that it will contain the same number of samples (or
|
||||
roughly the same number of samples, see frame_rate) as the previous
|
||||
ones. Default value is 1.
|
||||
|
||||
frame_rate, r
|
||||
This option makes the filter output a fixed number of packets per
|
||||
second instead of a fixed number of samples per packet. If the
|
||||
audio sample rate is not divisible by the frame rate then the
|
||||
number of samples will not be constant but will vary slightly so
|
||||
that each packet will start as close to the frame boundary as
|
||||
possible. Using this option has precedence over nb_out_samples.
|
||||
|
||||
You can generate the well known 1602-1601-1602-1601-1602 pattern of
|
||||
48kHz audio for NTSC frame rate using the frame_rate option.
|
||||
|
||||
ffmpeg -f lavfi -i sine=r=48000:d=1 -c pcm_s16le -bsf pcm_rechunk=r=30000/1001 -f framecrc -
|
||||
|
||||
pgs_frame_merge
|
||||
Merge a sequence of PGS Subtitle segments ending with an "end of
|
||||
display set" segment into a single packet.
|
||||
|
||||
This is required by some containers that support PGS subtitles (muxer
|
||||
"matroska").
|
||||
|
||||
prores_metadata
|
||||
Modify color property metadata embedded in prores stream.
|
||||
|
||||
color_primaries
|
||||
Set the color primaries. Available values are:
|
||||
|
||||
auto
|
||||
Keep the same color primaries property (default).
|
||||
|
||||
unknown
|
||||
bt709
|
||||
bt470bg
|
||||
BT601 625
|
||||
|
||||
smpte170m
|
||||
BT601 525
|
||||
|
||||
bt2020
|
||||
smpte431
|
||||
DCI P3
|
||||
|
||||
smpte432
|
||||
P3 D65
|
||||
|
||||
transfer_characteristics
|
||||
Set the color transfer. Available values are:
|
||||
|
||||
auto
|
||||
Keep the same transfer characteristics property (default).
|
||||
|
||||
unknown
|
||||
bt709
|
||||
BT 601, BT 709, BT 2020
|
||||
|
||||
smpte2084
|
||||
SMPTE ST 2084
|
||||
|
||||
arib-std-b67
|
||||
ARIB STD-B67
|
||||
|
||||
matrix_coefficients
|
||||
Set the matrix coefficient. Available values are:
|
||||
|
||||
auto
|
||||
Keep the same colorspace property (default).
|
||||
|
||||
unknown
|
||||
bt709
|
||||
smpte170m
|
||||
BT 601
|
||||
|
||||
bt2020nc
|
||||
|
||||
Set Rec709 colorspace for each frame of the file
|
||||
|
||||
ffmpeg -i INPUT -c copy -bsf:v prores_metadata=color_primaries=bt709:color_trc=bt709:colorspace=bt709 output.mov
|
||||
|
||||
Set Hybrid Log-Gamma parameters for each frame of the file
|
||||
|
||||
ffmpeg -i INPUT -c copy -bsf:v prores_metadata=color_primaries=bt2020:color_trc=arib-std-b67:colorspace=bt2020nc output.mov
|
||||
|
||||
remove_extra
|
||||
Remove extradata from packets.
|
||||
|
||||
It accepts the following parameter:
|
||||
|
||||
freq
|
||||
Set which frame types to remove extradata from.
|
||||
|
||||
k Remove extradata from non-keyframes only.
|
||||
|
||||
keyframe
|
||||
Remove extradata from keyframes only.
|
||||
|
||||
e, all
|
||||
Remove extradata from all frames.
|
||||
|
||||
setts
|
||||
Set PTS and DTS in packets.
|
||||
|
||||
It accepts the following parameters:
|
||||
|
||||
ts
|
||||
pts
|
||||
dts Set expressions for PTS, DTS or both.
|
||||
|
||||
duration
|
||||
Set expression for duration.
|
||||
|
||||
time_base
|
||||
Set output time base.
|
||||
|
||||
The expressions are evaluated through the eval API and can contain the
|
||||
following constants:
|
||||
|
||||
N The count of the input packet. Starting from 0.
|
||||
|
||||
TS The demux timestamp in input in case of "ts" or "dts" option or
|
||||
presentation timestamp in case of "pts" option.
|
||||
|
||||
POS The original position in the file of the packet, or undefined if
|
||||
undefined for the current packet
|
||||
|
||||
DTS The demux timestamp in input.
|
||||
|
||||
PTS The presentation timestamp in input.
|
||||
|
||||
DURATION
|
||||
The duration in input.
|
||||
|
||||
STARTDTS
|
||||
The DTS of the first packet.
|
||||
|
||||
STARTPTS
|
||||
The PTS of the first packet.
|
||||
|
||||
PREV_INDTS
|
||||
The previous input DTS.
|
||||
|
||||
PREV_INPTS
|
||||
The previous input PTS.
|
||||
|
||||
PREV_INDURATION
|
||||
The previous input duration.
|
||||
|
||||
PREV_OUTDTS
|
||||
The previous output DTS.
|
||||
|
||||
PREV_OUTPTS
|
||||
The previous output PTS.
|
||||
|
||||
PREV_OUTDURATION
|
||||
The previous output duration.
|
||||
|
||||
NEXT_DTS
|
||||
The next input DTS.
|
||||
|
||||
NEXT_PTS
|
||||
The next input PTS.
|
||||
|
||||
NEXT_DURATION
|
||||
The next input duration.
|
||||
|
||||
TB The timebase of stream packet belongs.
|
||||
|
||||
TB_OUT
|
||||
The output timebase.
|
||||
|
||||
SR The sample rate of stream packet belongs.
|
||||
|
||||
NOPTS
|
||||
The AV_NOPTS_VALUE constant.
|
||||
|
||||
For example, to set PTS equal to DTS (not recommended if B-frames are
|
||||
involved):
|
||||
|
||||
ffmpeg -i INPUT -c:a copy -bsf:a setts=pts=DTS out.mkv
|
||||
|
||||
showinfo
|
||||
Log basic packet information. Mainly useful for testing, debugging, and
|
||||
development.
|
||||
|
||||
text2movsub
|
||||
Convert text subtitles to MOV subtitles (as used by the "mov_text"
|
||||
codec) with metadata headers.
|
||||
|
||||
See also the mov2textsub filter.
|
||||
|
||||
trace_headers
|
||||
Log trace output containing all syntax elements in the coded stream
|
||||
headers (everything above the level of individual coded blocks). This
|
||||
can be useful for debugging low-level stream issues.
|
||||
|
||||
Supports AV1, H.264, H.265, (M)JPEG, MPEG-2 and VP9, but depending on
|
||||
the build only a subset of these may be available.
|
||||
|
||||
truehd_core
|
||||
Extract the core from a TrueHD stream, dropping ATMOS data.
|
||||
|
||||
vp9_metadata
|
||||
Modify metadata embedded in a VP9 stream.
|
||||
|
||||
color_space
|
||||
Set the color space value in the frame header. Note that any frame
|
||||
set to RGB will be implicitly set to PC range and that RGB is
|
||||
incompatible with profiles 0 and 2.
|
||||
|
||||
unknown
|
||||
bt601
|
||||
bt709
|
||||
smpte170
|
||||
smpte240
|
||||
bt2020
|
||||
rgb
|
||||
color_range
|
||||
Set the color range value in the frame header. Note that any value
|
||||
imposed by the color space will take precedence over this value.
|
||||
|
||||
tv
|
||||
pc
|
||||
|
||||
vp9_superframe
|
||||
Merge VP9 invisible (alt-ref) frames back into VP9 superframes. This
|
||||
fixes merging of split/segmented VP9 streams where the alt-ref frame
|
||||
was split from its visible counterpart.
|
||||
|
||||
vp9_superframe_split
|
||||
Split VP9 superframes into single frames.
|
||||
|
||||
vp9_raw_reorder
|
||||
Given a VP9 stream with correct timestamps but possibly out of order,
|
||||
insert additional show-existing-frame packets to correct the ordering.
|
||||
|
||||
SEE ALSO
|
||||
ffmpeg(1), ffplay(1), ffprobe(1), libavcodec(3)
|
||||
|
||||
AUTHORS
|
||||
The FFmpeg developers.
|
||||
|
||||
For details about the authorship, see the Git history of the project
|
||||
(https://git.ffmpeg.org/ffmpeg), e.g. by typing the command git log in
|
||||
the FFmpeg source directory, or browsing the online repository at
|
||||
<https://git.ffmpeg.org/ffmpeg>.
|
||||
|
||||
Maintainers for the specific components are listed in the file
|
||||
MAINTAINERS in the source code tree.
|
||||
|
||||
FFMPEG-BITSTREAM-FILTERS(1)
|
5673
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-codecs.txt
vendored
Normal file
5673
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-codecs.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1909
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-devices.txt
vendored
Normal file
1909
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-devices.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
29356
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-filters.txt
vendored
Normal file
29356
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-filters.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4674
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-formats.txt
vendored
Normal file
4674
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-formats.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1960
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-protocols.txt
vendored
Normal file
1960
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-protocols.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
259
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-resampler.txt
vendored
Normal file
259
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-resampler.txt
vendored
Normal file
@ -0,0 +1,259 @@
|
||||
FFMPEG-RESAMPLER(1) FFMPEG-RESAMPLER(1)
|
||||
|
||||
NAME
|
||||
ffmpeg-resampler - FFmpeg Resampler
|
||||
|
||||
DESCRIPTION
|
||||
The FFmpeg resampler provides a high-level interface to the
|
||||
libswresample library audio resampling utilities. In particular it
|
||||
allows one to perform audio resampling, audio channel layout
|
||||
rematrixing, and convert audio format and packing layout.
|
||||
|
||||
RESAMPLER OPTIONS
|
||||
The audio resampler supports the following named options.
|
||||
|
||||
Options may be set by specifying -option value in the FFmpeg tools,
|
||||
option=value for the aresample filter, by setting the value explicitly
|
||||
in the "SwrContext" options or using the libavutil/opt.h API for
|
||||
programmatic use.
|
||||
|
||||
uchl, used_chlayout
|
||||
Set used input channel layout. Default is unset. This option is
|
||||
only used for special remapping.
|
||||
|
||||
isr, in_sample_rate
|
||||
Set the input sample rate. Default value is 0.
|
||||
|
||||
osr, out_sample_rate
|
||||
Set the output sample rate. Default value is 0.
|
||||
|
||||
isf, in_sample_fmt
|
||||
Specify the input sample format. It is set by default to "none".
|
||||
|
||||
osf, out_sample_fmt
|
||||
Specify the output sample format. It is set by default to "none".
|
||||
|
||||
tsf, internal_sample_fmt
|
||||
Set the internal sample format. Default value is "none". This will
|
||||
automatically be chosen when it is not explicitly set.
|
||||
|
||||
ichl, in_chlayout
|
||||
ochl, out_chlayout
|
||||
Set the input/output channel layout.
|
||||
|
||||
See the Channel Layout section in the ffmpeg-utils(1) manual for
|
||||
the required syntax.
|
||||
|
||||
clev, center_mix_level
|
||||
Set the center mix level. It is a value expressed in deciBel, and
|
||||
must be in the interval [-32,32].
|
||||
|
||||
slev, surround_mix_level
|
||||
Set the surround mix level. It is a value expressed in deciBel, and
|
||||
must be in the interval [-32,32].
|
||||
|
||||
lfe_mix_level
|
||||
Set LFE mix into non LFE level. It is used when there is a LFE
|
||||
input but no LFE output. It is a value expressed in deciBel, and
|
||||
must be in the interval [-32,32].
|
||||
|
||||
rmvol, rematrix_volume
|
||||
Set rematrix volume. Default value is 1.0.
|
||||
|
||||
rematrix_maxval
|
||||
Set maximum output value for rematrixing. This can be used to
|
||||
prevent clipping vs. preventing volume reduction. A value of 1.0
|
||||
prevents clipping.
|
||||
|
||||
flags, swr_flags
|
||||
Set flags used by the converter. Default value is 0.
|
||||
|
||||
It supports the following individual flags:
|
||||
|
||||
res force resampling, this flag forces resampling to be used even
|
||||
when the input and output sample rates match.
|
||||
|
||||
dither_scale
|
||||
Set the dither scale. Default value is 1.
|
||||
|
||||
dither_method
|
||||
Set dither method. Default value is 0.
|
||||
|
||||
Supported values:
|
||||
|
||||
rectangular
|
||||
select rectangular dither
|
||||
|
||||
triangular
|
||||
select triangular dither
|
||||
|
||||
triangular_hp
|
||||
select triangular dither with high pass
|
||||
|
||||
lipshitz
|
||||
select Lipshitz noise shaping dither.
|
||||
|
||||
shibata
|
||||
select Shibata noise shaping dither.
|
||||
|
||||
low_shibata
|
||||
select low Shibata noise shaping dither.
|
||||
|
||||
high_shibata
|
||||
select high Shibata noise shaping dither.
|
||||
|
||||
f_weighted
|
||||
select f-weighted noise shaping dither
|
||||
|
||||
modified_e_weighted
|
||||
select modified-e-weighted noise shaping dither
|
||||
|
||||
improved_e_weighted
|
||||
select improved-e-weighted noise shaping dither
|
||||
|
||||
resampler
|
||||
Set resampling engine. Default value is swr.
|
||||
|
||||
Supported values:
|
||||
|
||||
swr select the native SW Resampler; filter options precision and
|
||||
cheby are not applicable in this case.
|
||||
|
||||
soxr
|
||||
select the SoX Resampler (where available); compensation, and
|
||||
filter options filter_size, phase_shift, exact_rational,
|
||||
filter_type & kaiser_beta, are not applicable in this case.
|
||||
|
||||
filter_size
|
||||
For swr only, set resampling filter size, default value is 32.
|
||||
|
||||
phase_shift
|
||||
For swr only, set resampling phase shift, default value is 10, and
|
||||
must be in the interval [0,30].
|
||||
|
||||
linear_interp
|
||||
Use linear interpolation when enabled (the default). Disable it if
|
||||
you want to preserve speed instead of quality when exact_rational
|
||||
fails.
|
||||
|
||||
exact_rational
|
||||
For swr only, when enabled, try to use exact phase_count based on
|
||||
input and output sample rate. However, if it is larger than "1 <<
|
||||
phase_shift", the phase_count will be "1 << phase_shift" as
|
||||
fallback. Default is enabled.
|
||||
|
||||
cutoff
|
||||
Set cutoff frequency (swr: 6dB point; soxr: 0dB point) ratio; must
|
||||
be a float value between 0 and 1. Default value is 0.97 with swr,
|
||||
and 0.91 with soxr (which, with a sample-rate of 44100, preserves
|
||||
the entire audio band to 20kHz).
|
||||
|
||||
precision
|
||||
For soxr only, the precision in bits to which the resampled signal
|
||||
will be calculated. The default value of 20 (which, with suitable
|
||||
dithering, is appropriate for a destination bit-depth of 16) gives
|
||||
SoX's 'High Quality'; a value of 28 gives SoX's 'Very High
|
||||
Quality'.
|
||||
|
||||
cheby
|
||||
For soxr only, selects passband rolloff none (Chebyshev) & higher-
|
||||
precision approximation for 'irrational' ratios. Default value is
|
||||
0.
|
||||
|
||||
async
|
||||
For swr only, simple 1 parameter audio sync to timestamps using
|
||||
stretching, squeezing, filling and trimming. Setting this to 1 will
|
||||
enable filling and trimming, larger values represent the maximum
|
||||
amount in samples that the data may be stretched or squeezed for
|
||||
each second. Default value is 0, thus no compensation is applied
|
||||
to make the samples match the audio timestamps.
|
||||
|
||||
first_pts
|
||||
For swr only, assume the first pts should be this value. The time
|
||||
unit is 1 / sample rate. This allows for padding/trimming at the
|
||||
start of stream. By default, no assumption is made about the first
|
||||
frame's expected pts, so no padding or trimming is done. For
|
||||
example, this could be set to 0 to pad the beginning with silence
|
||||
if an audio stream starts after the video stream or to trim any
|
||||
samples with a negative pts due to encoder delay.
|
||||
|
||||
min_comp
|
||||
For swr only, set the minimum difference between timestamps and
|
||||
audio data (in seconds) to trigger stretching/squeezing/filling or
|
||||
trimming of the data to make it match the timestamps. The default
|
||||
is that stretching/squeezing/filling and trimming is disabled
|
||||
(min_comp = "FLT_MAX").
|
||||
|
||||
min_hard_comp
|
||||
For swr only, set the minimum difference between timestamps and
|
||||
audio data (in seconds) to trigger adding/dropping samples to make
|
||||
it match the timestamps. This option effectively is a threshold to
|
||||
select between hard (trim/fill) and soft (squeeze/stretch)
|
||||
compensation. Note that all compensation is by default disabled
|
||||
through min_comp. The default is 0.1.
|
||||
|
||||
comp_duration
|
||||
For swr only, set duration (in seconds) over which data is
|
||||
stretched/squeezed to make it match the timestamps. Must be a non-
|
||||
negative double float value, default value is 1.0.
|
||||
|
||||
max_soft_comp
|
||||
For swr only, set maximum factor by which data is
|
||||
stretched/squeezed to make it match the timestamps. Must be a non-
|
||||
negative double float value, default value is 0.
|
||||
|
||||
matrix_encoding
|
||||
Select matrixed stereo encoding.
|
||||
|
||||
It accepts the following values:
|
||||
|
||||
none
|
||||
select none
|
||||
|
||||
dolby
|
||||
select Dolby
|
||||
|
||||
dplii
|
||||
select Dolby Pro Logic II
|
||||
|
||||
Default value is "none".
|
||||
|
||||
filter_type
|
||||
For swr only, select resampling filter type. This only affects
|
||||
resampling operations.
|
||||
|
||||
It accepts the following values:
|
||||
|
||||
cubic
|
||||
select cubic
|
||||
|
||||
blackman_nuttall
|
||||
select Blackman Nuttall windowed sinc
|
||||
|
||||
kaiser
|
||||
select Kaiser windowed sinc
|
||||
|
||||
kaiser_beta
|
||||
For swr only, set Kaiser window beta value. Must be a double float
|
||||
value in the interval [2,16], default value is 9.
|
||||
|
||||
output_sample_bits
|
||||
For swr only, set number of used output sample bits for dithering.
|
||||
Must be an integer in the interval [0,64], default value is 0,
|
||||
which means it's not used.
|
||||
|
||||
SEE ALSO
|
||||
ffmpeg(1), ffplay(1), ffprobe(1), libswresample(3)
|
||||
|
||||
AUTHORS
|
||||
The FFmpeg developers.
|
||||
|
||||
For details about the authorship, see the Git history of the project
|
||||
(https://git.ffmpeg.org/ffmpeg), e.g. by typing the command git log in
|
||||
the FFmpeg source directory, or browsing the online repository at
|
||||
<https://git.ffmpeg.org/ffmpeg>.
|
||||
|
||||
Maintainers for the specific components are listed in the file
|
||||
MAINTAINERS in the source code tree.
|
||||
|
||||
FFMPEG-RESAMPLER(1)
|
156
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-scaler.txt
vendored
Normal file
156
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-scaler.txt
vendored
Normal file
@ -0,0 +1,156 @@
|
||||
FFMPEG-SCALER(1) FFMPEG-SCALER(1)
|
||||
|
||||
NAME
|
||||
ffmpeg-scaler - FFmpeg video scaling and pixel format converter
|
||||
|
||||
DESCRIPTION
|
||||
The FFmpeg rescaler provides a high-level interface to the libswscale
|
||||
library image conversion utilities. In particular it allows one to
|
||||
perform image rescaling and pixel format conversion.
|
||||
|
||||
SCALER OPTIONS
|
||||
The video scaler supports the following named options.
|
||||
|
||||
Options may be set by specifying -option value in the FFmpeg tools,
|
||||
with a few API-only exceptions noted below. For programmatic use, they
|
||||
can be set explicitly in the "SwsContext" options or through the
|
||||
libavutil/opt.h API.
|
||||
|
||||
sws_flags
|
||||
Set the scaler flags. This is also used to set the scaling
|
||||
algorithm. Only a single algorithm should be selected. Default
|
||||
value is bicubic.
|
||||
|
||||
It accepts the following values:
|
||||
|
||||
fast_bilinear
|
||||
Select fast bilinear scaling algorithm.
|
||||
|
||||
bilinear
|
||||
Select bilinear scaling algorithm.
|
||||
|
||||
bicubic
|
||||
Select bicubic scaling algorithm.
|
||||
|
||||
experimental
|
||||
Select experimental scaling algorithm.
|
||||
|
||||
neighbor
|
||||
Select nearest neighbor rescaling algorithm.
|
||||
|
||||
area
|
||||
Select averaging area rescaling algorithm.
|
||||
|
||||
bicublin
|
||||
Select bicubic scaling algorithm for the luma component,
|
||||
bilinear for chroma components.
|
||||
|
||||
gauss
|
||||
Select Gaussian rescaling algorithm.
|
||||
|
||||
sinc
|
||||
Select sinc rescaling algorithm.
|
||||
|
||||
lanczos
|
||||
Select Lanczos rescaling algorithm. The default width (alpha)
|
||||
is 3 and can be changed by setting "param0".
|
||||
|
||||
spline
|
||||
Select natural bicubic spline rescaling algorithm.
|
||||
|
||||
print_info
|
||||
Enable printing/debug logging.
|
||||
|
||||
accurate_rnd
|
||||
Enable accurate rounding.
|
||||
|
||||
full_chroma_int
|
||||
Enable full chroma interpolation.
|
||||
|
||||
full_chroma_inp
|
||||
Select full chroma input.
|
||||
|
||||
bitexact
|
||||
Enable bitexact output.
|
||||
|
||||
srcw (API only)
|
||||
Set source width.
|
||||
|
||||
srch (API only)
|
||||
Set source height.
|
||||
|
||||
dstw (API only)
|
||||
Set destination width.
|
||||
|
||||
dsth (API only)
|
||||
Set destination height.
|
||||
|
||||
src_format (API only)
|
||||
Set source pixel format (must be expressed as an integer).
|
||||
|
||||
dst_format (API only)
|
||||
Set destination pixel format (must be expressed as an integer).
|
||||
|
||||
src_range (boolean)
|
||||
If value is set to 1, indicates source is full range. Default value
|
||||
is 0, which indicates source is limited range.
|
||||
|
||||
dst_range (boolean)
|
||||
If value is set to 1, enable full range for destination. Default
|
||||
value is 0, which enables limited range.
|
||||
|
||||
param0, param1
|
||||
Set scaling algorithm parameters. The specified values are specific
|
||||
of some scaling algorithms and ignored by others. The specified
|
||||
values are floating point number values.
|
||||
|
||||
sws_dither
|
||||
Set the dithering algorithm. Accepts one of the following values.
|
||||
Default value is auto.
|
||||
|
||||
auto
|
||||
automatic choice
|
||||
|
||||
none
|
||||
no dithering
|
||||
|
||||
bayer
|
||||
bayer dither
|
||||
|
||||
ed error diffusion dither
|
||||
|
||||
a_dither
|
||||
arithmetic dither, based using addition
|
||||
|
||||
x_dither
|
||||
arithmetic dither, based using xor (more random/less apparent
|
||||
patterning that a_dither).
|
||||
|
||||
alphablend
|
||||
Set the alpha blending to use when the input has alpha but the
|
||||
output does not. Default value is none.
|
||||
|
||||
uniform_color
|
||||
Blend onto a uniform background color
|
||||
|
||||
checkerboard
|
||||
Blend onto a checkerboard
|
||||
|
||||
none
|
||||
No blending
|
||||
|
||||
SEE ALSO
|
||||
ffmpeg(1), ffplay(1), ffprobe(1), libswscale(3)
|
||||
|
||||
AUTHORS
|
||||
The FFmpeg developers.
|
||||
|
||||
For details about the authorship, see the Git history of the project
|
||||
(https://git.ffmpeg.org/ffmpeg), e.g. by typing the command git log in
|
||||
the FFmpeg source directory, or browsing the online repository at
|
||||
<https://git.ffmpeg.org/ffmpeg>.
|
||||
|
||||
Maintainers for the specific components are listed in the file
|
||||
MAINTAINERS in the source code tree.
|
||||
|
||||
FFMPEG-SCALER(1)
|
1267
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-utils.txt
vendored
Normal file
1267
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg-utils.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3182
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg.txt
vendored
Normal file
3182
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffmpeg.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1000
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffprobe.txt
vendored
Normal file
1000
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/manpages/ffprobe.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/000-PLEASE-README.TXT
vendored
Normal file
4
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/000-PLEASE-README.TXT
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
The vmaf filter expects this directory of models to be preset at /usr/local/share/model
|
||||
|
||||
If you wish to use this filter, run "sudo cp -r model /usr/local/share/" from the directory
|
||||
containing the static binaries. If not, you can ignore this and do nothing.
|
87
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/model_V8a.model
vendored
Normal file
87
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/model_V8a.model
vendored
Normal file
@ -0,0 +1,87 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.85
|
||||
nr_class 2
|
||||
total_sv 80
|
||||
rho -81.9753
|
||||
SV
|
||||
69 1:0.51976033 2:0.95433448 3:0.70664633 4:0.6375746
|
||||
-9.197413488493105 1:0.45268681 2:0.92433556 3:0.65393852 4:0.6375746
|
||||
-69 1:0.45265772 2:0.90777395 3:0.64667235 4:0.6375746
|
||||
-69 1:0.45457447 2:0.87566775 3:0.64033468 4:0.6375746
|
||||
-69 1:0.42289226 2:0.85854458 3:0.61698782 4:0.6375746
|
||||
-69 1:0.3898882 2:0.79454531 3:0.58453025 4:0.6375746
|
||||
-69 1:0.32459772 2:0.67394802 3:0.52456378 4:0.6375746
|
||||
69 1:0.66117357 2:0.94604234 3:0.5327675 4:0.063767617
|
||||
-47.49173486794111 1:0.45409202 2:0.85411624 3:0.39594518 4:0.063767617
|
||||
69 1:0.31194204 2:0.64649086 3:0.27957804 4:0.063767617
|
||||
69 1:0.61443271 2:0.97960254 3:0.63313123 4:0.29843054
|
||||
-69 1:0.43214433 2:0.87200586 3:0.48017813 4:0.29843054
|
||||
-69 1:0.31954096 2:0.69552413 3:0.38421778 4:0.29843054
|
||||
69 1:0.6426635 2:0.92375101 3:0.58695409 4:0.26591241
|
||||
69 1:0.5433864 2:0.86991199 3:0.49987385 4:0.26591241
|
||||
69 1:0.52091212 2:0.83025675 3:0.48006248 4:0.26591241
|
||||
69 1:0.48532387 2:0.77073948 3:0.44795364 4:0.26591241
|
||||
69 1:0.64679272 2:0.96831314 3:0.64817876 4:0.032376293
|
||||
-69 1:0.54885461 2:0.91559606 3:0.57067437 4:0.032376293
|
||||
-69 1:0.50403001 2:0.85870913 3:0.53649203 4:0.032376293
|
||||
-69 1:0.47291851 2:0.79481335 3:0.51219028 4:0.032376293
|
||||
-69 1:0.42191291 2:0.69382331 3:0.47545827 4:0.032376293
|
||||
-27.25245737487881 1:0.67611062 2:0.96814846 3:0.61158845 4:0.2939012
|
||||
-69 1:0.46445696 2:0.84351616 3:0.45234615 4:0.2939012
|
||||
-69 1:0.4201765 2:0.82647934 3:0.43227047 4:0.2939012
|
||||
-69 1:0.33523871 2:0.72186606 3:0.37190493 4:0.2939012
|
||||
-69 1:0.51156883 2:0.68186789 3:0.63017684 4:0.055731322
|
||||
69 1:0.26780177 2:0.95426822 3:0.5469869 4:0.22956029
|
||||
69 1:0.26468446 2:0.95302431 3:0.54405344 4:0.22956029
|
||||
69 1:0.25782726 2:0.92374629 3:0.53586532 4:0.22956029
|
||||
-69 1:0.23417931 2:0.85848996 3:0.50416551 4:0.22956029
|
||||
-69 1:0.67803967 2:0.9781841 3:0.59567606 4:0.25769702
|
||||
-69 1:0.60156059 2:0.93305292 3:0.51993286 4:0.25769702
|
||||
61.87358869334383 1:0.52411365 2:0.87520945 3:0.44833229 4:0.25769702
|
||||
-69 1:0.44576759 2:0.84762776 3:0.4008771 4:0.25769702
|
||||
-69 1:0.4211399 2:0.7917074 3:0.37439838 4:0.25769702
|
||||
-69 1:0.39531501 2:0.77946802 3:0.35867259 4:0.25769702
|
||||
-69 1:0.3295234 2:0.65488773 3:0.30518126 4:0.25769702
|
||||
69 1:0.64664752 2:0.97030413 3:0.59065681 4:0.39772544
|
||||
-69 1:0.40527863 2:0.8856757 3:0.41379189 4:0.39772544
|
||||
-69 1:0.38734128 2:0.86194898 3:0.40076705 4:0.39772544
|
||||
-69 1:0.35356446 2:0.8406836 3:0.37487635 4:0.39772544
|
||||
-69 1:0.3200218 2:0.79549281 3:0.35283943 4:0.39772544
|
||||
-4.316167653420815 1:0.17598834 2:0.52072937 3:0.24120289 4:0.39772544
|
||||
69 1:0.5524485 2:0.9560478 3:0.53724919 4:0.59104839
|
||||
69 1:0.42948793 2:0.91149544 3:0.45224554 4:0.59104839
|
||||
-69 1:0.32589136 2:0.84876194 3:0.3744961 4:0.59104839
|
||||
-21.29980364694718 1:0.10867218 2:0.38557666 3:0.18925271 4:0.59104839
|
||||
-69 1:0.4996147 2:0.91432431 3:0.53262797 4:0.74498378
|
||||
-7.141690063842472 1:0.41479676 2:0.85157134 3:0.46723601 4:0.74498378
|
||||
-69 1:0.38345027 2:0.80506322 3:0.44310177 4:0.74498378
|
||||
-69 1:0.25245979 2:0.653381 3:0.35225084 4:0.74498378
|
||||
69 1:0.56382827 2:0.93041813 3:0.66835066 4:0.52288375
|
||||
69 1:0.50329147 2:0.90511412 3:0.63005715 4:0.52288375
|
||||
69 1:0.42301615 2:0.85950122 3:0.57731186 4:0.52288375
|
||||
69 1:0.33177883 2:0.78751195 3:0.51493707 4:0.52288375
|
||||
69 1:0.32180349 2:0.75683042 3:0.50047176 4:0.52288375
|
||||
69 1:0.28982966 2:0.74139346 3:0.48432412 4:0.52288375
|
||||
69 1:0.27998743 2:0.71040098 3:0.47110228 4:0.52288375
|
||||
-69 1:0.59688511 2:0.96121266 3:0.69469827 4:0.55144777
|
||||
69 1:0.25837705 2:0.55223053 3:0.43423354 4:0.55144777
|
||||
7.126411306656149 1:0.67567266 2:0.93488239 3:0.51450984 4:0.11552692
|
||||
69 1:0.45977871 2:0.83537136 3:0.39204025 4:0.11552692
|
||||
69 1:0.41043741 2:0.81159357 3:0.36657688 4:0.11552692
|
||||
69 1:0.34454308 2:0.72734146 3:0.31819693 4:0.11552692
|
||||
69 1:0.24760613 2:0.57381248 3:0.26197895 4:0.11552692
|
||||
69 1:0.45957473 2:0.96886019 3:0.62337865 4:0.25245219
|
||||
69 1:0.41479723 2:0.91870735 3:0.56796741 4:0.25245219
|
||||
69 1:0.40640278 2:0.91625462 3:0.56219466 4:0.25245219
|
||||
69 1:0.25300649 2:0.72209287 3:0.42235349 4:0.25245219
|
||||
69 1:0.52491846 2:0.96518073 3:0.50301103 4:0.78278868
|
||||
69 1:0.4954733 2:0.95637298 3:0.48341591 4:0.78278868
|
||||
69 1:0.41029264 2:0.92007754 3:0.41839937 4:0.78278868
|
||||
69 1:0.37215249 2:0.89824073 3:0.38767888 4:0.78278868
|
||||
69 1:0.30626552 2:0.8248972 3:0.32595478 4:0.78278868
|
||||
-21.30073290447658 1:0.19554022 2:0.66650242 3:0.23443242 4:0.78278868
|
||||
-69 1:0.57348017 2:0.87846139 3:0.70994964 4:0.48440282
|
||||
-69 1:0.51217571 2:0.85061862 3:0.66459152 4:0.48440282
|
||||
-69 1:0.47300378 2:0.79026311 3:0.63184378 4:0.48440282
|
||||
-69 1:0.38355158 2:0.66861728 3:0.56448137 4:0.48440282
|
42
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_v1.json
vendored
Normal file
42
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_v1.json
vendored
Normal file
File diff suppressed because one or more lines are too long
67
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_v1.pkl
vendored
Normal file
67
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_v1.pkl
vendored
Normal file
@ -0,0 +1,67 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F1.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'cache_size'
|
||||
p8
|
||||
I200
|
||||
sS'nu'
|
||||
p9
|
||||
F0.5
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.85
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
g4
|
||||
S'linear_rescale'
|
||||
p13
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p14
|
||||
(lp15
|
||||
S'VMAF_feature_adm_score'
|
||||
p16
|
||||
aS'VMAF_feature_ansnr_score'
|
||||
p17
|
||||
aS'VMAF_feature_motion_score'
|
||||
p18
|
||||
aS'VMAF_feature_vif_score'
|
||||
p19
|
||||
asS'intercepts'
|
||||
p20
|
||||
(lp21
|
||||
F-0.1909090909090909
|
||||
aF-1.635828565827225
|
||||
aF-0.5027725296167747
|
||||
aF-0.022214587359292954
|
||||
aF-0.12191917348723096
|
||||
asS'model_type'
|
||||
p22
|
||||
S'LIBSVMNUSVR'
|
||||
p23
|
||||
sS'slopes'
|
||||
p24
|
||||
(lp25
|
||||
F0.010909090909090908
|
||||
aF2.635828565827225
|
||||
aF0.030306790717580585
|
||||
aF0.06846153126171134
|
||||
aF1.121919173487231
|
||||
asS'model'
|
||||
p26
|
||||
Nss.
|
94
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_v1.pkl.model
vendored
Normal file
94
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_v1.pkl.model
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.85
|
||||
nr_class 2
|
||||
total_sv 87
|
||||
rho -0.678599
|
||||
SV
|
||||
-1 1:0.500758 2:0.44434935 3:0.80360073 4:0.25504335
|
||||
-1 1:0.66395488 2:0.49545656 3:0.80360073 4:0.30315084
|
||||
-1 1:0.68710445 2:0.51616008 3:0.80360073 4:0.32840241
|
||||
1 1:0.80552743 2:0.57886981 3:0.80360073 4:0.3952589
|
||||
1 1:0.93943344 2:0.67382416 3:0.80360073 4:0.48875504
|
||||
-0.6005168509118413 1:0.44111817 2:0.13943156 3:0.060660457 4:0.23164915
|
||||
0.3001652364483464 1:0.79372033 2:0.31017378 3:0.060660457 4:0.4749309
|
||||
1 1:0.91710352 2:0.45437437 3:0.060660457 4:0.66549345
|
||||
0.2347757543790557 1:0.99910085 2:0.62307047 3:0.060660457 4:0.94344783
|
||||
0.9879940111050362 1:0.70228825 2:0.41065868 3:0.25800309 4:0.16020672
|
||||
1 1:0.71225044 2:0.41933192 3:0.25800309 4:0.16684779
|
||||
1 1:0.79683949 2:0.43826809 3:0.25800309 4:0.17816881
|
||||
1 1:0.81652281 2:0.45300881 3:0.25800309 4:0.19016999
|
||||
-1 1:0.93569958 2:0.48157676 3:0.25800309 4:0.21208644
|
||||
-0.05952502774634448 1:0.93913288 2:0.49123252 3:0.25800309 4:0.22195992
|
||||
-1 1:0.78457344 2:0.32209063 3:0.29975901 4:0.43388438
|
||||
-0.08537060065670415 1:0.98011205 2:0.57256903 3:0.29975901 4:0.69987699
|
||||
-1 1:0.98354192 2:0.5885804 3:0.29975901 4:0.72038426
|
||||
-1 1:0.43053262 2:0.12481478 3:0.49240306 4:0.11338352
|
||||
-1 1:0.48855711 2:0.150659 3:0.49240306 4:0.14217743
|
||||
-1 1:0.60605382 2:0.18559397 3:0.49240306 4:0.18417781
|
||||
-0.7923822897377828 1:0.68505081 2:0.23614196 3:0.49240306 4:0.24718934
|
||||
-0.08210621586290766 1:0.89013303 2:0.39057937 3:0.49240306 4:0.43942102
|
||||
1 1:0.32769235 2:0.11805063 3:0.13125463 4:0.15797584
|
||||
1 1:0.57102853 2:0.18673101 3:0.13125463 4:0.2692099
|
||||
1 1:0.57282199 2:0.18739048 3:0.13125463 4:0.27170222
|
||||
1 1:0.74350533 2:0.27830189 3:0.13125463 4:0.40502819
|
||||
1 1:0.90049487 2:0.43091367 3:0.13125463 4:0.66579618
|
||||
-1 1:0.6494774 2:0.27837021 3:0.41227705 4:0.22867305
|
||||
-1 1:0.76923458 2:0.34709787 3:0.41227705 4:0.30394459
|
||||
-1 1:0.95803953 2:0.52505896 3:0.41227705 4:0.50173907
|
||||
-1 1:0.96714842 2:0.55388193 3:0.41227705 4:0.53377919
|
||||
1 1:0.48186529 2:0.28840495 3:0.3173053 4:0.35029221
|
||||
1 1:0.63910783 2:0.34199561 3:0.3173053 4:0.40973951
|
||||
1 1:0.67242576 2:0.37411679 3:0.3173053 4:0.44891858
|
||||
1 1:0.81232229 2:0.47549925 3:0.3173053 4:0.5571142
|
||||
-1 1:0.51091654 2:0.36753212 4:0.32122832
|
||||
-1 1:0.67131199 2:0.40988734 4:0.37624653
|
||||
-1 1:0.67853479 2:0.41802337 4:0.38490923
|
||||
-1 1:0.77668766 2:0.4530568 4:0.42714338
|
||||
-1 1:0.80010279 2:0.47295605 4:0.44945901
|
||||
0.2238122443981977 1:1 2:0.78323367 3:0.95719598 4:1
|
||||
-1 1:0.36338045 2:0.20017167 3:0.35216405 4:0.19030002
|
||||
-1 1:0.56016075 2:0.2511454 3:0.35216405 4:0.25418659
|
||||
-1 1:0.72561366 2:0.32432484 3:0.35216405 4:0.34947968
|
||||
1 1:0.7525563 2:0.34866202 3:0.35216405 4:0.3991584
|
||||
1 1:0.88089009 2:0.45568174 3:0.35216405 4:0.51691346
|
||||
-1 1:0.67458252 2:0.62423542 3:0.024932462 4:0.49597011
|
||||
-1 1:0.67941593 2:0.6324076 3:0.024932462 4:0.50994261
|
||||
-1 1:0.79839909 2:0.68132931 3:0.024932462 4:0.52861368
|
||||
0.765497786395351 1:0.96138923 2:0.76908851 3:0.024932462 4:0.57268419
|
||||
1 1:0.96906849 2:0.7906865 3:0.024932462 4:0.59393192
|
||||
-1 1:0.61695399 2:0.18704248 3:0.73888524 4:0.1814112
|
||||
-1 1:0.7608844 2:0.25428655 3:0.73888524 4:0.24370254
|
||||
-1 1:0.82057107 2:0.30563046 3:0.73888524 4:0.30618093
|
||||
-1 1:0.89455431 2:0.39394543 3:0.73888524 4:0.41860883
|
||||
-1 1:0.16873718 2:0.15491045 3:0.95719598 4:0.079392181
|
||||
-1 1:0.45188506 2:0.22731935 3:0.95719598 4:0.16130023
|
||||
-0.8676044738986739 1:0.76536179 2:0.36671253 3:0.95719598 4:0.34343984
|
||||
0.6504146395675607 1:2.220446e-16 2:0.23907071 3:0.65112312 4:0.038179135
|
||||
1 1:0.42756068 2:0.33322794 3:0.65112312 4:0.144644
|
||||
1 1:0.54211376 2:0.37139949 3:0.65112312 4:0.1921988
|
||||
1 1:0.59120008 2:0.38742794 3:0.65112312 4:0.20324125
|
||||
1 1:0.61558961 2:0.40700327 3:0.65112312 4:0.23911229
|
||||
1 1:0.66410067 2:0.42453917 3:0.65112312 4:0.25030438
|
||||
1 1:0.77796278 2:0.50015434 3:0.65112312 4:0.35266323
|
||||
1 1:0.850087 2:0.56409596 3:0.65112312 4:0.44272339
|
||||
0.3373403277064526 1:0.89007769 2:0.6105181 3:0.65112312 4:0.51063948
|
||||
1 1:0.2919114 2:0.32670389 3:0.70765261 4:0.16789622
|
||||
1 1:0.56327043 2:0.41097052 3:0.70765261 4:0.28869814
|
||||
-0.9667756382666468 1:0.69223575 2:0.44677163 3:0.70765261 4:0.30435865
|
||||
1 1:0.7570134 2:0.52053937 3:0.70765261 4:0.45274665
|
||||
-1 1:0.93882855 2:0.64245784 3:0.70765261 4:0.54772182
|
||||
-0.04571890291909872 1:0.56052264 2:0.31230263 3:0.27988388 4:0.16193225
|
||||
-1 1:0.70082836 2:0.36112001 3:0.27988388 4:0.2051139
|
||||
1 1:0.73029842 2:0.38872215 3:0.27988388 4:0.2447673
|
||||
1 1:0.86760546 2:0.48182811 3:0.27988388 4:0.33403096
|
||||
1 1:0.87147234 2:0.48882625 3:0.27988388 4:0.34344882
|
||||
1 1:0.95086917 2:0.55599973 3:0.27988388 4:0.39368584
|
||||
1 1:0.67102703 2:0.16297436 3:1 4:0.1833146
|
||||
1 1:0.72313816 2:0.19544136 3:1 4:0.22168406
|
||||
1 1:0.78939255 2:0.22653651 3:1 4:0.24606121
|
||||
1 1:0.83915519 2:0.27026774 3:1 4:0.29560442
|
||||
-1 1:0.47596853 2:0.4846003 3:0.60048989 4:0.30839395
|
||||
-1 1:0.6683492 2:0.56626182 3:0.60048989 4:0.40875179
|
||||
-1 1:0.76380856 2:0.60596099 3:0.60048989 4:0.45269953
|
||||
-1 1:0.8078454 2:0.66094735 3:0.60048989 4:0.52147761
|
1254
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_vmaff_rf_v1.pkl
vendored
Normal file
1254
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_vmaff_rf_v1.pkl
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_vmaff_rf_v2.pkl
vendored
Normal file
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflx_vmaff_rf_v2.pkl
vendored
Normal file
Binary file not shown.
@ -0,0 +1,78 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F3.1
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.1
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif'
|
||||
p16
|
||||
aS'adm'
|
||||
p17
|
||||
aS'motion'
|
||||
p18
|
||||
aS'ansnr'
|
||||
p19
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p20
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p21
|
||||
(lp22
|
||||
S'VMAF_feature_adm_score'
|
||||
p23
|
||||
aS'VMAF_feature_ansnr_score'
|
||||
p24
|
||||
aS'VMAF_feature_motion_score'
|
||||
p25
|
||||
aS'VMAF_feature_vif_score'
|
||||
p26
|
||||
asS'intercepts'
|
||||
p27
|
||||
(lp28
|
||||
F-0.14912280701754385
|
||||
aF-1.635828565827225
|
||||
aF-0.5027725296167747
|
||||
aF-0.017141728475754268
|
||||
aF-0.12191917348723096
|
||||
asS'model_type'
|
||||
p29
|
||||
S'LIBSVMNUSVR'
|
||||
p30
|
||||
sS'model'
|
||||
p31
|
||||
NsS'slopes'
|
||||
p32
|
||||
(lp33
|
||||
F0.010526315789473684
|
||||
aF2.635828565827225
|
||||
aF0.030306790717580585
|
||||
aF0.05282785410063858
|
||||
aF1.121919173487231
|
||||
ass.
|
@ -0,0 +1,286 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.1
|
||||
nr_class 2
|
||||
total_sv 279
|
||||
rho -1.07971
|
||||
SV
|
||||
-3.1 1:1 2:0.9023797 3:0.62009279 4:1
|
||||
-2.10253912373279 1:1 2:0.78580702 3:0.15702556 4:1
|
||||
-3.1 1:1 2:0.90598891 3:0.65360354 4:1
|
||||
1.678959823513808 1:1 2:0.6571096 3:0.28207571 4:1
|
||||
-3.1 1:1 2:0.82419551 3:0.19908625 4:1
|
||||
0.9888450308367026 1:1 2:0.58727563 3:0.061964183 4:1
|
||||
3.1 1:1 2:0.64891012 3:0.37995933 4:1
|
||||
3.1 1:1 2:0.67548841 3:0.62386588 4:1
|
||||
3.1 1:1 2:0.60150691 3:0.1012817 4:1
|
||||
-3.1 1:1 2:0.86412963 3:0.19607431 4:1
|
||||
-0.6792382430744661 1:1 2:0.87354364 3:0.066725896 4:1
|
||||
-3.1 1:1 2:0.81706577 3:0.31813065 4:1
|
||||
-3.1 1:1 2:0.86043223 3:0.24484638 4:1
|
||||
-0.491352724126849 1:1 2:0.83592028 4:1
|
||||
0.02372126687158226 1:1 2:0.75487863 3:1 4:1
|
||||
-3.1 1:0.500758 2:0.44434935 3:0.62009279 4:0.25504335
|
||||
-3.1 1:0.66395488 2:0.49545656 3:0.62009279 4:0.30315084
|
||||
-3.1 1:0.68710445 2:0.51616008 3:0.62009279 4:0.32840241
|
||||
3.1 1:0.77682167 2:0.55184234 3:0.62009279 4:0.36126897
|
||||
3.1 1:0.80552743 2:0.57886981 3:0.62009279 4:0.3952589
|
||||
3.1 1:0.88273764 2:0.61682479 3:0.62009279 4:0.43234181
|
||||
-3.1 1:0.93116188 2:0.65752339 3:0.62009279 4:0.46598966
|
||||
3.1 1:0.93943344 2:0.67382416 3:0.62009279 4:0.48875504
|
||||
3.1 1:0.48032161 2:0.26272159 3:0.15702556 4:0.27429199
|
||||
-3.1 1:0.66810372 2:0.32302188 3:0.15702556 4:0.33873779
|
||||
-3.1 1:0.67688588 2:0.33334899 3:0.15702556 4:0.35306846
|
||||
3.1 1:0.78413086 2:0.37980881 3:0.15702556 4:0.39916953
|
||||
3.1 1:0.80344636 2:0.40239211 3:0.15702556 4:0.42973317
|
||||
3.1 1:0.90011555 2:0.46382991 3:0.15702556 4:0.49825574
|
||||
-3.1 1:0.95658637 2:0.51134587 3:0.15702556 4:0.53464063
|
||||
3.1 1:0.96029608 2:0.52485236 3:0.15702556 4:0.55200374
|
||||
3.014764359005449 1:0.50372797 2:0.45107197 3:0.65360354 4:0.13898928
|
||||
-3.1 1:0.6476565 2:0.4814289 3:0.65360354 4:0.15960103
|
||||
3.1 1:0.67501524 2:0.49775418 3:0.65360354 4:0.17409954
|
||||
3.1 1:0.75617281 2:0.51702674 3:0.65360354 4:0.18783211
|
||||
3.1 1:0.79008741 2:0.53686054 3:0.65360354 4:0.20893624
|
||||
3.1 1:0.85403547 2:0.55355255 3:0.65360354 4:0.22488902
|
||||
-3.1 1:0.8920263 2:0.58056686 3:0.65360354 4:0.25696445
|
||||
-3.1 1:0.90077795 2:0.59512653 3:0.65360354 4:0.27832407
|
||||
-3.1 1:0.45615707 2:0.15502741 3:0.1007927 4:0.28271343
|
||||
-3.1 1:0.6589256 2:0.2347531 3:0.1007927 4:0.3947729
|
||||
-3.1 1:0.66075687 2:0.23617521 3:0.1007927 4:0.40364809
|
||||
-3.1 1:0.78680383 2:0.30989034 3:0.1007927 4:0.48951574
|
||||
3.1 1:0.80002049 2:0.32873187 3:0.1007927 4:0.51715224
|
||||
3.1 1:0.91894161 2:0.46619089 3:0.1007927 4:0.6638753
|
||||
3.1 1:0.99750863 2:0.62747416 3:0.1007927 4:0.90315739
|
||||
2.881003234418858 1:0.65435141 2:0.21779297 3:0.046808211 4:0.34632169
|
||||
-3.1 1:0.65519079 2:0.2182804 3:0.046808211 4:0.35101052
|
||||
-3.1 1:0.77999724 2:0.29259565 3:0.046808211 4:0.44902479
|
||||
3.1 1:0.79372033 2:0.31017378 3:0.046808211 4:0.4749309
|
||||
3.1 1:0.91710352 2:0.45437437 3:0.046808211 4:0.66549345
|
||||
3.1 1:0.99910085 2:0.62307047 3:0.046808211 4:0.94344783
|
||||
3.1 1:0.50908059 2:0.16768568 3:0.28207571 4:0.22007668
|
||||
3.1 1:0.69276045 2:0.24471093 3:0.28207571 4:0.3087109
|
||||
3.1 1:0.69347847 2:0.2453485 3:0.28207571 4:0.31055546
|
||||
3.1 1:0.80753513 2:0.31750623 3:0.28207571 4:0.38509619
|
||||
-3.1 1:0.82020415 2:0.33702921 3:0.28207571 4:0.40555862
|
||||
3.1 1:0.9277018 2:0.48222337 3:0.28207571 4:0.56265521
|
||||
-3.1 1:0.99968646 2:0.65541159 3:0.28207571 4:0.97716656
|
||||
3.1 1:0.40648543 2:0.21352709 3:0.14532926 4:0.10636327
|
||||
3.1 1:0.58997968 2:0.252973 3:0.14532926 4:0.14058412
|
||||
3.1 1:0.61307616 2:0.26549895 3:0.14532926 4:0.15440325
|
||||
3.1 1:0.71981157 2:0.29488433 3:0.14532926 4:0.17848225
|
||||
3.1 1:0.74989483 2:0.31662006 3:0.14532926 4:0.20014771
|
||||
3.1 1:0.83675891 2:0.34313191 3:0.14532926 4:0.2240692
|
||||
3.1 1:0.89265676 2:0.36397454 3:0.14532926 4:0.24044488
|
||||
3.1 1:0.42833195 2:0.26668685 3:0.1376926 4:0.13430818
|
||||
-3.1 1:0.62765352 2:0.3225835 3:0.1376926 4:0.18165112
|
||||
-3.1 1:0.63693396 2:0.33063261 3:0.1376926 4:0.19076624
|
||||
3.1 1:0.75342497 2:0.37348216 3:0.1376926 4:0.22142921
|
||||
3.1 1:0.77611527 2:0.39218793 3:0.1376926 4:0.23880098
|
||||
3.1 1:0.87807649 2:0.44053123 3:0.1376926 4:0.27233274
|
||||
3.1 1:0.94282406 2:0.46728821 3:0.1376926 4:0.28841818
|
||||
3.1 1:0.94724171 2:0.47586514 3:0.1376926 4:0.29780097
|
||||
3.1 1:0.55022974 2:0.37677077 3:0.19908625 4:0.13993145
|
||||
3.1 1:0.70228825 2:0.41065868 3:0.19908625 4:0.16020672
|
||||
3.1 1:0.71225044 2:0.41933192 3:0.19908625 4:0.16684779
|
||||
3.1 1:0.79683949 2:0.43826809 3:0.19908625 4:0.17816881
|
||||
3.1 1:0.81652281 2:0.45300881 3:0.19908625 4:0.19016999
|
||||
3.1 1:0.89025411 2:0.468107 3:0.19908625 4:0.20163548
|
||||
-3.1 1:0.93569958 2:0.48157676 3:0.19908625 4:0.21208644
|
||||
-3.1 1:0.93913288 2:0.49123252 3:0.19908625 4:0.22195992
|
||||
-3.1 1:0.5613615 2:0.47821058 3:0.034816509 4:0.081947159
|
||||
-3.1 1:0.71661596 2:0.50542548 3:0.034816509 4:0.10288869
|
||||
-3.1 1:0.71792653 2:0.50792525 3:0.034816509 4:0.10539165
|
||||
-3.1 1:0.8060293 2:0.5229294 3:0.034816509 4:0.11870038
|
||||
2.759163818336796 1:0.8170115 2:0.5309274 3:0.034816509 4:0.1268531
|
||||
3.1 1:0.89730446 2:0.54080799 3:0.034816509 4:0.14094325
|
||||
-3.1 1:0.94573058 2:0.55084129 3:0.034816509 4:0.15019994
|
||||
-3.1 1:0.94809929 2:0.55792831 3:0.034816509 4:0.15880886
|
||||
-3.1 1:0.41059148 2:0.12282286 3:0.061964183 4:0.12878076
|
||||
-2.648085892024447 1:0.62044023 2:0.17917576 3:0.061964183 4:0.19955572
|
||||
3.1 1:0.62423996 2:0.18405772 3:0.061964183 4:0.2100222
|
||||
3.1 1:0.74904673 2:0.23639488 3:0.061964183 4:0.2673725
|
||||
-3.1 1:0.76470303 2:0.25419279 3:0.061964183 4:0.29306213
|
||||
3.1 1:0.88591654 2:0.34802784 3:0.061964183 4:0.38937669
|
||||
-3.1 1:0.96084799 2:0.42014758 3:0.061964183 4:0.45452251
|
||||
3.1 1:0.96282592 2:0.42881288 3:0.061964183 4:0.46728124
|
||||
3.1 1:0.4745609 2:0.18200267 3:0.23130691 4:0.26767254
|
||||
-3.1 1:0.66703242 2:0.24861296 3:0.23130691 4:0.34248223
|
||||
-3.1 1:0.68361815 2:0.26524478 3:0.23130691 4:0.36982031
|
||||
-3.1 1:0.78457344 2:0.32209063 3:0.23130691 4:0.43388438
|
||||
3.1 1:0.80856316 2:0.35113715 3:0.23130691 4:0.47936171
|
||||
3.1 1:0.90912597 2:0.4570275 3:0.23130691 4:0.59104161
|
||||
-3.1 1:0.98011205 2:0.57256903 3:0.23130691 4:0.69987699
|
||||
-3.1 1:0.98354192 2:0.5885804 3:0.23130691 4:0.72038426
|
||||
3.1 1:0.23737343 2:0.092648467 3:0.37995933 4:0.074975226
|
||||
-3.1 1:0.43053262 2:0.12481478 3:0.37995933 4:0.11338352
|
||||
-3.1 1:0.48855711 2:0.150659 3:0.37995933 4:0.14217743
|
||||
-3.1 1:0.60605382 2:0.18559397 3:0.37995933 4:0.18417781
|
||||
-3.1 1:0.68505081 2:0.23614196 3:0.37995933 4:0.24718934
|
||||
-3.1 1:0.79592925 2:0.30063732 3:0.37995933 4:0.33000913
|
||||
-3.1 1:0.89013303 2:0.39057937 3:0.37995933 4:0.43942102
|
||||
3.1 1:0.91458482 2:0.43330721 3:0.37995933 4:0.49236913
|
||||
-3.1 1:0.44292847 2:0.23360631 3:0.32712248 4:0.21957988
|
||||
-3.1 1:0.63425946 2:0.28995647 3:0.32712248 4:0.28690618
|
||||
-3.1 1:0.66092452 2:0.30993956 3:0.32712248 4:0.31960246
|
||||
-3.1 1:0.76329946 2:0.36521762 3:0.32712248 4:0.38583697
|
||||
-3.1 1:0.7970581 2:0.40152865 3:0.32712248 4:0.44677644
|
||||
-3.1 1:0.90052205 2:0.50628807 3:0.32712248 4:0.57003848
|
||||
-3.1 1:0.97414205 2:0.63094307 3:0.32712248 4:0.72152142
|
||||
3.1 1:0.98094538 2:0.65383234 3:0.32712248 4:0.75626495
|
||||
-3.1 1:0.31470615 2:0.10921428 3:0.62386588 4:0.12328982
|
||||
-3.1 1:0.50823936 2:0.15625977 3:0.62386588 4:0.17265339
|
||||
-3.1 1:0.57814755 2:0.19290178 3:0.62386588 4:0.21143065
|
||||
-3.1 1:0.68975328 2:0.24116742 3:0.62386588 4:0.265971
|
||||
-3.1 1:0.76491321 2:0.2989841 3:0.62386588 4:0.33989723
|
||||
-3.1 1:0.86588644 2:0.38591976 3:0.62386588 4:0.44351938
|
||||
-3.1 1:0.95130265 2:0.50711103 3:0.62386588 4:0.59607542
|
||||
-3.1 1:0.96659799 2:0.54981706 3:0.62386588 4:0.65360079
|
||||
3.1 1:0.32769235 2:0.11805063 3:0.1012817 4:0.15797584
|
||||
3.1 1:0.57102853 2:0.18673101 3:0.1012817 4:0.2692099
|
||||
3.1 1:0.57282199 2:0.18739048 3:0.1012817 4:0.27170222
|
||||
3.1 1:0.72359309 2:0.2571562 3:0.1012817 4:0.37594831
|
||||
3.1 1:0.74350533 2:0.27830189 3:0.1012817 4:0.40502819
|
||||
3.1 1:0.90049487 2:0.43091367 3:0.1012817 4:0.66579618
|
||||
-3.1 1:0.34454124 2:0.13646724 3:0.46629001 4:0.15289274
|
||||
-3.1 1:0.55182328 2:0.19707014 3:0.46629001 4:0.22887916
|
||||
-3.1 1:0.58998702 2:0.22368173 3:0.46629001 4:0.26557425
|
||||
-3.1 1:0.71011996 2:0.27614135 3:0.46629001 4:0.32836665
|
||||
3.1 1:0.76163957 2:0.33197521 3:0.46629001 4:0.4105769
|
||||
3.1 1:0.86529435 2:0.41073733 3:0.46629001 4:0.49994272
|
||||
3.1 1:0.93362768 2:0.48828001 3:0.46629001 4:0.57622042
|
||||
3.1 1:0.94426733 2:0.51454258 3:0.46629001 4:0.60656313
|
||||
-3.1 1:0.41172196 2:0.37454782 3:0.19607431 4:0.27706591
|
||||
-3.1 1:0.60496716 2:0.4365045 3:0.19607431 4:0.36845584
|
||||
-3.1 1:0.63286175 2:0.45793051 3:0.19607431 4:0.40337459
|
||||
-3.1 1:0.74572903 2:0.51474633 3:0.19607431 4:0.47825627
|
||||
-3.1 1:0.78782385 2:0.5589851 3:0.19607431 4:0.54567335
|
||||
-0.02263393499765885 1:0.95774772 2:0.73485939 3:0.19607431 4:0.71704207
|
||||
-3.1 1:0.9649349 2:0.7529231 3:0.19607431 4:0.73947302
|
||||
-3.1 1:0.50455108 2:0.37707906 3:0.066725896 4:0.37383292
|
||||
-3.1 1:0.67886099 2:0.45171655 3:0.066725896 4:0.47612724
|
||||
-3.1 1:0.69335422 2:0.46768614 3:0.066725896 4:0.50363859
|
||||
-3.1 1:0.79377173 2:0.52913678 3:0.066725896 4:0.56988358
|
||||
-3.1 1:0.81917828 2:0.56346863 3:0.066725896 4:0.61594965
|
||||
3.1 1:0.91322514 2:0.65354467 3:0.066725896 4:0.7000731
|
||||
3.1 1:0.96729751 2:0.71471484 3:0.066725896 4:0.7364402
|
||||
3.1 1:0.97059951 2:0.72682591 3:0.066725896 4:0.74927526
|
||||
3.1 1:0.48038412 2:0.23379852 3:0.31813065 4:0.18361558
|
||||
-3.1 1:0.6494774 2:0.27837021 3:0.31813065 4:0.22867305
|
||||
-3.1 1:0.67648047 2:0.3096224 3:0.31813065 4:0.26662141
|
||||
-3.1 1:0.76923458 2:0.34709787 3:0.31813065 4:0.30394459
|
||||
3.1 1:0.81179327 2:0.4051903 3:0.31813065 4:0.3809145
|
||||
-3.1 1:0.8956297 2:0.46193279 3:0.31813065 4:0.44146699
|
||||
-3.1 1:0.95803953 2:0.52505896 3:0.31813065 4:0.50173907
|
||||
-3.1 1:0.96714842 2:0.55388193 3:0.31813065 4:0.53377919
|
||||
3.1 1:0.48186529 2:0.28840495 3:0.24484638 4:0.35029221
|
||||
3.1 1:0.63910783 2:0.34199561 3:0.24484638 4:0.40973951
|
||||
3.1 1:0.67242576 2:0.37411679 3:0.24484638 4:0.44891858
|
||||
3.1 1:0.76844641 2:0.42165442 3:0.24484638 4:0.49511208
|
||||
3.1 1:0.81232229 2:0.47549925 3:0.24484638 4:0.5571142
|
||||
3.1 1:0.89573129 2:0.53507396 3:0.24484638 4:0.6057181
|
||||
3.1 1:0.96198872 2:0.59867279 3:0.24484638 4:0.64581725
|
||||
3.1 1:0.97130686 2:0.62463226 3:0.24484638 4:0.6670586
|
||||
-3.1 1:0.54409816 2:0.47771275 3:0.024412915 4:0.44465489
|
||||
-3.1 1:0.70378255 2:0.53593465 3:0.024412915 4:0.51210471
|
||||
-3.1 1:0.70869839 2:0.54357264 3:0.024412915 4:0.52082163
|
||||
-3.1 1:0.8056575 2:0.59171889 3:0.024412915 4:0.56825209
|
||||
3.1 1:0.91340004 2:0.67669648 3:0.024412915 4:0.6608159
|
||||
-0.2120177324707262 1:0.96944322 2:0.72824579 3:0.024412915 4:0.70660368
|
||||
-3.1 1:0.47841867 2:0.22724946 3:0.61324729 4:0.28192681
|
||||
-3.1 1:0.63484695 2:0.28242948 3:0.61324729 4:0.34625947
|
||||
-3.1 1:0.67502231 2:0.31532094 3:0.61324729 4:0.38883959
|
||||
-3.1 1:0.76652592 2:0.36736763 3:0.61324729 4:0.4464908
|
||||
3.1 1:0.81130451 2:0.42383137 3:0.61324729 4:0.51856905
|
||||
-3.1 1:0.89206502 2:0.49271001 3:0.61324729 4:0.58630069
|
||||
3.1 1:0.95502376 2:0.56662668 3:0.61324729 4:0.63387505
|
||||
3.1 1:0.96428826 2:0.59698594 3:0.61324729 4:0.66045615
|
||||
-3.1 1:0.51091654 2:0.36753212 4:0.32122832
|
||||
-3.1 1:0.67131199 2:0.40988734 4:0.37624653
|
||||
-3.1 1:0.67853479 2:0.41802337 4:0.38490923
|
||||
-3.1 1:0.77668766 2:0.4530568 4:0.42714338
|
||||
-3.1 1:0.80010279 2:0.47295605 4:0.44945901
|
||||
-3.1 1:0.89419414 2:0.52043749 4:0.51637124
|
||||
-3.1 1:0.94867588 2:0.55053174 4:0.55259659
|
||||
-3.1 1:0.95202741 2:0.56265542 4:0.56679466
|
||||
3.1 1:0.080816638 2:0.10224369 3:1 4:0.096522634
|
||||
3.1 1:0.2819517 2:0.13673148 3:1 4:0.13405098
|
||||
-3.1 1:0.37552113 2:0.17052558 3:1 4:0.17330297
|
||||
-3.1 1:0.50495742 2:0.20639051 3:1 4:0.21544897
|
||||
-3.1 1:0.62998381 2:0.27310353 3:1 4:0.30353179
|
||||
-3.1 1:0.75084058 2:0.33811623 3:1 4:0.38380081
|
||||
1.053542467015948 1:0.86417134 2:0.42515427 3:1 4:0.47677652
|
||||
3.1 1:0.89893124 2:0.4707805 3:1 4:0.53088363
|
||||
3.1 1:1 2:0.60957429 3:0.57015555 4:1
|
||||
-3.1 1:1 2:0.83216729 3:0.50243453 4:1
|
||||
-3.1 1:1 2:0.84061366 3:0.54605511 4:1
|
||||
3.1 1:1 2:0.54793197 3:0.77164289 4:1
|
||||
-3.1 1:1 2:1 3:0.46336375 4:1
|
||||
-3.1 1:0.36338045 2:0.20017167 3:0.27174489 4:0.19030002
|
||||
-3.1 1:0.56016075 2:0.2511454 3:0.27174489 4:0.25418659
|
||||
-3.1 1:0.58720387 2:0.26591235 3:0.27174489 4:0.28451975
|
||||
-3.1 1:0.72561366 2:0.32432484 3:0.27174489 4:0.34947968
|
||||
3.1 1:0.7525563 2:0.34866202 3:0.27174489 4:0.3991584
|
||||
3.1 1:0.88089009 2:0.45568174 3:0.27174489 4:0.51691346
|
||||
3.1 1:0.89118788 2:0.47211671 3:0.27174489 4:0.54829173
|
||||
3.1 1:0.94970136 2:0.54170694 3:0.27174489 4:0.63661853
|
||||
3.1 1:0.95617102 2:0.55602795 3:0.27174489 4:0.66263285
|
||||
3.1 1:0.96902859 2:0.58505878 3:0.27174489 4:0.72053996
|
||||
3.1 1:0.49691615 2:0.56424104 3:0.019238957 4:0.45200919
|
||||
3.1 1:0.50469145 2:0.57181443 3:0.019238957 4:0.46818436
|
||||
-3.1 1:0.67458252 2:0.62423542 3:0.019238957 4:0.49597011
|
||||
-3.1 1:0.67941593 2:0.6324076 3:0.019238957 4:0.50994261
|
||||
-3.1 1:0.79839909 2:0.68132931 3:0.019238957 4:0.52861368
|
||||
3.1 1:0.8998255 2:0.73591865 3:0.019238957 4:0.555713
|
||||
3.1 1:0.96138923 2:0.76908851 3:0.019238957 4:0.57268419
|
||||
3.1 1:0.96906849 2:0.7906865 3:0.019238957 4:0.59393192
|
||||
3.1 1:0.028315453 2:0.029721262 3:0.57015555
|
||||
-3.1 1:0.61695399 2:0.18704248 3:0.57015555 4:0.1814112
|
||||
-3.1 1:0.7608844 2:0.25428655 3:0.57015555 4:0.24370254
|
||||
-3.1 1:0.82057107 2:0.30563046 3:0.57015555 4:0.30618093
|
||||
-3.1 1:0.86008714 2:0.34853999 3:0.57015555 4:0.35992967
|
||||
-3.1 1:0.89455431 2:0.39394543 3:0.57015555 4:0.41860883
|
||||
-3.1 1:0.93054994 2:0.45158749 3:0.57015555 4:0.49788181
|
||||
3.1 1:0.16873718 2:0.15491045 3:0.73861347 4:0.079392181
|
||||
-3.1 1:0.45188506 2:0.22731935 3:0.73861347 4:0.16130023
|
||||
3.1 1:0.69176657 2:0.33745528 3:0.73861347 4:0.30827001
|
||||
-3.1 1:0.76536179 2:0.36671253 3:0.73861347 4:0.34343984
|
||||
-0.02554211357444341 1:0.86463628 2:0.44598536 3:0.73861347 4:0.43860171
|
||||
3.1 1:0.90279382 2:0.49917048 3:0.73861347 4:0.50883156
|
||||
3.1 1:0.9278218 2:0.54448511 3:0.73861347 4:0.56756291
|
||||
3.1 1:2.220446e-16 2:0.23907071 3:0.50243453 4:0.038179135
|
||||
3.1 1:0.42756068 2:0.33322794 3:0.50243453 4:0.144644
|
||||
3.1 1:0.54211376 2:0.37139949 3:0.50243453 4:0.1921988
|
||||
3.1 1:0.59120008 2:0.38742794 3:0.50243453 4:0.20324125
|
||||
3.1 1:0.61558961 2:0.40700327 3:0.50243453 4:0.23911229
|
||||
3.1 1:0.66410067 2:0.42453917 3:0.50243453 4:0.25030438
|
||||
3.1 1:0.77796278 2:0.50015434 3:0.50243453 4:0.35266323
|
||||
3.1 1:0.850087 2:0.56409596 3:0.50243453 4:0.44272339
|
||||
3.1 1:0.89007769 2:0.6105181 3:0.50243453 4:0.51063948
|
||||
3.1 1:0.2919114 2:0.32670389 3:0.54605511 4:0.16789622
|
||||
3.1 1:0.56327043 2:0.41097052 3:0.54605511 4:0.28869814
|
||||
-3.1 1:0.69223575 2:0.44677163 3:0.54605511 4:0.30435865
|
||||
3.1 1:0.7570134 2:0.52053937 3:0.54605511 4:0.45274665
|
||||
-3.1 1:0.93882855 2:0.64245784 3:0.54605511 4:0.54772182
|
||||
3.1 1:0.98348966 2:0.77515886 3:0.54605511 4:0.7707436
|
||||
3.1 1:0.30992869 2:0.24744957 3:0.21597041 4:0.08636103
|
||||
-3.1 1:0.56052264 2:0.31230263 3:0.21597041 4:0.16193225
|
||||
-3.1 1:0.70082836 2:0.36112001 3:0.21597041 4:0.2051139
|
||||
3.1 1:0.73029842 2:0.38872215 3:0.21597041 4:0.2447673
|
||||
3.1 1:0.86760546 2:0.48182811 3:0.21597041 4:0.33403096
|
||||
3.1 1:0.87147234 2:0.48882625 3:0.21597041 4:0.34344882
|
||||
3.1 1:0.95086917 2:0.55599973 3:0.21597041 4:0.39368584
|
||||
3.1 1:0.03020499 3:0.77164289 4:0.010458785
|
||||
-0.01859023599776738 1:0.47261196 2:0.084491417 3:0.77164289 4:0.097458927
|
||||
-3.1 1:0.58771434 2:0.13408384 3:0.77164289 4:0.1573028
|
||||
3.1 1:0.67102703 2:0.16297436 3:0.77164289 4:0.1833146
|
||||
3.1 1:0.72313816 2:0.19544136 3:0.77164289 4:0.22168406
|
||||
3.1 1:0.78939255 2:0.22653651 3:0.77164289 4:0.24606121
|
||||
3.1 1:0.83915519 2:0.27026774 3:0.77164289 4:0.29560442
|
||||
3.1 1:0.87367366 2:0.30750931 3:0.77164289 4:0.33839465
|
||||
-3.1 1:0.93106101 2:0.38632703 3:0.77164289 4:0.43396065
|
||||
-3.1 1:0.47596853 2:0.4846003 3:0.46336375 4:0.30839395
|
||||
-3.1 1:0.6683492 2:0.56626182 3:0.46336375 4:0.40875179
|
||||
-3.1 1:0.76380856 2:0.60596099 3:0.46336375 4:0.45269953
|
||||
-3.1 1:0.8078454 2:0.66094735 3:0.46336375 4:0.52147761
|
||||
3.1 1:0.88161084 2:0.71273046 3:0.46336375 4:0.57004196
|
||||
3.1 1:0.93055934 2:0.73684772 3:0.46336375 4:0.57987786
|
78
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv1.pkl
vendored
Normal file
78
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv1.pkl
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F3.1
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.1
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif'
|
||||
p16
|
||||
aS'adm'
|
||||
p17
|
||||
aS'motion'
|
||||
p18
|
||||
aS'ansnr'
|
||||
p19
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p20
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p21
|
||||
(lp22
|
||||
S'VMAF_feature_adm_score'
|
||||
p23
|
||||
aS'VMAF_feature_ansnr_score'
|
||||
p24
|
||||
aS'VMAF_feature_motion_score'
|
||||
p25
|
||||
aS'VMAF_feature_vif_score'
|
||||
p26
|
||||
asS'intercepts'
|
||||
p27
|
||||
(lp28
|
||||
F-0.14912280701754385
|
||||
aF-1.635828565827225
|
||||
aF-0.5027725296167747
|
||||
aF-0.017141728475754268
|
||||
aF-0.12191917348723096
|
||||
asS'model_type'
|
||||
p29
|
||||
S'LIBSVMNUSVR'
|
||||
p30
|
||||
sS'model'
|
||||
p31
|
||||
NsS'slopes'
|
||||
p32
|
||||
(lp33
|
||||
F0.010526315789473684
|
||||
aF2.635828565827225
|
||||
aF0.030306790717580585
|
||||
aF0.05282785410063858
|
||||
aF1.121919173487231
|
||||
ass.
|
286
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv1.pkl.model
vendored
Normal file
286
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv1.pkl.model
vendored
Normal file
@ -0,0 +1,286 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.1
|
||||
nr_class 2
|
||||
total_sv 279
|
||||
rho -1.07971
|
||||
SV
|
||||
-3.1 1:1 2:0.9023797 3:0.62009279 4:1
|
||||
-2.10253912373279 1:1 2:0.78580702 3:0.15702556 4:1
|
||||
-3.1 1:1 2:0.90598891 3:0.65360354 4:1
|
||||
1.678959823513808 1:1 2:0.6571096 3:0.28207571 4:1
|
||||
-3.1 1:1 2:0.82419551 3:0.19908625 4:1
|
||||
0.9888450308367026 1:1 2:0.58727563 3:0.061964183 4:1
|
||||
3.1 1:1 2:0.64891012 3:0.37995933 4:1
|
||||
3.1 1:1 2:0.67548841 3:0.62386588 4:1
|
||||
3.1 1:1 2:0.60150691 3:0.1012817 4:1
|
||||
-3.1 1:1 2:0.86412963 3:0.19607431 4:1
|
||||
-0.6792382430744661 1:1 2:0.87354364 3:0.066725896 4:1
|
||||
-3.1 1:1 2:0.81706577 3:0.31813065 4:1
|
||||
-3.1 1:1 2:0.86043223 3:0.24484638 4:1
|
||||
-0.491352724126849 1:1 2:0.83592028 4:1
|
||||
0.02372126687158226 1:1 2:0.75487863 3:1 4:1
|
||||
-3.1 1:0.500758 2:0.44434935 3:0.62009279 4:0.25504335
|
||||
-3.1 1:0.66395488 2:0.49545656 3:0.62009279 4:0.30315084
|
||||
-3.1 1:0.68710445 2:0.51616008 3:0.62009279 4:0.32840241
|
||||
3.1 1:0.77682167 2:0.55184234 3:0.62009279 4:0.36126897
|
||||
3.1 1:0.80552743 2:0.57886981 3:0.62009279 4:0.3952589
|
||||
3.1 1:0.88273764 2:0.61682479 3:0.62009279 4:0.43234181
|
||||
-3.1 1:0.93116188 2:0.65752339 3:0.62009279 4:0.46598966
|
||||
3.1 1:0.93943344 2:0.67382416 3:0.62009279 4:0.48875504
|
||||
3.1 1:0.48032161 2:0.26272159 3:0.15702556 4:0.27429199
|
||||
-3.1 1:0.66810372 2:0.32302188 3:0.15702556 4:0.33873779
|
||||
-3.1 1:0.67688588 2:0.33334899 3:0.15702556 4:0.35306846
|
||||
3.1 1:0.78413086 2:0.37980881 3:0.15702556 4:0.39916953
|
||||
3.1 1:0.80344636 2:0.40239211 3:0.15702556 4:0.42973317
|
||||
3.1 1:0.90011555 2:0.46382991 3:0.15702556 4:0.49825574
|
||||
-3.1 1:0.95658637 2:0.51134587 3:0.15702556 4:0.53464063
|
||||
3.1 1:0.96029608 2:0.52485236 3:0.15702556 4:0.55200374
|
||||
3.014764359005449 1:0.50372797 2:0.45107197 3:0.65360354 4:0.13898928
|
||||
-3.1 1:0.6476565 2:0.4814289 3:0.65360354 4:0.15960103
|
||||
3.1 1:0.67501524 2:0.49775418 3:0.65360354 4:0.17409954
|
||||
3.1 1:0.75617281 2:0.51702674 3:0.65360354 4:0.18783211
|
||||
3.1 1:0.79008741 2:0.53686054 3:0.65360354 4:0.20893624
|
||||
3.1 1:0.85403547 2:0.55355255 3:0.65360354 4:0.22488902
|
||||
-3.1 1:0.8920263 2:0.58056686 3:0.65360354 4:0.25696445
|
||||
-3.1 1:0.90077795 2:0.59512653 3:0.65360354 4:0.27832407
|
||||
-3.1 1:0.45615707 2:0.15502741 3:0.1007927 4:0.28271343
|
||||
-3.1 1:0.6589256 2:0.2347531 3:0.1007927 4:0.3947729
|
||||
-3.1 1:0.66075687 2:0.23617521 3:0.1007927 4:0.40364809
|
||||
-3.1 1:0.78680383 2:0.30989034 3:0.1007927 4:0.48951574
|
||||
3.1 1:0.80002049 2:0.32873187 3:0.1007927 4:0.51715224
|
||||
3.1 1:0.91894161 2:0.46619089 3:0.1007927 4:0.6638753
|
||||
3.1 1:0.99750863 2:0.62747416 3:0.1007927 4:0.90315739
|
||||
2.881003234418858 1:0.65435141 2:0.21779297 3:0.046808211 4:0.34632169
|
||||
-3.1 1:0.65519079 2:0.2182804 3:0.046808211 4:0.35101052
|
||||
-3.1 1:0.77999724 2:0.29259565 3:0.046808211 4:0.44902479
|
||||
3.1 1:0.79372033 2:0.31017378 3:0.046808211 4:0.4749309
|
||||
3.1 1:0.91710352 2:0.45437437 3:0.046808211 4:0.66549345
|
||||
3.1 1:0.99910085 2:0.62307047 3:0.046808211 4:0.94344783
|
||||
3.1 1:0.50908059 2:0.16768568 3:0.28207571 4:0.22007668
|
||||
3.1 1:0.69276045 2:0.24471093 3:0.28207571 4:0.3087109
|
||||
3.1 1:0.69347847 2:0.2453485 3:0.28207571 4:0.31055546
|
||||
3.1 1:0.80753513 2:0.31750623 3:0.28207571 4:0.38509619
|
||||
-3.1 1:0.82020415 2:0.33702921 3:0.28207571 4:0.40555862
|
||||
3.1 1:0.9277018 2:0.48222337 3:0.28207571 4:0.56265521
|
||||
-3.1 1:0.99968646 2:0.65541159 3:0.28207571 4:0.97716656
|
||||
3.1 1:0.40648543 2:0.21352709 3:0.14532926 4:0.10636327
|
||||
3.1 1:0.58997968 2:0.252973 3:0.14532926 4:0.14058412
|
||||
3.1 1:0.61307616 2:0.26549895 3:0.14532926 4:0.15440325
|
||||
3.1 1:0.71981157 2:0.29488433 3:0.14532926 4:0.17848225
|
||||
3.1 1:0.74989483 2:0.31662006 3:0.14532926 4:0.20014771
|
||||
3.1 1:0.83675891 2:0.34313191 3:0.14532926 4:0.2240692
|
||||
3.1 1:0.89265676 2:0.36397454 3:0.14532926 4:0.24044488
|
||||
3.1 1:0.42833195 2:0.26668685 3:0.1376926 4:0.13430818
|
||||
-3.1 1:0.62765352 2:0.3225835 3:0.1376926 4:0.18165112
|
||||
-3.1 1:0.63693396 2:0.33063261 3:0.1376926 4:0.19076624
|
||||
3.1 1:0.75342497 2:0.37348216 3:0.1376926 4:0.22142921
|
||||
3.1 1:0.77611527 2:0.39218793 3:0.1376926 4:0.23880098
|
||||
3.1 1:0.87807649 2:0.44053123 3:0.1376926 4:0.27233274
|
||||
3.1 1:0.94282406 2:0.46728821 3:0.1376926 4:0.28841818
|
||||
3.1 1:0.94724171 2:0.47586514 3:0.1376926 4:0.29780097
|
||||
3.1 1:0.55022974 2:0.37677077 3:0.19908625 4:0.13993145
|
||||
3.1 1:0.70228825 2:0.41065868 3:0.19908625 4:0.16020672
|
||||
3.1 1:0.71225044 2:0.41933192 3:0.19908625 4:0.16684779
|
||||
3.1 1:0.79683949 2:0.43826809 3:0.19908625 4:0.17816881
|
||||
3.1 1:0.81652281 2:0.45300881 3:0.19908625 4:0.19016999
|
||||
3.1 1:0.89025411 2:0.468107 3:0.19908625 4:0.20163548
|
||||
-3.1 1:0.93569958 2:0.48157676 3:0.19908625 4:0.21208644
|
||||
-3.1 1:0.93913288 2:0.49123252 3:0.19908625 4:0.22195992
|
||||
-3.1 1:0.5613615 2:0.47821058 3:0.034816509 4:0.081947159
|
||||
-3.1 1:0.71661596 2:0.50542548 3:0.034816509 4:0.10288869
|
||||
-3.1 1:0.71792653 2:0.50792525 3:0.034816509 4:0.10539165
|
||||
-3.1 1:0.8060293 2:0.5229294 3:0.034816509 4:0.11870038
|
||||
2.759163818336796 1:0.8170115 2:0.5309274 3:0.034816509 4:0.1268531
|
||||
3.1 1:0.89730446 2:0.54080799 3:0.034816509 4:0.14094325
|
||||
-3.1 1:0.94573058 2:0.55084129 3:0.034816509 4:0.15019994
|
||||
-3.1 1:0.94809929 2:0.55792831 3:0.034816509 4:0.15880886
|
||||
-3.1 1:0.41059148 2:0.12282286 3:0.061964183 4:0.12878076
|
||||
-2.648085892024447 1:0.62044023 2:0.17917576 3:0.061964183 4:0.19955572
|
||||
3.1 1:0.62423996 2:0.18405772 3:0.061964183 4:0.2100222
|
||||
3.1 1:0.74904673 2:0.23639488 3:0.061964183 4:0.2673725
|
||||
-3.1 1:0.76470303 2:0.25419279 3:0.061964183 4:0.29306213
|
||||
3.1 1:0.88591654 2:0.34802784 3:0.061964183 4:0.38937669
|
||||
-3.1 1:0.96084799 2:0.42014758 3:0.061964183 4:0.45452251
|
||||
3.1 1:0.96282592 2:0.42881288 3:0.061964183 4:0.46728124
|
||||
3.1 1:0.4745609 2:0.18200267 3:0.23130691 4:0.26767254
|
||||
-3.1 1:0.66703242 2:0.24861296 3:0.23130691 4:0.34248223
|
||||
-3.1 1:0.68361815 2:0.26524478 3:0.23130691 4:0.36982031
|
||||
-3.1 1:0.78457344 2:0.32209063 3:0.23130691 4:0.43388438
|
||||
3.1 1:0.80856316 2:0.35113715 3:0.23130691 4:0.47936171
|
||||
3.1 1:0.90912597 2:0.4570275 3:0.23130691 4:0.59104161
|
||||
-3.1 1:0.98011205 2:0.57256903 3:0.23130691 4:0.69987699
|
||||
-3.1 1:0.98354192 2:0.5885804 3:0.23130691 4:0.72038426
|
||||
3.1 1:0.23737343 2:0.092648467 3:0.37995933 4:0.074975226
|
||||
-3.1 1:0.43053262 2:0.12481478 3:0.37995933 4:0.11338352
|
||||
-3.1 1:0.48855711 2:0.150659 3:0.37995933 4:0.14217743
|
||||
-3.1 1:0.60605382 2:0.18559397 3:0.37995933 4:0.18417781
|
||||
-3.1 1:0.68505081 2:0.23614196 3:0.37995933 4:0.24718934
|
||||
-3.1 1:0.79592925 2:0.30063732 3:0.37995933 4:0.33000913
|
||||
-3.1 1:0.89013303 2:0.39057937 3:0.37995933 4:0.43942102
|
||||
3.1 1:0.91458482 2:0.43330721 3:0.37995933 4:0.49236913
|
||||
-3.1 1:0.44292847 2:0.23360631 3:0.32712248 4:0.21957988
|
||||
-3.1 1:0.63425946 2:0.28995647 3:0.32712248 4:0.28690618
|
||||
-3.1 1:0.66092452 2:0.30993956 3:0.32712248 4:0.31960246
|
||||
-3.1 1:0.76329946 2:0.36521762 3:0.32712248 4:0.38583697
|
||||
-3.1 1:0.7970581 2:0.40152865 3:0.32712248 4:0.44677644
|
||||
-3.1 1:0.90052205 2:0.50628807 3:0.32712248 4:0.57003848
|
||||
-3.1 1:0.97414205 2:0.63094307 3:0.32712248 4:0.72152142
|
||||
3.1 1:0.98094538 2:0.65383234 3:0.32712248 4:0.75626495
|
||||
-3.1 1:0.31470615 2:0.10921428 3:0.62386588 4:0.12328982
|
||||
-3.1 1:0.50823936 2:0.15625977 3:0.62386588 4:0.17265339
|
||||
-3.1 1:0.57814755 2:0.19290178 3:0.62386588 4:0.21143065
|
||||
-3.1 1:0.68975328 2:0.24116742 3:0.62386588 4:0.265971
|
||||
-3.1 1:0.76491321 2:0.2989841 3:0.62386588 4:0.33989723
|
||||
-3.1 1:0.86588644 2:0.38591976 3:0.62386588 4:0.44351938
|
||||
-3.1 1:0.95130265 2:0.50711103 3:0.62386588 4:0.59607542
|
||||
-3.1 1:0.96659799 2:0.54981706 3:0.62386588 4:0.65360079
|
||||
3.1 1:0.32769235 2:0.11805063 3:0.1012817 4:0.15797584
|
||||
3.1 1:0.57102853 2:0.18673101 3:0.1012817 4:0.2692099
|
||||
3.1 1:0.57282199 2:0.18739048 3:0.1012817 4:0.27170222
|
||||
3.1 1:0.72359309 2:0.2571562 3:0.1012817 4:0.37594831
|
||||
3.1 1:0.74350533 2:0.27830189 3:0.1012817 4:0.40502819
|
||||
3.1 1:0.90049487 2:0.43091367 3:0.1012817 4:0.66579618
|
||||
-3.1 1:0.34454124 2:0.13646724 3:0.46629001 4:0.15289274
|
||||
-3.1 1:0.55182328 2:0.19707014 3:0.46629001 4:0.22887916
|
||||
-3.1 1:0.58998702 2:0.22368173 3:0.46629001 4:0.26557425
|
||||
-3.1 1:0.71011996 2:0.27614135 3:0.46629001 4:0.32836665
|
||||
3.1 1:0.76163957 2:0.33197521 3:0.46629001 4:0.4105769
|
||||
3.1 1:0.86529435 2:0.41073733 3:0.46629001 4:0.49994272
|
||||
3.1 1:0.93362768 2:0.48828001 3:0.46629001 4:0.57622042
|
||||
3.1 1:0.94426733 2:0.51454258 3:0.46629001 4:0.60656313
|
||||
-3.1 1:0.41172196 2:0.37454782 3:0.19607431 4:0.27706591
|
||||
-3.1 1:0.60496716 2:0.4365045 3:0.19607431 4:0.36845584
|
||||
-3.1 1:0.63286175 2:0.45793051 3:0.19607431 4:0.40337459
|
||||
-3.1 1:0.74572903 2:0.51474633 3:0.19607431 4:0.47825627
|
||||
-3.1 1:0.78782385 2:0.5589851 3:0.19607431 4:0.54567335
|
||||
-0.02263393499765885 1:0.95774772 2:0.73485939 3:0.19607431 4:0.71704207
|
||||
-3.1 1:0.9649349 2:0.7529231 3:0.19607431 4:0.73947302
|
||||
-3.1 1:0.50455108 2:0.37707906 3:0.066725896 4:0.37383292
|
||||
-3.1 1:0.67886099 2:0.45171655 3:0.066725896 4:0.47612724
|
||||
-3.1 1:0.69335422 2:0.46768614 3:0.066725896 4:0.50363859
|
||||
-3.1 1:0.79377173 2:0.52913678 3:0.066725896 4:0.56988358
|
||||
-3.1 1:0.81917828 2:0.56346863 3:0.066725896 4:0.61594965
|
||||
3.1 1:0.91322514 2:0.65354467 3:0.066725896 4:0.7000731
|
||||
3.1 1:0.96729751 2:0.71471484 3:0.066725896 4:0.7364402
|
||||
3.1 1:0.97059951 2:0.72682591 3:0.066725896 4:0.74927526
|
||||
3.1 1:0.48038412 2:0.23379852 3:0.31813065 4:0.18361558
|
||||
-3.1 1:0.6494774 2:0.27837021 3:0.31813065 4:0.22867305
|
||||
-3.1 1:0.67648047 2:0.3096224 3:0.31813065 4:0.26662141
|
||||
-3.1 1:0.76923458 2:0.34709787 3:0.31813065 4:0.30394459
|
||||
3.1 1:0.81179327 2:0.4051903 3:0.31813065 4:0.3809145
|
||||
-3.1 1:0.8956297 2:0.46193279 3:0.31813065 4:0.44146699
|
||||
-3.1 1:0.95803953 2:0.52505896 3:0.31813065 4:0.50173907
|
||||
-3.1 1:0.96714842 2:0.55388193 3:0.31813065 4:0.53377919
|
||||
3.1 1:0.48186529 2:0.28840495 3:0.24484638 4:0.35029221
|
||||
3.1 1:0.63910783 2:0.34199561 3:0.24484638 4:0.40973951
|
||||
3.1 1:0.67242576 2:0.37411679 3:0.24484638 4:0.44891858
|
||||
3.1 1:0.76844641 2:0.42165442 3:0.24484638 4:0.49511208
|
||||
3.1 1:0.81232229 2:0.47549925 3:0.24484638 4:0.5571142
|
||||
3.1 1:0.89573129 2:0.53507396 3:0.24484638 4:0.6057181
|
||||
3.1 1:0.96198872 2:0.59867279 3:0.24484638 4:0.64581725
|
||||
3.1 1:0.97130686 2:0.62463226 3:0.24484638 4:0.6670586
|
||||
-3.1 1:0.54409816 2:0.47771275 3:0.024412915 4:0.44465489
|
||||
-3.1 1:0.70378255 2:0.53593465 3:0.024412915 4:0.51210471
|
||||
-3.1 1:0.70869839 2:0.54357264 3:0.024412915 4:0.52082163
|
||||
-3.1 1:0.8056575 2:0.59171889 3:0.024412915 4:0.56825209
|
||||
3.1 1:0.91340004 2:0.67669648 3:0.024412915 4:0.6608159
|
||||
-0.2120177324707262 1:0.96944322 2:0.72824579 3:0.024412915 4:0.70660368
|
||||
-3.1 1:0.47841867 2:0.22724946 3:0.61324729 4:0.28192681
|
||||
-3.1 1:0.63484695 2:0.28242948 3:0.61324729 4:0.34625947
|
||||
-3.1 1:0.67502231 2:0.31532094 3:0.61324729 4:0.38883959
|
||||
-3.1 1:0.76652592 2:0.36736763 3:0.61324729 4:0.4464908
|
||||
3.1 1:0.81130451 2:0.42383137 3:0.61324729 4:0.51856905
|
||||
-3.1 1:0.89206502 2:0.49271001 3:0.61324729 4:0.58630069
|
||||
3.1 1:0.95502376 2:0.56662668 3:0.61324729 4:0.63387505
|
||||
3.1 1:0.96428826 2:0.59698594 3:0.61324729 4:0.66045615
|
||||
-3.1 1:0.51091654 2:0.36753212 4:0.32122832
|
||||
-3.1 1:0.67131199 2:0.40988734 4:0.37624653
|
||||
-3.1 1:0.67853479 2:0.41802337 4:0.38490923
|
||||
-3.1 1:0.77668766 2:0.4530568 4:0.42714338
|
||||
-3.1 1:0.80010279 2:0.47295605 4:0.44945901
|
||||
-3.1 1:0.89419414 2:0.52043749 4:0.51637124
|
||||
-3.1 1:0.94867588 2:0.55053174 4:0.55259659
|
||||
-3.1 1:0.95202741 2:0.56265542 4:0.56679466
|
||||
3.1 1:0.080816638 2:0.10224369 3:1 4:0.096522634
|
||||
3.1 1:0.2819517 2:0.13673148 3:1 4:0.13405098
|
||||
-3.1 1:0.37552113 2:0.17052558 3:1 4:0.17330297
|
||||
-3.1 1:0.50495742 2:0.20639051 3:1 4:0.21544897
|
||||
-3.1 1:0.62998381 2:0.27310353 3:1 4:0.30353179
|
||||
-3.1 1:0.75084058 2:0.33811623 3:1 4:0.38380081
|
||||
1.053542467015948 1:0.86417134 2:0.42515427 3:1 4:0.47677652
|
||||
3.1 1:0.89893124 2:0.4707805 3:1 4:0.53088363
|
||||
3.1 1:1 2:0.60957429 3:0.57015555 4:1
|
||||
-3.1 1:1 2:0.83216729 3:0.50243453 4:1
|
||||
-3.1 1:1 2:0.84061366 3:0.54605511 4:1
|
||||
3.1 1:1 2:0.54793197 3:0.77164289 4:1
|
||||
-3.1 1:1 2:1 3:0.46336375 4:1
|
||||
-3.1 1:0.36338045 2:0.20017167 3:0.27174489 4:0.19030002
|
||||
-3.1 1:0.56016075 2:0.2511454 3:0.27174489 4:0.25418659
|
||||
-3.1 1:0.58720387 2:0.26591235 3:0.27174489 4:0.28451975
|
||||
-3.1 1:0.72561366 2:0.32432484 3:0.27174489 4:0.34947968
|
||||
3.1 1:0.7525563 2:0.34866202 3:0.27174489 4:0.3991584
|
||||
3.1 1:0.88089009 2:0.45568174 3:0.27174489 4:0.51691346
|
||||
3.1 1:0.89118788 2:0.47211671 3:0.27174489 4:0.54829173
|
||||
3.1 1:0.94970136 2:0.54170694 3:0.27174489 4:0.63661853
|
||||
3.1 1:0.95617102 2:0.55602795 3:0.27174489 4:0.66263285
|
||||
3.1 1:0.96902859 2:0.58505878 3:0.27174489 4:0.72053996
|
||||
3.1 1:0.49691615 2:0.56424104 3:0.019238957 4:0.45200919
|
||||
3.1 1:0.50469145 2:0.57181443 3:0.019238957 4:0.46818436
|
||||
-3.1 1:0.67458252 2:0.62423542 3:0.019238957 4:0.49597011
|
||||
-3.1 1:0.67941593 2:0.6324076 3:0.019238957 4:0.50994261
|
||||
-3.1 1:0.79839909 2:0.68132931 3:0.019238957 4:0.52861368
|
||||
3.1 1:0.8998255 2:0.73591865 3:0.019238957 4:0.555713
|
||||
3.1 1:0.96138923 2:0.76908851 3:0.019238957 4:0.57268419
|
||||
3.1 1:0.96906849 2:0.7906865 3:0.019238957 4:0.59393192
|
||||
3.1 1:0.028315453 2:0.029721262 3:0.57015555
|
||||
-3.1 1:0.61695399 2:0.18704248 3:0.57015555 4:0.1814112
|
||||
-3.1 1:0.7608844 2:0.25428655 3:0.57015555 4:0.24370254
|
||||
-3.1 1:0.82057107 2:0.30563046 3:0.57015555 4:0.30618093
|
||||
-3.1 1:0.86008714 2:0.34853999 3:0.57015555 4:0.35992967
|
||||
-3.1 1:0.89455431 2:0.39394543 3:0.57015555 4:0.41860883
|
||||
-3.1 1:0.93054994 2:0.45158749 3:0.57015555 4:0.49788181
|
||||
3.1 1:0.16873718 2:0.15491045 3:0.73861347 4:0.079392181
|
||||
-3.1 1:0.45188506 2:0.22731935 3:0.73861347 4:0.16130023
|
||||
3.1 1:0.69176657 2:0.33745528 3:0.73861347 4:0.30827001
|
||||
-3.1 1:0.76536179 2:0.36671253 3:0.73861347 4:0.34343984
|
||||
-0.02554211357444341 1:0.86463628 2:0.44598536 3:0.73861347 4:0.43860171
|
||||
3.1 1:0.90279382 2:0.49917048 3:0.73861347 4:0.50883156
|
||||
3.1 1:0.9278218 2:0.54448511 3:0.73861347 4:0.56756291
|
||||
3.1 1:2.220446e-16 2:0.23907071 3:0.50243453 4:0.038179135
|
||||
3.1 1:0.42756068 2:0.33322794 3:0.50243453 4:0.144644
|
||||
3.1 1:0.54211376 2:0.37139949 3:0.50243453 4:0.1921988
|
||||
3.1 1:0.59120008 2:0.38742794 3:0.50243453 4:0.20324125
|
||||
3.1 1:0.61558961 2:0.40700327 3:0.50243453 4:0.23911229
|
||||
3.1 1:0.66410067 2:0.42453917 3:0.50243453 4:0.25030438
|
||||
3.1 1:0.77796278 2:0.50015434 3:0.50243453 4:0.35266323
|
||||
3.1 1:0.850087 2:0.56409596 3:0.50243453 4:0.44272339
|
||||
3.1 1:0.89007769 2:0.6105181 3:0.50243453 4:0.51063948
|
||||
3.1 1:0.2919114 2:0.32670389 3:0.54605511 4:0.16789622
|
||||
3.1 1:0.56327043 2:0.41097052 3:0.54605511 4:0.28869814
|
||||
-3.1 1:0.69223575 2:0.44677163 3:0.54605511 4:0.30435865
|
||||
3.1 1:0.7570134 2:0.52053937 3:0.54605511 4:0.45274665
|
||||
-3.1 1:0.93882855 2:0.64245784 3:0.54605511 4:0.54772182
|
||||
3.1 1:0.98348966 2:0.77515886 3:0.54605511 4:0.7707436
|
||||
3.1 1:0.30992869 2:0.24744957 3:0.21597041 4:0.08636103
|
||||
-3.1 1:0.56052264 2:0.31230263 3:0.21597041 4:0.16193225
|
||||
-3.1 1:0.70082836 2:0.36112001 3:0.21597041 4:0.2051139
|
||||
3.1 1:0.73029842 2:0.38872215 3:0.21597041 4:0.2447673
|
||||
3.1 1:0.86760546 2:0.48182811 3:0.21597041 4:0.33403096
|
||||
3.1 1:0.87147234 2:0.48882625 3:0.21597041 4:0.34344882
|
||||
3.1 1:0.95086917 2:0.55599973 3:0.21597041 4:0.39368584
|
||||
3.1 1:0.03020499 3:0.77164289 4:0.010458785
|
||||
-0.01859023599776738 1:0.47261196 2:0.084491417 3:0.77164289 4:0.097458927
|
||||
-3.1 1:0.58771434 2:0.13408384 3:0.77164289 4:0.1573028
|
||||
3.1 1:0.67102703 2:0.16297436 3:0.77164289 4:0.1833146
|
||||
3.1 1:0.72313816 2:0.19544136 3:0.77164289 4:0.22168406
|
||||
3.1 1:0.78939255 2:0.22653651 3:0.77164289 4:0.24606121
|
||||
3.1 1:0.83915519 2:0.27026774 3:0.77164289 4:0.29560442
|
||||
3.1 1:0.87367366 2:0.30750931 3:0.77164289 4:0.33839465
|
||||
-3.1 1:0.93106101 2:0.38632703 3:0.77164289 4:0.43396065
|
||||
-3.1 1:0.47596853 2:0.4846003 3:0.46336375 4:0.30839395
|
||||
-3.1 1:0.6683492 2:0.56626182 3:0.46336375 4:0.40875179
|
||||
-3.1 1:0.76380856 2:0.60596099 3:0.46336375 4:0.45269953
|
||||
-3.1 1:0.8078454 2:0.66094735 3:0.46336375 4:0.52147761
|
||||
3.1 1:0.88161084 2:0.71273046 3:0.46336375 4:0.57004196
|
||||
3.1 1:0.93055934 2:0.73684772 3:0.46336375 4:0.57987786
|
96
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv2.pkl
vendored
Normal file
96
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv2.pkl
vendored
Normal file
@ -0,0 +1,96 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif_scale0'
|
||||
p16
|
||||
aS'vif_scale1'
|
||||
p17
|
||||
aS'vif_scale2'
|
||||
p18
|
||||
aS'vif_scale3'
|
||||
p19
|
||||
aS'adm2'
|
||||
p20
|
||||
aS'motion'
|
||||
p21
|
||||
aS'ansnr'
|
||||
p22
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_ansnr_score'
|
||||
p27
|
||||
aS'VMAF_feature_motion_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p31
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p32
|
||||
asS'intercepts'
|
||||
p33
|
||||
(lp34
|
||||
F-0.14912280701754385
|
||||
aF-1.9715194224195431
|
||||
aF-0.5027725296167747
|
||||
aF-0.017141728475754268
|
||||
aF-0.08217305517359848
|
||||
aF-0.2767600362748038
|
||||
aF-0.469070289400241
|
||||
aF-0.7460857020871375
|
||||
asS'model_type'
|
||||
p35
|
||||
S'LIBSVMNUSVR'
|
||||
p36
|
||||
sS'model'
|
||||
p37
|
||||
NsS'slopes'
|
||||
p38
|
||||
(lp39
|
||||
F0.010526315789473684
|
||||
aF2.971519422419543
|
||||
aF0.030306790717580585
|
||||
aF0.05282785410063858
|
||||
aF1.0821730334476833
|
||||
aF1.2767601181740016
|
||||
aF1.4690704623045836
|
||||
aF1.746086042520506
|
||||
ass.
|
279
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv2.pkl.model
vendored
Normal file
279
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv2.pkl.model
vendored
Normal file
@ -0,0 +1,279 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 272
|
||||
rho -1.40161
|
||||
SV
|
||||
-4 1:1 2:0.9023797 3:0.62009279 4:0.99999956 5:0.99999617 6:0.99999659 7:0.99999649
|
||||
-4 1:1 2:0.90598891 3:0.65360354 4:0.99999982 5:0.99999769 6:0.99999611 7:0.99999789
|
||||
3.71066388041585 1:1 2:0.63966644 3:0.1007927 4:0.99999988 5:0.99999985 6:0.99999974 7:0.99999956
|
||||
4 1:1 2:0.6268493 3:0.046808211 4:0.99999979 5:0.9999997 6:0.9999995 7:0.99999916
|
||||
4 1:1 2:0.58727563 3:0.061964183 4:0.99999926 5:0.99999929 6:0.99999891 7:0.99999862
|
||||
-4 1:1 2:0.67548841 3:0.62386588 4:0.99999991 5:0.99999987 6:0.9999999 7:0.99999983
|
||||
3.288729549724419 1:1 2:0.60150691 3:0.1012817 4:0.99999995 5:1 6:0.99999997 7:0.99999982
|
||||
-4 1:1 2:0.80993081 3:0.61324729 4:0.99999945 5:0.99999953 6:0.99999881 7:0.99999873
|
||||
4 1:1 2:0.83592028 4:0.9999953 5:0.99999163 6:0.99999444 7:0.9999906
|
||||
-1.348139568452444 1:1 2:0.75487863 3:1 4:0.99999989 5:0.99999962 6:0.9999994 7:0.99999896
|
||||
-4 1:0.55120029 2:0.44434935 3:0.62009279 4:0.26121942 5:0.6293366 6:0.71975367 7:0.78093108
|
||||
-4 1:0.69994822 2:0.49545656 3:0.62009279 4:0.30135725 5:0.70722144 6:0.79216822 7:0.83978283
|
||||
-4 1:0.72011021 2:0.51616008 3:0.62009279 4:0.32121318 5:0.74989787 6:0.83473257 7:0.87962097
|
||||
4 1:0.80161657 2:0.55184234 3:0.62009279 4:0.3501572 5:0.79684481 6:0.87136279 7:0.90727549
|
||||
4 1:0.82707856 2:0.57886981 3:0.62009279 4:0.37930406 5:0.84227672 6:0.90805726 7:0.93746453
|
||||
4 1:0.89751445 2:0.61682479 3:0.62009279 4:0.41517592 5:0.87673937 6:0.93162471 7:0.95441416
|
||||
-4 1:0.94175354 2:0.65752339 3:0.62009279 4:0.44577851 5:0.91006376 6:0.95340334 7:0.97037481
|
||||
4 1:0.94886911 2:0.67382416 3:0.62009279 4:0.46794139 5:0.92362274 6:0.96145271 7:0.97586663
|
||||
-4 1:0.52231028 2:0.26272159 3:0.15702556 4:0.32589559 5:0.6581287 6:0.76030191 7:0.83726695
|
||||
-4 1:0.69532892 2:0.32302188 3:0.15702556 4:0.37963798 5:0.75963071 6:0.84793528 7:0.89590344
|
||||
-4 1:0.70311899 2:0.33334899 3:0.15702556 4:0.39122605 5:0.77997186 6:0.86615863 7:0.91195763
|
||||
-4 1:0.80199769 2:0.37980881 3:0.15702556 4:0.43275766 5:0.83967337 6:0.90601589 7:0.93575795
|
||||
-4 1:0.81958249 2:0.40239211 3:0.15702556 4:0.46108289 5:0.86793163 6:0.92463208 7:0.94935262
|
||||
4 1:0.90910291 2:0.46382991 3:0.15702556 4:0.53184539 5:0.91070978 6:0.95009054 7:0.96632324
|
||||
-4 1:0.96127511 2:0.51134587 3:0.15702556 4:0.56535202 5:0.93581909 6:0.96661274 7:0.97845579
|
||||
4 1:0.96463426 2:0.52485236 3:0.15702556 4:0.58122093 5:0.94306733 6:0.97086662 7:0.98141713
|
||||
4 1:0.53215537 2:0.45107197 3:0.65360354 4:0.10503639 5:0.51343702 6:0.6311132 7:0.68810633
|
||||
-4 1:0.66952701 2:0.4814289 3:0.65360354 4:0.1196006 5:0.56492275 6:0.69164814 7:0.7502318
|
||||
4 1:0.69456875 2:0.49775418 3:0.65360354 4:0.12925873 5:0.60404133 6:0.73699834 7:0.79724738
|
||||
4 1:0.7719972 2:0.51702674 3:0.65360354 4:0.13902331 5:0.63790465 6:0.77218831 7:0.83039508
|
||||
4 1:0.80320895 2:0.53686054 3:0.65360354 4:0.15424042 5:0.68718524 6:0.81881741 7:0.87335226
|
||||
4 1:0.86489599 2:0.55355255 3:0.65360354 4:0.16699556 5:0.71785387 6:0.84510702 7:0.8951996
|
||||
-4 1:0.9012366 2:0.58056686 3:0.65360354 4:0.19299232 5:0.77508983 6:0.88553267 7:0.92699809
|
||||
-4 1:0.90926985 2:0.59512653 3:0.65360354 4:0.21237815 5:0.80244544 6:0.90269819 7:0.93899838
|
||||
4 1:0.42520716 2:0.15502741 3:0.1007927 4:0.24051621 5:0.48911974 6:0.65173668 7:0.80252903
|
||||
-4 1:0.64142951 2:0.23617521 3:0.1007927 4:0.34197188 5:0.6868242 6:0.82459154 7:0.91058618
|
||||
-4 1:0.77466028 2:0.30989034 3:0.1007927 4:0.41863934 5:0.81361802 6:0.91024986 7:0.95545869
|
||||
-4 1:0.78864036 2:0.32873187 3:0.1007927 4:0.44617483 5:0.84086386 6:0.92445862 7:0.96165042
|
||||
4 1:0.91433421 2:0.46619089 3:0.1007927 4:0.60215347 5:0.9500684 6:0.97717524 7:0.98807012
|
||||
4 1:0.99737302 2:0.62747416 3:0.1007927 4:0.88514414 5:0.99166058 6:0.99597225 7:0.99759774
|
||||
4 1:0.40868363 2:0.13943156 3:0.046808211 4:0.20127881 5:0.43690014 6:0.62303099 7:0.80462761
|
||||
4 1:0.63428306 2:0.21779297 3:0.046808211 4:0.29367506 5:0.63478131 6:0.80404493 7:0.90860113
|
||||
4 1:0.63517172 2:0.2182804 3:0.046808211 4:0.29742126 5:0.63976608 6:0.8083318 7:0.9121364
|
||||
-4 1:0.76722122 2:0.29259565 3:0.046808211 4:0.38377254 5:0.78514877 6:0.90429663 7:0.95734326
|
||||
4 1:0.78174155 2:0.31017378 3:0.046808211 4:0.40876054 5:0.81261902 6:0.91751826 7:0.96173956
|
||||
4 1:0.91228727 2:0.45437437 3:0.046808211 4:0.61082239 5:0.94727552 6:0.9778847 7:0.98952764
|
||||
4 1:0.99904844 2:0.62307047 3:0.046808211 4:0.93477801 5:0.99671741 6:0.99843624 7:0.99906019
|
||||
4 1:0.49105754 2:0.16768568 3:0.28207571 4:0.44508755 5:0.61523775 6:0.74189323 7:0.87563111
|
||||
4 1:0.68136646 2:0.24471093 3:0.28207571 4:0.48593046 5:0.74223628 6:0.8614384 7:0.94331526
|
||||
4 1:0.68210291 2:0.2453485 3:0.28207571 4:0.48669052 5:0.74459379 6:0.86363839 7:0.94501266
|
||||
-4 1:0.81359956 2:0.33702921 3:0.28207571 4:0.53734874 5:0.86091868 6:0.94191896 7:0.97933221
|
||||
4 1:0.92503175 2:0.48222337 3:0.28207571 4:0.64403646 5:0.96342638 6:0.98853736 7:0.99714538
|
||||
-4 1:0.99967515 2:0.65541159 3:0.28207571 4:0.9822076 5:0.99908738 6:0.99957506 7:0.99978085
|
||||
-4 1:0.49746334 2:0.21352709 3:0.14532926 4:0.10350364 5:0.51846908 6:0.65289765 7:0.74106992
|
||||
4 1:0.65336014 2:0.252973 3:0.14532926 4:0.12674804 5:0.61146614 6:0.73713105 7:0.80489761
|
||||
4 1:0.67279707 2:0.26549895 3:0.14532926 4:0.135115 5:0.65228036 6:0.77672741 7:0.84049771
|
||||
-4 1:0.76331475 2:0.29488433 3:0.14532926 4:0.15236343 5:0.71258664 6:0.82279352 7:0.87473392
|
||||
4 1:0.7887033 2:0.31662006 3:0.14532926 4:0.16802837 5:0.76329081 6:0.86171606 7:0.90543866
|
||||
4 1:0.86258788 2:0.34313191 3:0.14532926 4:0.18926886 5:0.79880795 6:0.88711547 7:0.92422598
|
||||
4 1:0.90985192 2:0.36397454 3:0.14532926 4:0.20060343 5:0.83883768 6:0.91654156 7:0.94568362
|
||||
-4 1:0.91428295 2:0.37775991 3:0.14532926 4:0.21345907 5:0.85832183 6:0.92822182 7:0.95341603
|
||||
4 1:0.45211401 2:0.26668685 3:0.1376926 4:0.093365676 5:0.53436504 6:0.66768152 7:0.76806598
|
||||
-4 1:0.64314032 2:0.3225835 3:0.1376926 4:0.126883 5:0.6599956 6:0.78003752 7:0.84511695
|
||||
-4 1:0.65202563 2:0.33063261 3:0.1376926 4:0.13248219 5:0.68649599 6:0.8055084 7:0.86798412
|
||||
4 1:0.76369295 2:0.37348216 3:0.1376926 4:0.15600564 5:0.75980504 6:0.85619292 7:0.90022749
|
||||
4 1:0.78542957 2:0.39218793 3:0.1376926 4:0.16955145 5:0.79662339 6:0.8819087 7:0.91943759
|
||||
4 1:0.88316489 2:0.44053123 3:0.1376926 4:0.20161484 5:0.83942032 6:0.90903523 7:0.93822433
|
||||
4 1:0.94522113 2:0.46728821 3:0.1376926 4:0.21541255 5:0.8659426 6:0.92959161 7:0.95343241
|
||||
4 1:0.94944893 2:0.47586514 3:0.1376926 4:0.22398871 5:0.87664634 6:0.93653087 7:0.95848873
|
||||
-4 1:0.58827841 2:0.37677077 3:0.19908625 4:0.12270748 5:0.71032975 6:0.79612606 7:0.84328574
|
||||
4 1:0.72787772 2:0.41065868 3:0.19908625 4:0.13608056 5:0.7652198 6:0.84839563 7:0.88712536
|
||||
4 1:0.73686914 2:0.41933192 3:0.19908625 4:0.13980216 5:0.78480629 6:0.86663349 7:0.90357662
|
||||
4 1:0.81448411 2:0.43826809 3:0.19908625 4:0.14751601 5:0.81360437 6:0.89032105 7:0.92210299
|
||||
4 1:0.83242962 2:0.45300881 3:0.19908625 4:0.15555028 5:0.84004447 6:0.91050996 7:0.938502
|
||||
4 1:0.90008906 2:0.468107 3:0.19908625 4:0.16537108 5:0.85778742 6:0.92412308 7:0.94895956
|
||||
-4 1:0.94173707 2:0.48157676 3:0.19908625 4:0.17317649 5:0.876681 6:0.93779975 7:0.95956764
|
||||
-4 1:0.94484618 2:0.49123252 3:0.19908625 4:0.18169384 5:0.88732249 6:0.94420428 7:0.96402826
|
||||
-4 1:0.6096341 2:0.47821058 3:0.034816509 4:0.035489331 5:0.74861966 6:0.86052646 7:0.91068353
|
||||
-4 1:0.74780125 2:0.50542548 3:0.034816509 4:0.050858579 5:0.81154469 6:0.90118239 7:0.93475
|
||||
-4 1:0.74896775 2:0.50792525 3:0.034816509 4:0.052429805 5:0.81834651 6:0.90596883 7:0.93809709
|
||||
-4 1:0.8273781 2:0.5229294 3:0.034816509 4:0.062994705 5:0.85005667 6:0.9234785 7:0.94925364
|
||||
-4 1:0.83715021 2:0.5309274 3:0.034816509 4:0.069556576 5:0.86243412 6:0.93033441 7:0.95414001
|
||||
4 1:0.90860432 2:0.54080799 3:0.034816509 4:0.083188088 5:0.87675453 6:0.93922686 7:0.9605319
|
||||
2.036702539916611 1:0.95170157 2:0.55084129 3:0.034816509 4:0.090498466 5:0.89162223 6:0.94953702 7:0.9678787
|
||||
-4 1:0.95380965 2:0.55792831 3:0.034816509 4:0.098497068 5:0.89744051 6:0.95262718 7:0.9699955
|
||||
-4 1:0.4273521 2:0.12282286 3:0.061964183 4:0.11570271 5:0.46042814 6:0.65892566 7:0.79870806
|
||||
-4 1:0.63123747 2:0.17917576 3:0.061964183 4:0.16837045 5:0.62404327 6:0.79121051 7:0.87365722
|
||||
4 1:0.63492766 2:0.18405772 3:0.061964183 4:0.17600869 5:0.64716959 6:0.80961905 7:0.88717112
|
||||
4 1:0.75618877 2:0.23639488 3:0.061964183 4:0.22395077 5:0.75529507 6:0.87114015 7:0.91934331
|
||||
-4 1:0.77139737 2:0.25419279 3:0.061964183 4:0.24694774 5:0.79349593 6:0.8916167 7:0.93200478
|
||||
-4 1:0.88916287 2:0.34802784 3:0.061964183 4:0.34620191 5:0.87035629 6:0.92985021 7:0.95589668
|
||||
4 1:0.96388489 2:0.42881288 3:0.061964183 4:0.42911181 5:0.91366718 6:0.9568521 7:0.97313108
|
||||
4 1:0.47977509 2:0.18200267 3:0.23130691 4:0.32928412 5:0.55282916 6:0.66791845 7:0.74863576
|
||||
-4 1:0.67040866 2:0.24861296 3:0.23130691 4:0.38943269 5:0.66545556 6:0.76680794 7:0.81985996
|
||||
-4 1:0.68687131 2:0.26524478 3:0.23130691 4:0.41023912 5:0.70740496 6:0.81078152 7:0.86221763
|
||||
-4 1:0.78674389 2:0.32209063 3:0.23130691 4:0.46460529 5:0.78994847 6:0.86913143 7:0.90516139
|
||||
4 1:0.81048086 2:0.35113715 3:0.23130691 4:0.50312748 5:0.84547503 6:0.91358495 7:0.94168743
|
||||
4 1:0.9100825 2:0.4570275 3:0.23130691 4:0.61552031 5:0.9147698 6:0.95147469 7:0.96681058
|
||||
-4 1:0.98034608 2:0.57256903 3:0.23130691 4:0.72900944 5:0.95802477 6:0.97650266 7:0.98413271
|
||||
-4 1:0.98374901 2:0.5885804 3:0.23130691 4:0.74947079 5:0.96647178 6:0.98163931 7:0.98773965
|
||||
4 1:0.21483779 2:0.092648467 3:0.37995933 4:0.091662564 5:0.1529332 6:0.19165383 7:0.23332771
|
||||
-4 1:0.41372639 2:0.12481478 3:0.37995933 4:0.11972516 5:0.22858077 6:0.28261732 7:0.32614433
|
||||
-4 1:0.4734512 2:0.150659 3:0.37995933 4:0.13945528 5:0.28799635 6:0.36498566 7:0.42609007
|
||||
-4 1:0.5944247 2:0.18559397 3:0.37995933 4:0.17211443 5:0.36367814 6:0.44650577 7:0.50673632
|
||||
4 1:0.67573909 2:0.23614196 3:0.37995933 4:0.2184327 5:0.48605098 6:0.59000253 7:0.65971535
|
||||
4 1:0.78992142 2:0.30063732 3:0.37995933 4:0.29529412 5:0.58552372 6:0.67661896 7:0.73531212
|
||||
4 1:0.8868928 2:0.39057937 3:0.37995933 4:0.39750191 5:0.71176991 6:0.79245591 7:0.83806775
|
||||
4 1:0.91206245 2:0.43330721 3:0.37995933 4:0.44654064 5:0.77534857 6:0.84760758 7:0.88531211
|
||||
4 1:0.44277696 2:0.23360631 3:0.32712248 4:0.2599763 5:0.46254963 6:0.57667501 7:0.67118098
|
||||
-4 1:0.63417698 2:0.28995647 3:0.32712248 4:0.30918307 5:0.58384104 6:0.69563644 7:0.76460802
|
||||
-4 1:0.66078882 2:0.30993956 3:0.32712248 4:0.33283517 5:0.63861466 6:0.75549127 7:0.82270899
|
||||
-4 1:0.79693 2:0.40152865 3:0.32712248 4:0.43676431 5:0.81369323 6:0.89238679 7:0.92785696
|
||||
-4 1:0.9005211 2:0.50628807 3:0.32712248 4:0.55899913 5:0.8961204 6:0.93879525 7:0.95832406
|
||||
-4 1:0.97423624 2:0.63094307 3:0.32712248 4:0.7180499 5:0.94958431 6:0.97132544 7:0.98045708
|
||||
4 1:0.98100171 2:0.65383234 3:0.32712248 4:0.75300334 5:0.96341473 6:0.97959333 7:0.98621572
|
||||
-4 1:0.28606808 2:0.10921428 3:0.62386588 4:0.14210375 5:0.22758903 6:0.26524999 7:0.30116409
|
||||
-4 1:0.48768772 2:0.15625977 3:0.62386588 4:0.17836177 5:0.32035955 6:0.37398704 7:0.41311999
|
||||
-4 1:0.56051297 2:0.19290178 3:0.62386588 4:0.20581608 5:0.39367661 6:0.47331478 7:0.53190807
|
||||
-4 1:0.67678192 2:0.24116742 3:0.62386588 4:0.24903487 5:0.48565737 6:0.56757718 7:0.62285651
|
||||
-4 1:0.75508061 2:0.2989841 3:0.62386588 4:0.30546933 5:0.61573888 6:0.71406758 7:0.77311164
|
||||
-4 1:0.86028135 2:0.38591976 3:0.62386588 4:0.40453195 5:0.72562907 6:0.80089496 7:0.84439653
|
||||
-4 1:0.94927745 2:0.50711103 3:0.62386588 4:0.56011867 5:0.84417863 6:0.89711351 7:0.92293975
|
||||
-4 1:0.96520962 2:0.54981706 3:0.62386588 4:0.61798068 5:0.89199652 6:0.93295221 7:0.95147468
|
||||
4 1:0.29412838 2:0.11805063 3:0.1012817 4:0.16200315 5:0.37578485 6:0.59320682 7:0.80117536
|
||||
4 1:0.54962761 2:0.18673101 3:0.1012817 4:0.24393505 5:0.58209165 6:0.78851378 7:0.9067632
|
||||
4 1:0.55150951 2:0.18739048 3:0.1012817 4:0.24550611 5:0.58687978 6:0.79404623 7:0.91217056
|
||||
-4 1:0.70981097 2:0.2571562 3:0.1012817 4:0.33222561 5:0.74494592 6:0.89826659 7:0.95769783
|
||||
4 1:0.73071683 2:0.27830189 3:0.1012817 4:0.358983 5:0.7781418 6:0.91310488 7:0.9623323
|
||||
4 1:0.89553429 2:0.43091367 3:0.1012817 4:0.62745623 5:0.94236465 6:0.97874341 7:0.99066928
|
||||
-4 1:0.53689458 2:0.19707014 3:0.46629001 4:0.19931729 5:0.32410675 6:0.40982343 7:0.4893396
|
||||
-4 1:0.57624881 2:0.22368173 3:0.46629001 4:0.22920422 5:0.38661782 6:0.49026329 7:0.58000245
|
||||
-4 1:0.70047586 2:0.27614135 3:0.46629001 4:0.2840121 5:0.48455933 6:0.5905349 7:0.67129089
|
||||
4 1:0.75363108 2:0.33197521 3:0.46629001 4:0.3568512 5:0.60773492 6:0.71710254 7:0.79012087
|
||||
4 1:0.86083917 2:0.41073733 3:0.46629001 4:0.44349999 5:0.71472389 6:0.80584481 7:0.86160339
|
||||
4 1:0.93146088 2:0.48828001 3:0.46629001 4:0.51726316 5:0.80639703 6:0.88120321 7:0.92098303
|
||||
4 1:0.94243661 2:0.51454258 3:0.46629001 4:0.54756072 5:0.83902916 6:0.90540179 7:0.93886524
|
||||
-4 1:0.42185741 2:0.37454782 3:0.19607431 4:0.2743975 5:0.45697839 6:0.57535387 7:0.67024059
|
||||
-4 1:0.61177155 2:0.4365045 3:0.19607431 4:0.35322033 5:0.59523918 6:0.70441733 7:0.77272128
|
||||
-4 1:0.63918923 2:0.45793051 3:0.19607431 4:0.38192882 5:0.64785809 6:0.75882689 7:0.82455819
|
||||
-4 1:0.75010655 2:0.51474633 3:0.19607431 4:0.45087158 5:0.74328429 6:0.83021118 7:0.87644924
|
||||
-4 1:0.79147684 2:0.5589851 3:0.19607431 4:0.51214887 5:0.82369669 6:0.89445079 7:0.92801374
|
||||
4 1:0.89087419 2:0.64870523 3:0.19607431 4:0.62077958 5:0.89431127 6:0.93664518 7:0.95655314
|
||||
4 1:0.95847774 2:0.73485939 3:0.19607431 4:0.69261716 5:0.94236474 6:0.96752693 7:0.97818578
|
||||
-4 1:0.96554068 2:0.7529231 3:0.19607431 4:0.71637114 5:0.95403524 6:0.97458526 7:0.9830982
|
||||
-4 1:0.51519264 2:0.37707906 3:0.066725896 4:0.34372007 5:0.55995462 6:0.67051183 7:0.76546138
|
||||
-4 1:0.68574767 2:0.45171655 3:0.066725896 4:0.43594707 5:0.7078017 6:0.80221174 7:0.86027932
|
||||
-4 1:0.69993679 2:0.46768614 3:0.066725896 4:0.46023293 5:0.74720499 6:0.83721019 7:0.88949178
|
||||
-4 1:0.79819529 2:0.52913678 3:0.066725896 4:0.52356809 5:0.83017623 6:0.89471771 7:0.9266419
|
||||
-4 1:0.823065 2:0.56346863 3:0.066725896 4:0.56979595 5:0.87552964 6:0.92548908 7:0.94935861
|
||||
4 1:0.9150904 2:0.65354467 3:0.066725896 4:0.66189045 5:0.92904989 6:0.95799532 7:0.97146069
|
||||
4 1:0.9679991 2:0.71471484 3:0.066725896 4:0.70092087 5:0.95434885 6:0.97440829 7:0.98279652
|
||||
4 1:0.97123164 2:0.72682591 3:0.066725896 4:0.7151308 5:0.960102 6:0.97787508 7:0.98518173
|
||||
4 1:0.51835903 2:0.23379852 3:0.31813065 4:0.40082289 5:0.55345405 6:0.60797992 7:0.64355438
|
||||
-4 1:0.67524675 2:0.27837021 3:0.31813065 4:0.43396977 5:0.61807337 6:0.68289571 7:0.72351841
|
||||
4 1:0.70027899 2:0.3096224 3:0.31813065 4:0.46160919 5:0.67100337 6:0.74355703 7:0.78820216
|
||||
-4 1:0.78642738 2:0.34709787 3:0.31813065 4:0.49001346 5:0.72032998 6:0.79167775 7:0.83306235
|
||||
4 1:0.82574317 2:0.4051903 3:0.31813065 4:0.54962708 5:0.81174952 6:0.87501259 7:0.9070568
|
||||
4 1:0.9038342 2:0.46193279 3:0.31813065 4:0.60120088 5:0.8672518 6:0.91737821 7:0.94093945
|
||||
-4 1:0.9616841 2:0.52505896 3:0.31813065 4:0.65078047 5:0.92284738 6:0.95658586 7:0.97061867
|
||||
-4 1:0.97005642 2:0.55388193 3:0.31813065 4:0.67874954 5:0.94213598 6:0.96846928 7:0.97897375
|
||||
4 1:0.56379827 2:0.28840495 3:0.24484638 4:0.62725489 5:0.73401377 6:0.77061361 7:0.79233977
|
||||
4 1:0.69707073 2:0.34199561 3:0.24484638 4:0.66864069 5:0.79391324 6:0.8324878 7:0.85355213
|
||||
4 1:0.72448597 2:0.37411679 3:0.24484638 4:0.69473535 5:0.83115605 6:0.87085556 7:0.89202625
|
||||
2.963904029943124 1:0.80573572 2:0.42165442 3:0.24484638 4:0.72761205 5:0.87368756 6:0.90816269 7:0.92491864
|
||||
4 1:0.84202128 2:0.47549925 3:0.24484638 4:0.77195881 5:0.9200765 6:0.94626283 7:0.95775509
|
||||
4 1:0.91272868 2:0.53507396 3:0.24484638 4:0.81030574 5:0.9498361 6:0.96767523 7:0.97518431
|
||||
4 1:0.96863532 2:0.59867279 3:0.24484638 4:0.83826012 5:0.97494708 6:0.98538861 7:0.98958291
|
||||
4 1:0.97633249 2:0.62463226 3:0.24484638 4:0.85344648 5:0.98180902 6:0.9896203 7:0.99264501
|
||||
-4 1:0.62001105 2:0.47771275 3:0.024412915 4:0.48303676 5:0.77346009 6:0.86903616 7:0.91933256
|
||||
-4 1:0.75315336 2:0.53593465 3:0.024412915 4:0.54495254 5:0.8556029 6:0.92219373 7:0.95115286
|
||||
-4 1:0.75724951 2:0.54357264 3:0.024412915 4:0.55262807 5:0.86428342 6:0.9282135 7:0.95577208
|
||||
-4 1:0.83810789 2:0.59171889 3:0.024412915 4:0.59827116 5:0.91134508 6:0.95279962 7:0.96996019
|
||||
-4 1:0.85232946 2:0.61414994 3:0.024412915 4:0.62293909 5:0.92558872 6:0.96038708 7:0.97539389
|
||||
4 1:0.92792663 2:0.67669648 3:0.024412915 4:0.69545065 5:0.95936739 6:0.97831336 7:0.98620559
|
||||
-4 1:0.48158977 2:0.22724946 3:0.61324729 4:0.27540875 5:0.42553765 6:0.48641897 7:0.53104738
|
||||
-4 1:0.63753866 2:0.28242948 3:0.61324729 4:0.33157417 5:0.5219651 6:0.58927718 7:0.63177685
|
||||
-4 1:0.67707961 2:0.31532094 3:0.61324729 4:0.36721782 5:0.59027691 6:0.66847711 7:0.71742217
|
||||
-4 1:0.76829625 2:0.36736763 3:0.61324729 4:0.41958997 5:0.67025967 6:0.74327658 7:0.78585557
|
||||
4 1:0.81258618 2:0.42383137 3:0.61324729 4:0.48476198 5:0.77032441 6:0.83826134 7:0.87434329
|
||||
4 1:0.95569452 2:0.56662668 3:0.61324729 4:0.59744731 5:0.90011796 6:0.93900499 7:0.95615901
|
||||
4 1:0.96488572 2:0.59698594 3:0.61324729 4:0.62477426 5:0.92367983 6:0.95528787 7:0.9685549
|
||||
-4 1:0.6558802 2:0.36753212 4:0.50914684 5:0.83375963 6:0.89809846 7:0.92653187
|
||||
-4 1:0.76884943 2:0.40988734 4:0.55679293 5:0.89391591 6:0.93860454 7:0.95403218
|
||||
-4 1:0.77375631 2:0.41802337 4:0.5636812 5:0.90019662 6:0.9427445 7:0.9574506
|
||||
-4 1:0.84303042 2:0.4530568 4:0.60236618 5:0.93446437 6:0.96242475 7:0.97109062
|
||||
-4 1:0.85951211 2:0.47295605 4:0.6228269 5:0.94532487 6:0.96833445 7:0.97557224
|
||||
-4 1:0.9261042 2:0.52043749 4:0.68729659 5:0.96971448 6:0.98303447 7:0.98744411
|
||||
-4 1:0.96470143 2:0.55053174 4:0.7147545 5:0.98321849 6:0.9919861 7:0.99443831
|
||||
-4 1:0.967065 2:0.56265542 4:0.7243143 5:0.98476297 6:0.99277815 7:0.99502417
|
||||
4 1:0.099255226 2:0.10224369 3:1 4:0.10881751 5:0.12198057 6:0.1091675 7:0.088043328
|
||||
-3.128033778385676 1:0.29688918 2:0.13673148 3:1 4:0.13820799 5:0.18737935 6:0.19948561 7:0.20329466
|
||||
-4 1:0.38839319 2:0.17052558 3:1 4:0.16899654 5:0.25561373 6:0.29559208 7:0.3291397
|
||||
-4 1:0.51537476 2:0.20639051 3:1 4:0.20282799 5:0.32849203 6:0.38566584 7:0.43301855
|
||||
-4 1:0.63770606 2:0.27310353 3:1 4:0.27539534 5:0.47471422 6:0.56203958 7:0.6289053
|
||||
-4 1:0.75616331 2:0.33811623 3:1 4:0.34700476 5:0.58843901 6:0.67881337 7:0.74344488
|
||||
4 1:0.86716608 2:0.42515427 3:1 4:0.42670862 5:0.73642101 6:0.82051035 7:0.87077786
|
||||
4 1:0.90117017 2:0.4707805 3:1 4:0.47750457 5:0.80506581 6:0.87690238 7:0.91543318
|
||||
-4 1:1 2:0.60957429 3:0.57015555 4:0.99999999 5:0.99999986 6:0.99999974 7:0.9999997
|
||||
-4 1:1 2:0.78323367 3:0.73861347 4:0.99999983 5:0.99999957 6:0.99999885 7:0.99999917
|
||||
-3.523826653161877 1:1 2:0.83216729 3:0.50243453 4:0.99999917 5:0.99999858 6:0.99999805 7:0.99999788
|
||||
-4 1:1 2:0.84061366 3:0.54605511 4:0.99999958 5:0.99999872 6:0.99999818 7:0.99999796
|
||||
-4 1:1 2:0.54793197 3:0.77164289 4:1 5:0.99999991 6:0.99999965 7:0.99999961
|
||||
-4 1:1 2:1 3:0.46336375 4:0.99999945 5:0.99999719 6:0.99999675 7:0.99999724
|
||||
-4 1:0.37561256 2:0.20017167 3:0.27174489 4:0.14564537 5:0.39790222 6:0.55106678 7:0.67008782
|
||||
-4 1:0.56862883 2:0.2511454 3:0.27174489 4:0.19411401 5:0.53707663 6:0.68373405 7:0.77053495
|
||||
-4 1:0.59507913 2:0.26591235 3:0.27174489 4:0.21726037 5:0.59928839 6:0.74861604 7:0.82928713
|
||||
-4 1:0.73092966 2:0.32432484 3:0.27174489 4:0.27356025 5:0.71390094 6:0.82257087 7:0.87444689
|
||||
4 1:0.75725767 2:0.34866202 3:0.27174489 4:0.31634112 5:0.79654122 6:0.88915412 7:0.9273156
|
||||
4 1:0.88324277 2:0.45568174 3:0.27174489 4:0.4403716 5:0.8922293 6:0.93831942 7:0.95845059
|
||||
4 1:0.8933052 2:0.47211671 3:0.27174489 4:0.47228748 5:0.92107255 6:0.95675014 7:0.97151317
|
||||
4 1:0.9508125 2:0.54170694 3:0.27174489 4:0.58168899 5:0.90979133 6:0.94735255 7:0.96398348
|
||||
4 1:0.95713874 2:0.55602795 3:0.27174489 4:0.61027713 5:0.92360129 6:0.95604732 7:0.97013831
|
||||
4 1:0.96971772 2:0.58505878 3:0.27174489 4:0.67509147 5:0.9486493 6:0.97123348 7:0.98048503
|
||||
-4 1:0.52994813 2:0.56424104 3:0.019238957 4:0.38547432 5:0.75372022 6:0.84123041 7:0.89486139
|
||||
-4 1:0.53720078 2:0.57181443 3:0.019238957 4:0.3990632 5:0.77884256 6:0.86263175 7:0.9119893
|
||||
-4 1:0.69594659 2:0.62423542 3:0.019238957 4:0.42249933 5:0.83012148 6:0.89999703 7:0.9343333
|
||||
-4 1:0.70045567 2:0.6324076 3:0.019238957 4:0.43485895 5:0.84990814 6:0.91438168 7:0.94468986
|
||||
-4 1:0.81165128 2:0.68132931 3:0.019238957 4:0.45209767 5:0.87998379 6:0.93121657 7:0.95417334
|
||||
4 1:0.90641987 2:0.73591865 3:0.019238957 4:0.47995579 5:0.90591955 6:0.94655395 7:0.96494883
|
||||
4 1:0.96394448 2:0.76908851 3:0.019238957 4:0.49703719 5:0.92208917 6:0.95739033 7:0.97352851
|
||||
4 1:0.97111644 2:0.7906865 3:0.019238957 4:0.51850714 5:0.94179388 6:0.97018449 7:0.98213448
|
||||
4 2:0.029721262 3:0.57015555 7:0.010154919
|
||||
-4 1:0.60579512 2:0.18704248 3:0.57015555 4:0.12893302 5:0.40260054 6:0.52794625 7:0.61631229
|
||||
-4 1:0.75391926 2:0.25428655 3:0.57015555 4:0.18461005 5:0.49989687 6:0.61178122 7:0.68884477
|
||||
-4 1:0.8153429 2:0.30563046 3:0.57015555 4:0.23793372 5:0.60651572 6:0.71554025 7:0.78255239
|
||||
-4 1:0.85600941 2:0.34853999 3:0.57015555 4:0.28629085 5:0.68788242 6:0.78757701 7:0.84353583
|
||||
-4 1:0.89148132 2:0.39394543 3:0.57015555 4:0.34171535 5:0.76509994 6:0.85013067 7:0.8935626
|
||||
-4 1:0.92852788 2:0.45158749 3:0.57015555 4:0.42100368 5:0.84916897 6:0.91127553 7:0.93940013
|
||||
4 1:0.1753977 2:0.15491045 3:0.73861347 4:0.09552304 5:0.13054246 6:0.15035856 7:0.1699603
|
||||
-4 1:0.45635833 2:0.22731935 3:0.73861347 4:0.158209 5:0.28040177 6:0.35751004 7:0.42348738
|
||||
4 1:0.69430386 2:0.33745528 3:0.73861347 4:0.27712969 5:0.53553712 6:0.64647804 7:0.71969773
|
||||
4 1:0.76724888 2:0.36671253 3:0.73861347 4:0.31108262 5:0.57582518 6:0.67863928 7:0.74667418
|
||||
4 1:0.86571411 2:0.44598536 3:0.73861347 4:0.3944368 5:0.71882415 6:0.81004305 7:0.8623959
|
||||
4 1:0.90357706 2:0.49917048 3:0.73861347 4:0.46136994 5:0.80064289 6:0.87542246 7:0.91386276
|
||||
4 1:0.92840891 2:0.54448511 3:0.73861347 4:0.51989475 5:0.8578363 6:0.9163383 7:0.94388077
|
||||
4 1:0.057186579 2:0.23907071 3:0.50243453 4:0.074302209 5:0.064066487 6:0.038191765
|
||||
4 1:0.46335071 2:0.33322794 3:0.50243453 4:0.15651072 5:0.26099077 6:0.31080835 7:0.35093188
|
||||
4 1:0.57170622 2:0.37139949 3:0.50243453 4:0.19565839 5:0.34034574 6:0.40815216 7:0.46499326
|
||||
4 1:0.61771078 2:0.38742794 3:0.50243453 4:0.2013411 5:0.37388838 6:0.44991385 7:0.51391699
|
||||
4 1:0.64058636 2:0.40700327 3:0.50243453 4:0.23392852 5:0.42110826 6:0.50581137 7:0.57392097
|
||||
4 1:0.68648276 2:0.42453917 3:0.50243453 4:0.23959609 5:0.45613658 6:0.54666909 7:0.61876644
|
||||
4 1:0.79301714 2:0.50015434 3:0.50243453 4:0.32622773 5:0.62144616 6:0.7212244 7:0.78795799
|
||||
4 1:0.86049974 2:0.56409596 3:0.50243453 4:0.40728198 5:0.74550855 6:0.83106809 7:0.87888976
|
||||
4 1:0.89790028 2:0.6105181 3:0.50243453 4:0.47222451 5:0.82140625 6:0.88905388 7:0.92286615
|
||||
4 1:0.29904095 2:0.32670389 3:0.54605511 4:0.21472932 5:0.38914781 6:0.49769154 7:0.59083219
|
||||
4 1:0.56768263 2:0.41097052 3:0.54605511 4:0.30308084 5:0.59347344 6:0.71982347 7:0.79614483
|
||||
4 1:0.69533755 2:0.44677163 3:0.54605511 4:0.31948376 5:0.61068179 6:0.71809681 7:0.78192463
|
||||
4 1:0.75945348 2:0.52053937 3:0.54605511 4:0.43714837 5:0.81360207 6:0.89436962 7:0.92985049
|
||||
-4 1:0.93943076 2:0.64245784 3:0.54605511 4:0.53480784 5:0.86577728 6:0.92039762 7:0.94567054
|
||||
4 1:0.98364834 2:0.77515886 3:0.54605511 4:0.75735767 5:0.97288667 6:0.98579289 7:0.99060009
|
||||
4 1:0.32002749 2:0.24744957 3:0.21597041 4:0.045063964 5:0.37692216 6:0.55140675 7:0.69796544
|
||||
-4 1:0.56695344 2:0.31230263 3:0.21597041 4:0.097210209 5:0.58397601 6:0.7508394 7:0.83948605
|
||||
-4 1:0.70520428 2:0.36112001 3:0.21597041 4:0.13385033 5:0.67160615 6:0.79655301 7:0.85818695
|
||||
4 1:0.73424456 2:0.38872215 3:0.21597041 4:0.16265978 5:0.77271887 6:0.87781115 7:0.92030835
|
||||
4 1:0.86954132 2:0.48182811 3:0.21597041 4:0.25291857 5:0.86032679 6:0.92065002 7:0.94719087
|
||||
4 1:0.87335209 2:0.48882625 3:0.21597041 4:0.26150142 5:0.87394579 6:0.92955244 7:0.95361972
|
||||
4 1:0.95158679 2:0.55599973 3:0.21597041 4:0.31469782 5:0.90564041 6:0.9505662 7:0.96731494
|
||||
4 1:0.046480997 3:0.77164289 4:0.0036752949 5:0.063426258 6:0.083975821 7:0.10357933
|
||||
4 1:0.4815399 2:0.084491417 3:0.77164289 4:0.061680284 5:0.28308554 6:0.37269791 7:0.4415304
|
||||
-4 1:0.59466693 2:0.13408384 3:0.77164289 4:0.10183633 5:0.43686442 6:0.55619455 7:0.63614229
|
||||
4 1:0.67663499 2:0.16297436 3:0.77164289 4:0.12768853 5:0.46551139 6:0.57412631 7:0.64893256
|
||||
4 1:0.727837 2:0.19544136 3:0.77164289 4:0.15698565 5:0.54933575 6:0.66054291 7:0.73141004
|
||||
4 1:0.79298458 2:0.22653651 3:0.77164289 4:0.1783044 5:0.58984439 6:0.69884629 7:0.76566769
|
||||
4 1:0.84189758 2:0.27026774 3:0.77164289 4:0.2201085 5:0.67980569 6:0.78117365 7:0.8374729
|
||||
-4 1:0.93223983 2:0.38632703 3:0.77164289 4:0.34905641 5:0.87203088 6:0.92820957 7:0.95189869
|
||||
-4 1:0.94593957 2:0.41008163 3:0.77164289 4:0.38300199 5:0.90150605 6:0.9468388 7:0.96487186
|
||||
-4 1:0.51879331 2:0.4846003 3:0.46336375 4:0.30175677 5:0.53715556 6:0.6201217 7:0.69126522
|
||||
-4 1:0.69563267 2:0.56626182 3:0.46336375 4:0.38974197 5:0.68280797 6:0.7624929 7:0.81933882
|
||||
-4 1:0.78342288 2:0.60596099 3:0.46336375 4:0.43017021 5:0.73828939 6:0.81072072 7:0.85931014
|
||||
-4 1:0.82362468 2:0.66094735 3:0.46336375 4:0.49268118 5:0.82332639 6:0.88132959 7:0.91765632
|
||||
4 1:0.89144668 2:0.71273046 3:0.46336375 4:0.53894393 5:0.87349384 6:0.92016796 7:0.94654988
|
||||
4 1:0.93642466 2:0.73684772 3:0.46336375 4:0.54466735 5:0.89946619 6:0.94109895 7:0.96142482
|
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3.pkl
vendored
Normal file
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3.pkl
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif_scale0'
|
||||
p16
|
||||
aS'vif_scale1'
|
||||
p17
|
||||
aS'vif_scale2'
|
||||
p18
|
||||
aS'vif_scale3'
|
||||
p19
|
||||
aS'adm2'
|
||||
p20
|
||||
aS'motion'
|
||||
p21
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p22
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p23
|
||||
(lp24
|
||||
S'VMAF_feature_adm2_score'
|
||||
p25
|
||||
aS'VMAF_feature_motion_score'
|
||||
p26
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p30
|
||||
asS'intercepts'
|
||||
p31
|
||||
(lp32
|
||||
F-0.14912280701754385
|
||||
aF-1.9715194224195431
|
||||
aF-0.017141728475754268
|
||||
aF-0.08217305517359848
|
||||
aF-0.2767600362748038
|
||||
aF-0.469070289400241
|
||||
aF-0.7460857020871375
|
||||
asS'model_type'
|
||||
p33
|
||||
S'LIBSVMNUSVR'
|
||||
p34
|
||||
sS'model'
|
||||
p35
|
||||
NsS'slopes'
|
||||
p36
|
||||
(lp37
|
||||
F0.010526315789473684
|
||||
aF2.971519422419543
|
||||
aF0.05282785410063858
|
||||
aF1.0821730334476833
|
||||
aF1.2767601181740016
|
||||
aF1.4690704623045836
|
||||
aF1.746086042520506
|
||||
ass.
|
281
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3.pkl.model
vendored
Normal file
281
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3.pkl.model
vendored
Normal file
@ -0,0 +1,281 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 274
|
||||
rho -1.45631
|
||||
SV
|
||||
-4 1:1 2:0.62009279 3:0.99999956 4:0.99999617 5:0.99999659 6:0.99999649
|
||||
-4 1:1 2:0.65360354 3:0.99999982 4:0.99999769 5:0.99999611 6:0.99999789
|
||||
3.590820754027711 1:1 2:0.034816509 3:0.99999998 4:0.99999562 5:0.99999437 6:0.9999976
|
||||
-4 1:1 2:0.62386588 3:0.99999991 4:0.99999987 5:0.9999999 6:0.99999983
|
||||
4 1:1 2:0.024412915 3:0.9999985 4:0.99999662 5:0.99999485 6:0.99999574
|
||||
-4 1:1 2:0.61324729 3:0.99999945 4:0.99999953 5:0.99999881 6:0.99999873
|
||||
4 1:1 3:0.9999953 4:0.99999163 5:0.99999444 6:0.9999906
|
||||
-2.897759923300417 1:1 2:1 3:0.99999989 4:0.99999962 5:0.9999994 6:0.99999896
|
||||
-4 1:0.55120029 2:0.62009279 3:0.26121942 4:0.6293366 5:0.71975367 6:0.78093108
|
||||
-4 1:0.69994822 2:0.62009279 3:0.30135725 4:0.70722144 5:0.79216822 6:0.83978283
|
||||
-4 1:0.72011021 2:0.62009279 3:0.32121318 4:0.74989787 5:0.83473257 6:0.87962097
|
||||
4 1:0.80161657 2:0.62009279 3:0.3501572 4:0.79684481 5:0.87136279 6:0.90727549
|
||||
4 1:0.82707856 2:0.62009279 3:0.37930406 4:0.84227672 5:0.90805726 6:0.93746453
|
||||
4 1:0.89751445 2:0.62009279 3:0.41517592 4:0.87673937 5:0.93162471 6:0.95441416
|
||||
-4 1:0.94175354 2:0.62009279 3:0.44577851 4:0.91006376 5:0.95340334 6:0.97037481
|
||||
4 1:0.94886911 2:0.62009279 3:0.46794139 4:0.92362274 5:0.96145271 6:0.97586663
|
||||
-3.338281756707829 1:0.52231028 2:0.15702556 3:0.32589559 4:0.6581287 5:0.76030191 6:0.83726695
|
||||
-4 1:0.69532892 2:0.15702556 3:0.37963798 4:0.75963071 5:0.84793528 6:0.89590344
|
||||
-4 1:0.70311899 2:0.15702556 3:0.39122605 4:0.77997186 5:0.86615863 6:0.91195763
|
||||
-4 1:0.80199769 2:0.15702556 3:0.43275766 4:0.83967337 5:0.90601589 6:0.93575795
|
||||
-4 1:0.81958249 2:0.15702556 3:0.46108289 4:0.86793163 5:0.92463208 6:0.94935262
|
||||
4 1:0.90910291 2:0.15702556 3:0.53184539 4:0.91070978 5:0.95009054 6:0.96632324
|
||||
-4 1:0.96127511 2:0.15702556 3:0.56535202 4:0.93581909 5:0.96661274 6:0.97845579
|
||||
4 1:0.96463426 2:0.15702556 3:0.58122093 4:0.94306733 5:0.97086662 6:0.98141713
|
||||
1.622886971368134 1:0.53215537 2:0.65360354 3:0.10503639 4:0.51343702 5:0.6311132 6:0.68810633
|
||||
-4 1:0.66952701 2:0.65360354 3:0.1196006 4:0.56492275 5:0.69164814 6:0.7502318
|
||||
4 1:0.69456875 2:0.65360354 3:0.12925873 4:0.60404133 5:0.73699834 6:0.79724738
|
||||
4 1:0.7719972 2:0.65360354 3:0.13902331 4:0.63790465 5:0.77218831 6:0.83039508
|
||||
4 1:0.80320895 2:0.65360354 3:0.15424042 4:0.68718524 5:0.81881741 6:0.87335226
|
||||
4 1:0.86489599 2:0.65360354 3:0.16699556 4:0.71785387 5:0.84510702 6:0.8951996
|
||||
-4 1:0.9012366 2:0.65360354 3:0.19299232 4:0.77508983 5:0.88553267 6:0.92699809
|
||||
-4 1:0.90926985 2:0.65360354 3:0.21237815 4:0.80244544 5:0.90269819 6:0.93899838
|
||||
4 1:0.42520716 2:0.1007927 3:0.24051621 4:0.48911974 5:0.65173668 6:0.80252903
|
||||
-4 1:0.64142951 2:0.1007927 3:0.34197188 4:0.6868242 5:0.82459154 6:0.91058618
|
||||
-4 1:0.77466028 2:0.1007927 3:0.41863934 4:0.81361802 5:0.91024986 6:0.95545869
|
||||
-4 1:0.78864036 2:0.1007927 3:0.44617483 4:0.84086386 5:0.92445862 6:0.96165042
|
||||
4 1:0.91433421 2:0.1007927 3:0.60215347 4:0.9500684 5:0.97717524 6:0.98807012
|
||||
4 1:0.99737302 2:0.1007927 3:0.88514414 4:0.99166058 5:0.99597225 6:0.99759774
|
||||
4 1:0.40868363 2:0.046808211 3:0.20127881 4:0.43690014 5:0.62303099 6:0.80462761
|
||||
4 1:0.63428306 2:0.046808211 3:0.29367506 4:0.63478131 5:0.80404493 6:0.90860113
|
||||
4 1:0.63517172 2:0.046808211 3:0.29742126 4:0.63976608 5:0.8083318 6:0.9121364
|
||||
-4 1:0.76722122 2:0.046808211 3:0.38377254 4:0.78514877 5:0.90429663 6:0.95734326
|
||||
4 1:0.78174155 2:0.046808211 3:0.40876054 4:0.81261902 5:0.91751826 6:0.96173956
|
||||
4 1:0.91228727 2:0.046808211 3:0.61082239 4:0.94727552 5:0.9778847 6:0.98952764
|
||||
4 1:0.99904844 2:0.046808211 3:0.93477801 4:0.99671741 5:0.99843624 6:0.99906019
|
||||
4 1:0.49105754 2:0.28207571 3:0.44508755 4:0.61523775 5:0.74189323 6:0.87563111
|
||||
4 1:0.68136646 2:0.28207571 3:0.48593046 4:0.74223628 5:0.8614384 6:0.94331526
|
||||
4 1:0.68210291 2:0.28207571 3:0.48669052 4:0.74459379 5:0.86363839 6:0.94501266
|
||||
-4 1:0.81359956 2:0.28207571 3:0.53734874 4:0.86091868 5:0.94191896 6:0.97933221
|
||||
4 1:0.92503175 2:0.28207571 3:0.64403646 4:0.96342638 5:0.98853736 6:0.99714538
|
||||
-4 1:0.99967515 2:0.28207571 3:0.9822076 4:0.99908738 5:0.99957506 6:0.99978085
|
||||
-4 1:0.49746334 2:0.14532926 3:0.10350364 4:0.51846908 5:0.65289765 6:0.74106992
|
||||
4 1:0.65336014 2:0.14532926 3:0.12674804 4:0.61146614 5:0.73713105 6:0.80489761
|
||||
4 1:0.67279707 2:0.14532926 3:0.135115 4:0.65228036 5:0.77672741 6:0.84049771
|
||||
-4 1:0.76331475 2:0.14532926 3:0.15236343 4:0.71258664 5:0.82279352 6:0.87473392
|
||||
4 1:0.7887033 2:0.14532926 3:0.16802837 4:0.76329081 5:0.86171606 6:0.90543866
|
||||
4 1:0.86258788 2:0.14532926 3:0.18926886 4:0.79880795 5:0.88711547 6:0.92422598
|
||||
4 1:0.90985192 2:0.14532926 3:0.20060343 4:0.83883768 5:0.91654156 6:0.94568362
|
||||
-4 1:0.91428295 2:0.14532926 3:0.21345907 4:0.85832183 5:0.92822182 6:0.95341603
|
||||
4 1:0.45211401 2:0.1376926 3:0.093365676 4:0.53436504 5:0.66768152 6:0.76806598
|
||||
-4 1:0.64314032 2:0.1376926 3:0.126883 4:0.6599956 5:0.78003752 6:0.84511695
|
||||
-4 1:0.65202563 2:0.1376926 3:0.13248219 4:0.68649599 5:0.8055084 6:0.86798412
|
||||
4 1:0.76369295 2:0.1376926 3:0.15600564 4:0.75980504 5:0.85619292 6:0.90022749
|
||||
4 1:0.78542957 2:0.1376926 3:0.16955145 4:0.79662339 5:0.8819087 6:0.91943759
|
||||
4 1:0.88316489 2:0.1376926 3:0.20161484 4:0.83942032 5:0.90903523 6:0.93822433
|
||||
4 1:0.94522113 2:0.1376926 3:0.21541255 4:0.8659426 5:0.92959161 6:0.95343241
|
||||
4 1:0.94944893 2:0.1376926 3:0.22398871 4:0.87664634 5:0.93653087 6:0.95848873
|
||||
-4 1:0.58827841 2:0.19908625 3:0.12270748 4:0.71032975 5:0.79612606 6:0.84328574
|
||||
4 1:0.72787772 2:0.19908625 3:0.13608056 4:0.7652198 5:0.84839563 6:0.88712536
|
||||
4 1:0.73686914 2:0.19908625 3:0.13980216 4:0.78480629 5:0.86663349 6:0.90357662
|
||||
4 1:0.81448411 2:0.19908625 3:0.14751601 4:0.81360437 5:0.89032105 6:0.92210299
|
||||
4 1:0.83242962 2:0.19908625 3:0.15555028 4:0.84004447 5:0.91050996 6:0.938502
|
||||
4 1:0.90008906 2:0.19908625 3:0.16537108 4:0.85778742 5:0.92412308 6:0.94895956
|
||||
-4 1:0.94173707 2:0.19908625 3:0.17317649 4:0.876681 5:0.93779975 6:0.95956764
|
||||
-4 1:0.94484618 2:0.19908625 3:0.18169384 4:0.88732249 5:0.94420428 6:0.96402826
|
||||
-4 1:0.6096341 2:0.034816509 3:0.035489331 4:0.74861966 5:0.86052646 6:0.91068353
|
||||
-4 1:0.74780125 2:0.034816509 3:0.050858579 4:0.81154469 5:0.90118239 6:0.93475
|
||||
-4 1:0.74896775 2:0.034816509 3:0.052429805 4:0.81834651 5:0.90596883 6:0.93809709
|
||||
-4 1:0.8273781 2:0.034816509 3:0.062994705 4:0.85005667 5:0.9234785 6:0.94925364
|
||||
-4 1:0.83715021 2:0.034816509 3:0.069556576 4:0.86243412 5:0.93033441 6:0.95414001
|
||||
4 1:0.90860432 2:0.034816509 3:0.083188088 4:0.87675453 5:0.93922686 6:0.9605319
|
||||
3.28969896443802 1:0.95170157 2:0.034816509 3:0.090498466 4:0.89162223 5:0.94953702 6:0.9678787
|
||||
-4 1:0.95380965 2:0.034816509 3:0.098497068 4:0.89744051 5:0.95262718 6:0.9699955
|
||||
-4 1:0.4273521 2:0.061964183 3:0.11570271 4:0.46042814 5:0.65892566 6:0.79870806
|
||||
-4 1:0.63123747 2:0.061964183 3:0.16837045 4:0.62404327 5:0.79121051 6:0.87365722
|
||||
4 1:0.63492766 2:0.061964183 3:0.17600869 4:0.64716959 5:0.80961905 6:0.88717112
|
||||
4 1:0.75618877 2:0.061964183 3:0.22395077 4:0.75529507 5:0.87114015 6:0.91934331
|
||||
-4 1:0.77139737 2:0.061964183 3:0.24694774 4:0.79349593 5:0.8916167 6:0.93200478
|
||||
-4 1:0.88916287 2:0.061964183 3:0.34620191 4:0.87035629 5:0.92985021 6:0.95589668
|
||||
-3.374677712651626 1:0.96196411 2:0.061964183 3:0.41573961 4:0.90598388 5:0.95288439 6:0.97066039
|
||||
4 1:0.96388489 2:0.061964183 3:0.42911181 4:0.91366718 5:0.9568521 6:0.97313108
|
||||
4 1:0.47977509 2:0.23130691 3:0.32928412 4:0.55282916 5:0.66791845 6:0.74863576
|
||||
-4 1:0.67040866 2:0.23130691 3:0.38943269 4:0.66545556 5:0.76680794 6:0.81985996
|
||||
-4 1:0.68687131 2:0.23130691 3:0.41023912 4:0.70740496 5:0.81078152 6:0.86221763
|
||||
-4 1:0.78674389 2:0.23130691 3:0.46460529 4:0.78994847 5:0.86913143 6:0.90516139
|
||||
4 1:0.81048086 2:0.23130691 3:0.50312748 4:0.84547503 5:0.91358495 6:0.94168743
|
||||
4 1:0.9100825 2:0.23130691 3:0.61552031 4:0.9147698 5:0.95147469 6:0.96681058
|
||||
-4 1:0.98034608 2:0.23130691 3:0.72900944 4:0.95802477 5:0.97650266 6:0.98413271
|
||||
-4 1:0.98374901 2:0.23130691 3:0.74947079 4:0.96647178 5:0.98163931 6:0.98773965
|
||||
4 1:0.21483779 2:0.37995933 3:0.091662564 4:0.1529332 5:0.19165383 6:0.23332771
|
||||
-4 1:0.41372639 2:0.37995933 3:0.11972516 4:0.22858077 5:0.28261732 6:0.32614433
|
||||
-4 1:0.4734512 2:0.37995933 3:0.13945528 4:0.28799635 5:0.36498566 6:0.42609007
|
||||
-4 1:0.5944247 2:0.37995933 3:0.17211443 4:0.36367814 5:0.44650577 6:0.50673632
|
||||
4 1:0.67573909 2:0.37995933 3:0.2184327 4:0.48605098 5:0.59000253 6:0.65971535
|
||||
4 1:0.78992142 2:0.37995933 3:0.29529412 4:0.58552372 5:0.67661896 6:0.73531212
|
||||
4 1:0.8868928 2:0.37995933 3:0.39750191 4:0.71176991 5:0.79245591 6:0.83806775
|
||||
4 1:0.91206245 2:0.37995933 3:0.44654064 4:0.77534857 5:0.84760758 6:0.88531211
|
||||
4 1:0.44277696 2:0.32712248 3:0.2599763 4:0.46254963 5:0.57667501 6:0.67118098
|
||||
-4 1:0.63417698 2:0.32712248 3:0.30918307 4:0.58384104 5:0.69563644 6:0.76460802
|
||||
-4 1:0.66078882 2:0.32712248 3:0.33283517 4:0.63861466 5:0.75549127 6:0.82270899
|
||||
-4 1:0.79693 2:0.32712248 3:0.43676431 4:0.81369323 5:0.89238679 6:0.92785696
|
||||
-4 1:0.9005211 2:0.32712248 3:0.55899913 4:0.8961204 5:0.93879525 6:0.95832406
|
||||
-4 1:0.97423624 2:0.32712248 3:0.7180499 4:0.94958431 5:0.97132544 6:0.98045708
|
||||
4 1:0.98100171 2:0.32712248 3:0.75300334 4:0.96341473 5:0.97959333 6:0.98621572
|
||||
-4 1:0.28606808 2:0.62386588 3:0.14210375 4:0.22758903 5:0.26524999 6:0.30116409
|
||||
-4 1:0.48768772 2:0.62386588 3:0.17836177 4:0.32035955 5:0.37398704 6:0.41311999
|
||||
-4 1:0.56051297 2:0.62386588 3:0.20581608 4:0.39367661 5:0.47331478 6:0.53190807
|
||||
-4 1:0.67678192 2:0.62386588 3:0.24903487 4:0.48565737 5:0.56757718 6:0.62285651
|
||||
-4 1:0.75508061 2:0.62386588 3:0.30546933 4:0.61573888 5:0.71406758 6:0.77311164
|
||||
-4 1:0.86028135 2:0.62386588 3:0.40453195 4:0.72562907 5:0.80089496 6:0.84439653
|
||||
-4 1:0.94927745 2:0.62386588 3:0.56011867 4:0.84417863 5:0.89711351 6:0.92293975
|
||||
-4 1:0.96520962 2:0.62386588 3:0.61798068 4:0.89199652 5:0.93295221 6:0.95147468
|
||||
4 1:0.29412838 2:0.1012817 3:0.16200315 4:0.37578485 5:0.59320682 6:0.80117536
|
||||
4 1:0.54962761 2:0.1012817 3:0.24393505 4:0.58209165 5:0.78851378 6:0.9067632
|
||||
4 1:0.55150951 2:0.1012817 3:0.24550611 4:0.58687978 5:0.79404623 6:0.91217056
|
||||
-4 1:0.70981097 2:0.1012817 3:0.33222561 4:0.74494592 5:0.89826659 6:0.95769783
|
||||
4 1:0.73071683 2:0.1012817 3:0.358983 4:0.7781418 5:0.91310488 6:0.9623323
|
||||
4 1:0.89553429 2:0.1012817 3:0.62745623 4:0.94236465 5:0.97874341 6:0.99066928
|
||||
-4 1:0.53689458 2:0.46629001 3:0.19931729 4:0.32410675 5:0.40982343 6:0.4893396
|
||||
-4 1:0.57624881 2:0.46629001 3:0.22920422 4:0.38661782 5:0.49026329 6:0.58000245
|
||||
-4 1:0.70047586 2:0.46629001 3:0.2840121 4:0.48455933 5:0.5905349 6:0.67129089
|
||||
4 1:0.75363108 2:0.46629001 3:0.3568512 4:0.60773492 5:0.71710254 6:0.79012087
|
||||
4 1:0.86083917 2:0.46629001 3:0.44349999 4:0.71472389 5:0.80584481 6:0.86160339
|
||||
4 1:0.93146088 2:0.46629001 3:0.51726316 4:0.80639703 5:0.88120321 6:0.92098303
|
||||
4 1:0.94243661 2:0.46629001 3:0.54756072 4:0.83902916 5:0.90540179 6:0.93886524
|
||||
-4 1:0.42185741 2:0.19607431 3:0.2743975 4:0.45697839 5:0.57535387 6:0.67024059
|
||||
-4 1:0.61177155 2:0.19607431 3:0.35322033 4:0.59523918 5:0.70441733 6:0.77272128
|
||||
-4 1:0.63918923 2:0.19607431 3:0.38192882 4:0.64785809 5:0.75882689 6:0.82455819
|
||||
-4 1:0.75010655 2:0.19607431 3:0.45087158 4:0.74328429 5:0.83021118 6:0.87644924
|
||||
-4 1:0.79147684 2:0.19607431 3:0.51214887 4:0.82369669 5:0.89445079 6:0.92801374
|
||||
4 1:0.89087419 2:0.19607431 3:0.62077958 4:0.89431127 5:0.93664518 6:0.95655314
|
||||
4 1:0.95847774 2:0.19607431 3:0.69261716 4:0.94236474 5:0.96752693 6:0.97818578
|
||||
-4 1:0.96554068 2:0.19607431 3:0.71637114 4:0.95403524 5:0.97458526 6:0.9830982
|
||||
-4 1:0.51519264 2:0.066725896 3:0.34372007 4:0.55995462 5:0.67051183 6:0.76546138
|
||||
-4 1:0.68574767 2:0.066725896 3:0.43594707 4:0.7078017 5:0.80221174 6:0.86027932
|
||||
-4 1:0.69993679 2:0.066725896 3:0.46023293 4:0.74720499 5:0.83721019 6:0.88949178
|
||||
-4 1:0.79819529 2:0.066725896 3:0.52356809 4:0.83017623 5:0.89471771 6:0.9266419
|
||||
-4 1:0.823065 2:0.066725896 3:0.56979595 4:0.87552964 5:0.92548908 6:0.94935861
|
||||
4 1:0.9150904 2:0.066725896 3:0.66189045 4:0.92904989 5:0.95799532 6:0.97146069
|
||||
4 1:0.9679991 2:0.066725896 3:0.70092087 4:0.95434885 5:0.97440829 6:0.98279652
|
||||
4 1:0.97123164 2:0.066725896 3:0.7151308 4:0.960102 5:0.97787508 6:0.98518173
|
||||
4 1:0.51835903 2:0.31813065 3:0.40082289 4:0.55345405 5:0.60797992 6:0.64355438
|
||||
-4 1:0.67524675 2:0.31813065 3:0.43396977 4:0.61807337 5:0.68289571 6:0.72351841
|
||||
4 1:0.70027899 2:0.31813065 3:0.46160919 4:0.67100337 5:0.74355703 6:0.78820216
|
||||
-4 1:0.78642738 2:0.31813065 3:0.49001346 4:0.72032998 5:0.79167775 6:0.83306235
|
||||
4 1:0.82574317 2:0.31813065 3:0.54962708 4:0.81174952 5:0.87501259 6:0.9070568
|
||||
4 1:0.9038342 2:0.31813065 3:0.60120088 4:0.8672518 5:0.91737821 6:0.94093945
|
||||
-4 1:0.9616841 2:0.31813065 3:0.65078047 4:0.92284738 5:0.95658586 6:0.97061867
|
||||
-4 1:0.97005642 2:0.31813065 3:0.67874954 4:0.94213598 5:0.96846928 6:0.97897375
|
||||
4 1:0.56379827 2:0.24484638 3:0.62725489 4:0.73401377 5:0.77061361 6:0.79233977
|
||||
4 1:0.69707073 2:0.24484638 3:0.66864069 4:0.79391324 5:0.8324878 6:0.85355213
|
||||
4 1:0.72448597 2:0.24484638 3:0.69473535 4:0.83115605 5:0.87085556 6:0.89202625
|
||||
2.944507701830927 1:0.80573572 2:0.24484638 3:0.72761205 4:0.87368756 5:0.90816269 6:0.92491864
|
||||
4 1:0.84202128 2:0.24484638 3:0.77195881 4:0.9200765 5:0.94626283 6:0.95775509
|
||||
4 1:0.91272868 2:0.24484638 3:0.81030574 4:0.9498361 5:0.96767523 6:0.97518431
|
||||
4 1:0.96863532 2:0.24484638 3:0.83826012 4:0.97494708 5:0.98538861 6:0.98958291
|
||||
4 1:0.97633249 2:0.24484638 3:0.85344648 4:0.98180902 5:0.9896203 6:0.99264501
|
||||
-4 1:0.62001105 2:0.024412915 3:0.48303676 4:0.77346009 5:0.86903616 6:0.91933256
|
||||
-4 1:0.75315336 2:0.024412915 3:0.54495254 4:0.8556029 5:0.92219373 6:0.95115286
|
||||
-4 1:0.75724951 2:0.024412915 3:0.55262807 4:0.86428342 5:0.9282135 6:0.95577208
|
||||
-4 1:0.83810789 2:0.024412915 3:0.59827116 4:0.91134508 5:0.95279962 6:0.96996019
|
||||
-4 1:0.85232946 2:0.024412915 3:0.62293909 4:0.92558872 5:0.96038708 6:0.97539389
|
||||
4 1:0.92792663 2:0.024412915 3:0.69545065 4:0.95936739 5:0.97831336 6:0.98620559
|
||||
1.980035724241328 1:0.97264863 2:0.024412915 3:0.73200601 4:0.97966853 5:0.98963673 6:0.99281027
|
||||
-4 1:0.48158977 2:0.61324729 3:0.27540875 4:0.42553765 5:0.48641897 6:0.53104738
|
||||
-4 1:0.63753866 2:0.61324729 3:0.33157417 4:0.5219651 5:0.58927718 6:0.63177685
|
||||
-4 1:0.67707961 2:0.61324729 3:0.36721782 4:0.59027691 5:0.66847711 6:0.71742217
|
||||
-4 1:0.76829625 2:0.61324729 3:0.41958997 4:0.67025967 5:0.74327658 6:0.78585557
|
||||
4 1:0.81258618 2:0.61324729 3:0.48476198 4:0.77032441 5:0.83826134 6:0.87434329
|
||||
1.907150309173137 1:0.89300178 2:0.61324729 3:0.55319441 4:0.83735236 5:0.89032475 6:0.91666457
|
||||
4 1:0.95569452 2:0.61324729 3:0.59744731 4:0.90011796 5:0.93900499 6:0.95615901
|
||||
4 1:0.96488572 2:0.61324729 3:0.62477426 4:0.92367983 5:0.95528787 6:0.9685549
|
||||
-4 1:0.6558802 3:0.50914684 4:0.83375963 5:0.89809846 6:0.92653187
|
||||
-4 1:0.76884943 3:0.55679293 4:0.89391591 5:0.93860454 6:0.95403218
|
||||
-4 1:0.77375631 3:0.5636812 4:0.90019662 5:0.9427445 6:0.9574506
|
||||
-4 1:0.84303042 3:0.60236618 4:0.93446437 5:0.96242475 6:0.97109062
|
||||
-4 1:0.85951211 3:0.6228269 4:0.94532487 5:0.96833445 6:0.97557224
|
||||
-4 1:0.9261042 3:0.68729659 4:0.96971448 5:0.98303447 6:0.98744411
|
||||
-4 1:0.96470143 3:0.7147545 4:0.98321849 5:0.9919861 6:0.99443831
|
||||
-4 1:0.967065 3:0.7243143 4:0.98476297 5:0.99277815 6:0.99502417
|
||||
4 1:0.099255226 2:1 3:0.10881751 4:0.12198057 5:0.1091675 6:0.088043328
|
||||
-2.459444514418235 1:0.29688918 2:1 3:0.13820799 4:0.18737935 5:0.19948561 6:0.20329466
|
||||
-4 1:0.38839319 2:1 3:0.16899654 4:0.25561373 5:0.29559208 6:0.3291397
|
||||
-4 1:0.51537476 2:1 3:0.20282799 4:0.32849203 5:0.38566584 6:0.43301855
|
||||
-4 1:0.63770606 2:1 3:0.27539534 4:0.47471422 5:0.56203958 6:0.6289053
|
||||
-4 1:0.75616331 2:1 3:0.34700476 4:0.58843901 5:0.67881337 6:0.74344488
|
||||
4 1:0.86716608 2:1 3:0.42670862 4:0.73642101 5:0.82051035 6:0.87077786
|
||||
4 1:0.90117017 2:1 3:0.47750457 4:0.80506581 5:0.87690238 6:0.91543318
|
||||
4 1:1 2:0.019238957 3:0.99999983 4:0.99999915 5:0.9999982 6:0.99999886
|
||||
-4 1:1 2:0.57015555 3:0.99999999 4:0.99999986 5:0.99999974 6:0.9999997
|
||||
-4 1:1 2:0.73861347 3:0.99999983 4:0.99999957 5:0.99999885 6:0.99999917
|
||||
-3.929836092921891 1:1 2:0.50243453 3:0.99999917 4:0.99999858 5:0.99999805 6:0.99999788
|
||||
-4 1:1 2:0.54605511 3:0.99999958 4:0.99999872 5:0.99999818 6:0.99999796
|
||||
-4 1:1 2:0.77164289 3:1 4:0.99999991 5:0.99999965 6:0.99999961
|
||||
-4 1:0.37561256 2:0.27174489 3:0.14564537 4:0.39790222 5:0.55106678 6:0.67008782
|
||||
-4 1:0.56862883 2:0.27174489 3:0.19411401 4:0.53707663 5:0.68373405 6:0.77053495
|
||||
-4 1:0.59507913 2:0.27174489 3:0.21726037 4:0.59928839 5:0.74861604 6:0.82928713
|
||||
-4 1:0.73092966 2:0.27174489 3:0.27356025 4:0.71390094 5:0.82257087 6:0.87444689
|
||||
4 1:0.75725767 2:0.27174489 3:0.31634112 4:0.79654122 5:0.88915412 6:0.9273156
|
||||
4 1:0.88324277 2:0.27174489 3:0.4403716 4:0.8922293 5:0.93831942 6:0.95845059
|
||||
4 1:0.8933052 2:0.27174489 3:0.47228748 4:0.92107255 5:0.95675014 6:0.97151317
|
||||
4 1:0.9508125 2:0.27174489 3:0.58168899 4:0.90979133 5:0.94735255 6:0.96398348
|
||||
4 1:0.95713874 2:0.27174489 3:0.61027713 4:0.92360129 5:0.95604732 6:0.97013831
|
||||
4 1:0.96971772 2:0.27174489 3:0.67509147 4:0.9486493 5:0.97123348 6:0.98048503
|
||||
-4 1:0.52994813 2:0.019238957 3:0.38547432 4:0.75372022 5:0.84123041 6:0.89486139
|
||||
-4 1:0.53720078 2:0.019238957 3:0.3990632 4:0.77884256 5:0.86263175 6:0.9119893
|
||||
-4 1:0.69594659 2:0.019238957 3:0.42249933 4:0.83012148 5:0.89999703 6:0.9343333
|
||||
-4 1:0.70045567 2:0.019238957 3:0.43485895 4:0.84990814 5:0.91438168 6:0.94468986
|
||||
-4 1:0.81165128 2:0.019238957 3:0.45209767 4:0.87998379 5:0.93121657 6:0.95417334
|
||||
4 1:0.90641987 2:0.019238957 3:0.47995579 4:0.90591955 5:0.94655395 6:0.96494883
|
||||
4 1:0.96394448 2:0.019238957 3:0.49703719 4:0.92208917 5:0.95739033 6:0.97352851
|
||||
4 1:0.97111644 2:0.019238957 3:0.51850714 4:0.94179388 5:0.97018449 6:0.98213448
|
||||
4 2:0.57015555 6:0.010154919
|
||||
-4 1:0.60579512 2:0.57015555 3:0.12893302 4:0.40260054 5:0.52794625 6:0.61631229
|
||||
-4 1:0.75391926 2:0.57015555 3:0.18461005 4:0.49989687 5:0.61178122 6:0.68884477
|
||||
-4 1:0.8153429 2:0.57015555 3:0.23793372 4:0.60651572 5:0.71554025 6:0.78255239
|
||||
-4 1:0.85600941 2:0.57015555 3:0.28629085 4:0.68788242 5:0.78757701 6:0.84353583
|
||||
-4 1:0.89148132 2:0.57015555 3:0.34171535 4:0.76509994 5:0.85013067 6:0.8935626
|
||||
-4 1:0.92852788 2:0.57015555 3:0.42100368 4:0.84916897 5:0.91127553 6:0.93940013
|
||||
4 1:0.1753977 2:0.73861347 3:0.09552304 4:0.13054246 5:0.15035856 6:0.1699603
|
||||
-4 1:0.45635833 2:0.73861347 3:0.158209 4:0.28040177 5:0.35751004 6:0.42348738
|
||||
4 1:0.69430386 2:0.73861347 3:0.27712969 4:0.53553712 5:0.64647804 6:0.71969773
|
||||
4 1:0.76724888 2:0.73861347 3:0.31108262 4:0.57582518 5:0.67863928 6:0.74667418
|
||||
4 1:0.86571411 2:0.73861347 3:0.3944368 4:0.71882415 5:0.81004305 6:0.8623959
|
||||
4 1:0.90357706 2:0.73861347 3:0.46136994 4:0.80064289 5:0.87542246 6:0.91386276
|
||||
4 1:0.92840891 2:0.73861347 3:0.51989475 4:0.8578363 5:0.9163383 6:0.94388077
|
||||
4 1:0.057186579 2:0.50243453 3:0.074302209 4:0.064066487 5:0.038191765
|
||||
4 1:0.46335071 2:0.50243453 3:0.15651072 4:0.26099077 5:0.31080835 6:0.35093188
|
||||
4 1:0.57170622 2:0.50243453 3:0.19565839 4:0.34034574 5:0.40815216 6:0.46499326
|
||||
4 1:0.61771078 2:0.50243453 3:0.2013411 4:0.37388838 5:0.44991385 6:0.51391699
|
||||
4 1:0.64058636 2:0.50243453 3:0.23392852 4:0.42110826 5:0.50581137 6:0.57392097
|
||||
4 1:0.68648276 2:0.50243453 3:0.23959609 4:0.45613658 5:0.54666909 6:0.61876644
|
||||
4 1:0.79301714 2:0.50243453 3:0.32622773 4:0.62144616 5:0.7212244 6:0.78795799
|
||||
4 1:0.86049974 2:0.50243453 3:0.40728198 4:0.74550855 5:0.83106809 6:0.87888976
|
||||
4 1:0.89790028 2:0.50243453 3:0.47222451 4:0.82140625 5:0.88905388 6:0.92286615
|
||||
4 1:0.29904095 2:0.54605511 3:0.21472932 4:0.38914781 5:0.49769154 6:0.59083219
|
||||
4 1:0.56768263 2:0.54605511 3:0.30308084 4:0.59347344 5:0.71982347 6:0.79614483
|
||||
4 1:0.69533755 2:0.54605511 3:0.31948376 4:0.61068179 5:0.71809681 6:0.78192463
|
||||
4 1:0.75945348 2:0.54605511 3:0.43714837 4:0.81360207 5:0.89436962 6:0.92985049
|
||||
-4 1:0.93943076 2:0.54605511 3:0.53480784 4:0.86577728 5:0.92039762 6:0.94567054
|
||||
4 1:0.98364834 2:0.54605511 3:0.75735767 4:0.97288667 5:0.98579289 6:0.99060009
|
||||
4 1:0.32002749 2:0.21597041 3:0.045063964 4:0.37692216 5:0.55140675 6:0.69796544
|
||||
-4 1:0.56695344 2:0.21597041 3:0.097210209 4:0.58397601 5:0.7508394 6:0.83948605
|
||||
-4 1:0.70520428 2:0.21597041 3:0.13385033 4:0.67160615 5:0.79655301 6:0.85818695
|
||||
4 1:0.73424456 2:0.21597041 3:0.16265978 4:0.77271887 5:0.87781115 6:0.92030835
|
||||
4 1:0.86954132 2:0.21597041 3:0.25291857 4:0.86032679 5:0.92065002 6:0.94719087
|
||||
4 1:0.87335209 2:0.21597041 3:0.26150142 4:0.87394579 5:0.92955244 6:0.95361972
|
||||
4 1:0.95158679 2:0.21597041 3:0.31469782 4:0.90564041 5:0.9505662 6:0.96731494
|
||||
4 1:0.046480997 2:0.77164289 3:0.0036752949 4:0.063426258 5:0.083975821 6:0.10357933
|
||||
4 1:0.4815399 2:0.77164289 3:0.061680284 4:0.28308554 5:0.37269791 6:0.4415304
|
||||
-4 1:0.59466693 2:0.77164289 3:0.10183633 4:0.43686442 5:0.55619455 6:0.63614229
|
||||
4 1:0.67663499 2:0.77164289 3:0.12768853 4:0.46551139 5:0.57412631 6:0.64893256
|
||||
4 1:0.727837 2:0.77164289 3:0.15698565 4:0.54933575 5:0.66054291 6:0.73141004
|
||||
4 1:0.79298458 2:0.77164289 3:0.1783044 4:0.58984439 5:0.69884629 6:0.76566769
|
||||
4 1:0.84189758 2:0.77164289 3:0.2201085 4:0.67980569 5:0.78117365 6:0.8374729
|
||||
0.6648995749207404 1:0.87582783 2:0.77164289 3:0.25791546 4:0.74958011 5:0.83919212 6:0.88469242
|
||||
-4 1:0.93223983 2:0.77164289 3:0.34905641 4:0.87203088 5:0.92820957 6:0.95189869
|
||||
-4 1:0.94593957 2:0.77164289 3:0.38300199 4:0.90150605 5:0.9468388 6:0.96487186
|
||||
-4 1:0.51879331 2:0.46336375 3:0.30175677 4:0.53715556 5:0.6201217 6:0.69126522
|
||||
-4 1:0.69563267 2:0.46336375 3:0.38974197 4:0.68280797 5:0.7624929 6:0.81933882
|
||||
-4 1:0.78342288 2:0.46336375 3:0.43017021 4:0.73828939 5:0.81072072 6:0.85931014
|
||||
-4 1:0.82362468 2:0.46336375 3:0.49268118 4:0.82332639 5:0.88132959 6:0.91765632
|
||||
4 1:0.89144668 2:0.46336375 3:0.53894393 4:0.87349384 5:0.92016796 6:0.94654988
|
||||
4 1:0.93642466 2:0.46336375 3:0.54466735 4:0.89946619 5:0.94109895 6:0.96142482
|
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3a.pkl
vendored
Normal file
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3a.pkl
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif_scale0'
|
||||
p16
|
||||
aS'vif_scale1'
|
||||
p17
|
||||
aS'vif_scale2'
|
||||
p18
|
||||
aS'vif_scale3'
|
||||
p19
|
||||
aS'adm2'
|
||||
p20
|
||||
aS'motion'
|
||||
p21
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p22
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p23
|
||||
(lp24
|
||||
S'VMAF_feature_adm2_score'
|
||||
p25
|
||||
aS'VMAF_feature_motion_score'
|
||||
p26
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p30
|
||||
asS'intercepts'
|
||||
p31
|
||||
(lp32
|
||||
F-0.01818181818181818
|
||||
aF-1.9715194224195431
|
||||
aF-0.017141728475754285
|
||||
aF-0.0821730551735984
|
||||
aF-0.27676003627480394
|
||||
aF-0.46907028940024076
|
||||
aF-0.7460857020871379
|
||||
asS'model_type'
|
||||
p33
|
||||
S'LIBSVMNUSVR'
|
||||
p34
|
||||
sS'model'
|
||||
p35
|
||||
NsS'slopes'
|
||||
p36
|
||||
(lp37
|
||||
F0.009454545454545453
|
||||
aF2.971519422419543
|
||||
aF0.052827854100638595
|
||||
aF1.0821730334476827
|
||||
aF1.276760118174002
|
||||
aF1.469070462304583
|
||||
aF1.7460860425205067
|
||||
ass.
|
283
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3a.pkl.model
vendored
Normal file
283
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv3a.pkl.model
vendored
Normal file
@ -0,0 +1,283 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 276
|
||||
rho -1.44813
|
||||
SV
|
||||
-4 1:1 2:0.62009279 3:0.99999956 4:0.99999617 5:0.99999659 6:0.99999649
|
||||
-4 1:1 2:0.65360354 3:0.99999982 4:0.99999769 5:0.99999611 6:0.99999789
|
||||
4 1:1 2:0.1007927 3:0.99999988 4:0.99999985 5:0.99999974 6:0.99999956
|
||||
4 1:1 2:0.046808211 3:0.99999979 4:0.9999997 5:0.9999995 6:0.99999916
|
||||
4 1:1 2:0.034816509 3:0.99999998 4:0.99999562 5:0.99999437 6:0.9999976
|
||||
4 1:1 2:0.061964183 3:0.99999926 4:0.99999929 5:0.99999891 6:0.99999862
|
||||
-4 1:1 2:0.62386588 3:0.99999991 4:0.99999987 5:0.9999999 6:0.99999983
|
||||
1.284542356865254 1:1 2:0.1012817 3:0.99999995 4:1 5:0.99999997 6:0.99999982
|
||||
4 1:1 2:0.066725896 3:0.99999958 4:0.99999942 5:0.99999906 6:0.99999913
|
||||
4 1:1 2:0.024412915 3:0.9999985 4:0.99999662 5:0.99999485 6:0.99999574
|
||||
-4 1:1 2:0.61324729 3:0.99999945 4:0.99999953 5:0.99999881 6:0.99999873
|
||||
4 1:1 3:0.9999953 4:0.99999163 5:0.99999444 6:0.9999906
|
||||
-2.660818458410579 1:1 2:1 3:0.99999989 4:0.99999962 5:0.9999994 6:0.99999896
|
||||
-4 1:0.55120029 2:0.62009279 3:0.26121942 4:0.6293366 5:0.71975367 6:0.78093108
|
||||
-4 1:0.69994822 2:0.62009279 3:0.30135725 4:0.70722144 5:0.79216822 6:0.83978283
|
||||
-4 1:0.72011021 2:0.62009279 3:0.32121318 4:0.74989787 5:0.83473257 6:0.87962097
|
||||
1.785063257428526 1:0.80161657 2:0.62009279 3:0.3501572 4:0.79684481 5:0.87136279 6:0.90727549
|
||||
4 1:0.82707856 2:0.62009279 3:0.37930406 4:0.84227672 5:0.90805726 6:0.93746453
|
||||
4 1:0.89751445 2:0.62009279 3:0.41517592 4:0.87673937 5:0.93162471 6:0.95441416
|
||||
4 1:0.94175354 2:0.62009279 3:0.44577851 4:0.91006376 5:0.95340334 6:0.97037481
|
||||
4 1:0.94886911 2:0.62009279 3:0.46794139 4:0.92362274 5:0.96145271 6:0.97586663
|
||||
-4 1:0.52231028 2:0.15702556 3:0.32589559 4:0.6581287 5:0.76030191 6:0.83726695
|
||||
-4 1:0.69532892 2:0.15702556 3:0.37963798 4:0.75963071 5:0.84793528 6:0.89590344
|
||||
-4 1:0.70311899 2:0.15702556 3:0.39122605 4:0.77997186 5:0.86615863 6:0.91195763
|
||||
-4 1:0.80199769 2:0.15702556 3:0.43275766 4:0.83967337 5:0.90601589 6:0.93575795
|
||||
-4 1:0.81958249 2:0.15702556 3:0.46108289 4:0.86793163 5:0.92463208 6:0.94935262
|
||||
4 1:0.90910291 2:0.15702556 3:0.53184539 4:0.91070978 5:0.95009054 6:0.96632324
|
||||
4 1:0.96127511 2:0.15702556 3:0.56535202 4:0.93581909 5:0.96661274 6:0.97845579
|
||||
4 1:0.96463426 2:0.15702556 3:0.58122093 4:0.94306733 5:0.97086662 6:0.98141713
|
||||
4 1:0.53215537 2:0.65360354 3:0.10503639 4:0.51343702 5:0.6311132 6:0.68810633
|
||||
4 1:0.66952701 2:0.65360354 3:0.1196006 4:0.56492275 5:0.69164814 6:0.7502318
|
||||
4 1:0.69456875 2:0.65360354 3:0.12925873 4:0.60404133 5:0.73699834 6:0.79724738
|
||||
4 1:0.7719972 2:0.65360354 3:0.13902331 4:0.63790465 5:0.77218831 6:0.83039508
|
||||
4 1:0.80320895 2:0.65360354 3:0.15424042 4:0.68718524 5:0.81881741 6:0.87335226
|
||||
4 1:0.86489599 2:0.65360354 3:0.16699556 4:0.71785387 5:0.84510702 6:0.8951996
|
||||
-4 1:0.9012366 2:0.65360354 3:0.19299232 4:0.77508983 5:0.88553267 6:0.92699809
|
||||
-4 1:0.90926985 2:0.65360354 3:0.21237815 4:0.80244544 5:0.90269819 6:0.93899838
|
||||
4 1:0.42520716 2:0.1007927 3:0.24051621 4:0.48911974 5:0.65173668 6:0.80252903
|
||||
-4 1:0.6394972 2:0.1007927 3:0.33411556 4:0.67555528 5:0.81505607 6:0.90301049
|
||||
-4 1:0.64142951 2:0.1007927 3:0.34197188 4:0.6868242 5:0.82459154 6:0.91058618
|
||||
-4 1:0.77466028 2:0.1007927 3:0.41863934 4:0.81361802 5:0.91024986 6:0.95545869
|
||||
-4 1:0.78864036 2:0.1007927 3:0.44617483 4:0.84086386 5:0.92445862 6:0.96165042
|
||||
4 1:0.91433421 2:0.1007927 3:0.60215347 4:0.9500684 5:0.97717524 6:0.98807012
|
||||
-4 1:0.99737302 2:0.1007927 3:0.88514414 4:0.99166058 5:0.99597225 6:0.99759774
|
||||
4 1:0.40868363 2:0.046808211 3:0.20127881 4:0.43690014 5:0.62303099 6:0.80462761
|
||||
-4 1:0.63428306 2:0.046808211 3:0.29367506 4:0.63478131 5:0.80404493 6:0.90860113
|
||||
-4 1:0.63517172 2:0.046808211 3:0.29742126 4:0.63976608 5:0.8083318 6:0.9121364
|
||||
-4 1:0.76722122 2:0.046808211 3:0.38377254 4:0.78514877 5:0.90429663 6:0.95734326
|
||||
-4 1:0.78174155 2:0.046808211 3:0.40876054 4:0.81261902 5:0.91751826 6:0.96173956
|
||||
4 1:0.91228727 2:0.046808211 3:0.61082239 4:0.94727552 5:0.9778847 6:0.98952764
|
||||
-4 1:0.99904844 2:0.046808211 3:0.93477801 4:0.99671741 5:0.99843624 6:0.99906019
|
||||
4 1:0.49105754 2:0.28207571 3:0.44508755 4:0.61523775 5:0.74189323 6:0.87563111
|
||||
4 1:0.68136646 2:0.28207571 3:0.48593046 4:0.74223628 5:0.8614384 6:0.94331526
|
||||
4 1:0.68210291 2:0.28207571 3:0.48669052 4:0.74459379 5:0.86363839 6:0.94501266
|
||||
-4 1:0.80047147 2:0.28207571 3:0.52507094 4:0.84156857 5:0.93218749 6:0.97654729
|
||||
-4 1:0.81359956 2:0.28207571 3:0.53734874 4:0.86091868 5:0.94191896 6:0.97933221
|
||||
4 1:0.92503175 2:0.28207571 3:0.64403646 4:0.96342638 5:0.98853736 6:0.99714538
|
||||
-4 1:0.99967515 2:0.28207571 3:0.9822076 4:0.99908738 5:0.99957506 6:0.99978085
|
||||
-4 1:0.49746334 2:0.14532926 3:0.10350364 4:0.51846908 5:0.65289765 6:0.74106992
|
||||
-4 1:0.65336014 2:0.14532926 3:0.12674804 4:0.61146614 5:0.73713105 6:0.80489761
|
||||
4 1:0.67279707 2:0.14532926 3:0.135115 4:0.65228036 5:0.77672741 6:0.84049771
|
||||
-4 1:0.76331475 2:0.14532926 3:0.15236343 4:0.71258664 5:0.82279352 6:0.87473392
|
||||
4 1:0.7887033 2:0.14532926 3:0.16802837 4:0.76329081 5:0.86171606 6:0.90543866
|
||||
4 1:0.86258788 2:0.14532926 3:0.18926886 4:0.79880795 5:0.88711547 6:0.92422598
|
||||
4 1:0.90985192 2:0.14532926 3:0.20060343 4:0.83883768 5:0.91654156 6:0.94568362
|
||||
-4 1:0.91428295 2:0.14532926 3:0.21345907 4:0.85832183 5:0.92822182 6:0.95341603
|
||||
4 1:0.45211401 2:0.1376926 3:0.093365676 4:0.53436504 5:0.66768152 6:0.76806598
|
||||
-4 1:0.64314032 2:0.1376926 3:0.126883 4:0.6599956 5:0.78003752 6:0.84511695
|
||||
-4 1:0.65202563 2:0.1376926 3:0.13248219 4:0.68649599 5:0.8055084 6:0.86798412
|
||||
4 1:0.76369295 2:0.1376926 3:0.15600564 4:0.75980504 5:0.85619292 6:0.90022749
|
||||
4 1:0.78542957 2:0.1376926 3:0.16955145 4:0.79662339 5:0.8819087 6:0.91943759
|
||||
4 1:0.88316489 2:0.1376926 3:0.20161484 4:0.83942032 5:0.90903523 6:0.93822433
|
||||
4 1:0.94522113 2:0.1376926 3:0.21541255 4:0.8659426 5:0.92959161 6:0.95343241
|
||||
4 1:0.94944893 2:0.1376926 3:0.22398871 4:0.87664634 5:0.93653087 6:0.95848873
|
||||
-4 1:0.58827841 2:0.19908625 3:0.12270748 4:0.71032975 5:0.79612606 6:0.84328574
|
||||
4 1:0.72787772 2:0.19908625 3:0.13608056 4:0.7652198 5:0.84839563 6:0.88712536
|
||||
4 1:0.73686914 2:0.19908625 3:0.13980216 4:0.78480629 5:0.86663349 6:0.90357662
|
||||
4 1:0.81448411 2:0.19908625 3:0.14751601 4:0.81360437 5:0.89032105 6:0.92210299
|
||||
4 1:0.83242962 2:0.19908625 3:0.15555028 4:0.84004447 5:0.91050996 6:0.938502
|
||||
4 1:0.90008906 2:0.19908625 3:0.16537108 4:0.85778742 5:0.92412308 6:0.94895956
|
||||
-4 1:0.94173707 2:0.19908625 3:0.17317649 4:0.876681 5:0.93779975 6:0.95956764
|
||||
-4 1:0.94484618 2:0.19908625 3:0.18169384 4:0.88732249 5:0.94420428 6:0.96402826
|
||||
-4 1:0.6096341 2:0.034816509 3:0.035489331 4:0.74861966 5:0.86052646 6:0.91068353
|
||||
-4 1:0.74780125 2:0.034816509 3:0.050858579 4:0.81154469 5:0.90118239 6:0.93475
|
||||
-4 1:0.74896775 2:0.034816509 3:0.052429805 4:0.81834651 5:0.90596883 6:0.93809709
|
||||
-4 1:0.8273781 2:0.034816509 3:0.062994705 4:0.85005667 5:0.9234785 6:0.94925364
|
||||
-4 1:0.83715021 2:0.034816509 3:0.069556576 4:0.86243412 5:0.93033441 6:0.95414001
|
||||
-1.368298987566472 1:0.90860432 2:0.034816509 3:0.083188088 4:0.87675453 5:0.93922686 6:0.9605319
|
||||
4 1:0.95170157 2:0.034816509 3:0.090498466 4:0.89162223 5:0.94953702 6:0.9678787
|
||||
-4 1:0.95380965 2:0.034816509 3:0.098497068 4:0.89744051 5:0.95262718 6:0.9699955
|
||||
4 1:0.4273521 2:0.061964183 3:0.11570271 4:0.46042814 5:0.65892566 6:0.79870806
|
||||
4 1:0.63123747 2:0.061964183 3:0.16837045 4:0.62404327 5:0.79121051 6:0.87365722
|
||||
4 1:0.63492766 2:0.061964183 3:0.17600869 4:0.64716959 5:0.80961905 6:0.88717112
|
||||
4 1:0.75618877 2:0.061964183 3:0.22395077 4:0.75529507 5:0.87114015 6:0.91934331
|
||||
-4 1:0.77139737 2:0.061964183 3:0.24694774 4:0.79349593 5:0.8916167 6:0.93200478
|
||||
4 1:0.88916287 2:0.061964183 3:0.34620191 4:0.87035629 5:0.92985021 6:0.95589668
|
||||
4 1:0.96196411 2:0.061964183 3:0.41573961 4:0.90598388 5:0.95288439 6:0.97066039
|
||||
4 1:0.96388489 2:0.061964183 3:0.42911181 4:0.91366718 5:0.9568521 6:0.97313108
|
||||
4 1:0.47977509 2:0.23130691 3:0.32928412 4:0.55282916 5:0.66791845 6:0.74863576
|
||||
-2.202195475539295 1:0.67040866 2:0.23130691 3:0.38943269 4:0.66545556 5:0.76680794 6:0.81985996
|
||||
-4 1:0.68687131 2:0.23130691 3:0.41023912 4:0.70740496 5:0.81078152 6:0.86221763
|
||||
-4 1:0.78674389 2:0.23130691 3:0.46460529 4:0.78994847 5:0.86913143 6:0.90516139
|
||||
4 1:0.81048086 2:0.23130691 3:0.50312748 4:0.84547503 5:0.91358495 6:0.94168743
|
||||
4 1:0.9100825 2:0.23130691 3:0.61552031 4:0.9147698 5:0.95147469 6:0.96681058
|
||||
4 1:0.98034608 2:0.23130691 3:0.72900944 4:0.95802477 5:0.97650266 6:0.98413271
|
||||
-4 1:0.98374901 2:0.23130691 3:0.74947079 4:0.96647178 5:0.98163931 6:0.98773965
|
||||
4 1:0.21483779 2:0.37995933 3:0.091662564 4:0.1529332 5:0.19165383 6:0.23332771
|
||||
-4 1:0.41372639 2:0.37995933 3:0.11972516 4:0.22858077 5:0.28261732 6:0.32614433
|
||||
-4 1:0.4734512 2:0.37995933 3:0.13945528 4:0.28799635 5:0.36498566 6:0.42609007
|
||||
-4 1:0.5944247 2:0.37995933 3:0.17211443 4:0.36367814 5:0.44650577 6:0.50673632
|
||||
-4 1:0.67573909 2:0.37995933 3:0.2184327 4:0.48605098 5:0.59000253 6:0.65971535
|
||||
4 1:0.78992142 2:0.37995933 3:0.29529412 4:0.58552372 5:0.67661896 6:0.73531212
|
||||
4 1:0.8868928 2:0.37995933 3:0.39750191 4:0.71176991 5:0.79245591 6:0.83806775
|
||||
4 1:0.91206245 2:0.37995933 3:0.44654064 4:0.77534857 5:0.84760758 6:0.88531211
|
||||
4 1:0.44277696 2:0.32712248 3:0.2599763 4:0.46254963 5:0.57667501 6:0.67118098
|
||||
-4 1:0.63417698 2:0.32712248 3:0.30918307 4:0.58384104 5:0.69563644 6:0.76460802
|
||||
-4 1:0.66078882 2:0.32712248 3:0.33283517 4:0.63861466 5:0.75549127 6:0.82270899
|
||||
4 1:0.7632632 2:0.32712248 3:0.38717275 4:0.73333429 5:0.82688379 6:0.87461194
|
||||
-4 1:0.79693 2:0.32712248 3:0.43676431 4:0.81369323 5:0.89238679 6:0.92785696
|
||||
4 1:0.9005211 2:0.32712248 3:0.55899913 4:0.8961204 5:0.93879525 6:0.95832406
|
||||
-4 1:0.97423624 2:0.32712248 3:0.7180499 4:0.94958431 5:0.97132544 6:0.98045708
|
||||
-4 1:0.98100171 2:0.32712248 3:0.75300334 4:0.96341473 5:0.97959333 6:0.98621572
|
||||
-4 1:0.28606808 2:0.62386588 3:0.14210375 4:0.22758903 5:0.26524999 6:0.30116409
|
||||
-4 1:0.48768772 2:0.62386588 3:0.17836177 4:0.32035955 5:0.37398704 6:0.41311999
|
||||
-4 1:0.56051297 2:0.62386588 3:0.20581608 4:0.39367661 5:0.47331478 6:0.53190807
|
||||
-4 1:0.67678192 2:0.62386588 3:0.24903487 4:0.48565737 5:0.56757718 6:0.62285651
|
||||
-4 1:0.75508061 2:0.62386588 3:0.30546933 4:0.61573888 5:0.71406758 6:0.77311164
|
||||
-4 1:0.86028135 2:0.62386588 3:0.40453195 4:0.72562907 5:0.80089496 6:0.84439653
|
||||
-4 1:0.94927745 2:0.62386588 3:0.56011867 4:0.84417863 5:0.89711351 6:0.92293975
|
||||
-4 1:0.96520962 2:0.62386588 3:0.61798068 4:0.89199652 5:0.93295221 6:0.95147468
|
||||
4 1:0.29412838 2:0.1012817 3:0.16200315 4:0.37578485 5:0.59320682 6:0.80117536
|
||||
4 1:0.54962761 2:0.1012817 3:0.24393505 4:0.58209165 5:0.78851378 6:0.9067632
|
||||
4 1:0.55150951 2:0.1012817 3:0.24550611 4:0.58687978 5:0.79404623 6:0.91217056
|
||||
4 1:0.70981097 2:0.1012817 3:0.33222561 4:0.74494592 5:0.89826659 6:0.95769783
|
||||
4 1:0.73071683 2:0.1012817 3:0.358983 4:0.7781418 5:0.91310488 6:0.9623323
|
||||
4 1:0.89553429 2:0.1012817 3:0.62745623 4:0.94236465 5:0.97874341 6:0.99066928
|
||||
-4 1:0.99960552 2:0.1012817 3:0.97634186 4:0.99896487 5:0.99945077 6:0.99960846
|
||||
-1.374104691297266 1:0.32251332 2:0.46629001 3:0.13473179 4:0.20193935 5:0.26784384 6:0.34728936
|
||||
-4 1:0.53689458 2:0.46629001 3:0.19931729 4:0.32410675 5:0.40982343 6:0.4893396
|
||||
-4 1:0.57624881 2:0.46629001 3:0.22920422 4:0.38661782 5:0.49026329 6:0.58000245
|
||||
-4 1:0.70047586 2:0.46629001 3:0.2840121 4:0.48455933 5:0.5905349 6:0.67129089
|
||||
4 1:0.75363108 2:0.46629001 3:0.3568512 4:0.60773492 5:0.71710254 6:0.79012087
|
||||
4 1:0.86083917 2:0.46629001 3:0.44349999 4:0.71472389 5:0.80584481 6:0.86160339
|
||||
4 1:0.93146088 2:0.46629001 3:0.51726316 4:0.80639703 5:0.88120321 6:0.92098303
|
||||
4 1:0.94243661 2:0.46629001 3:0.54756072 4:0.83902916 5:0.90540179 6:0.93886524
|
||||
-4 1:0.42185741 2:0.19607431 3:0.2743975 4:0.45697839 5:0.57535387 6:0.67024059
|
||||
-4 1:0.61177155 2:0.19607431 3:0.35322033 4:0.59523918 5:0.70441733 6:0.77272128
|
||||
-4 1:0.63918923 2:0.19607431 3:0.38192882 4:0.64785809 5:0.75882689 6:0.82455819
|
||||
-4 1:0.75010655 2:0.19607431 3:0.45087158 4:0.74328429 5:0.83021118 6:0.87644924
|
||||
4 1:0.89087419 2:0.19607431 3:0.62077958 4:0.89431127 5:0.93664518 6:0.95655314
|
||||
4 1:0.95847774 2:0.19607431 3:0.69261716 4:0.94236474 5:0.96752693 6:0.97818578
|
||||
4 1:0.96554068 2:0.19607431 3:0.71637114 4:0.95403524 5:0.97458526 6:0.9830982
|
||||
-4 1:0.51519264 2:0.066725896 3:0.34372007 4:0.55995462 5:0.67051183 6:0.76546138
|
||||
-4 1:0.68574767 2:0.066725896 3:0.43594707 4:0.7078017 5:0.80221174 6:0.86027932
|
||||
-4 1:0.69993679 2:0.066725896 3:0.46023293 4:0.74720499 5:0.83721019 6:0.88949178
|
||||
-4 1:0.79819529 2:0.066725896 3:0.52356809 4:0.83017623 5:0.89471771 6:0.9266419
|
||||
-4 1:0.823065 2:0.066725896 3:0.56979595 4:0.87552964 5:0.92548908 6:0.94935861
|
||||
4 1:0.9150904 2:0.066725896 3:0.66189045 4:0.92904989 5:0.95799532 6:0.97146069
|
||||
4 1:0.9679991 2:0.066725896 3:0.70092087 4:0.95434885 5:0.97440829 6:0.98279652
|
||||
4 1:0.97123164 2:0.066725896 3:0.7151308 4:0.960102 5:0.97787508 6:0.98518173
|
||||
4 1:0.51835903 2:0.31813065 3:0.40082289 4:0.55345405 5:0.60797992 6:0.64355438
|
||||
-4 1:0.67524675 2:0.31813065 3:0.43396977 4:0.61807337 5:0.68289571 6:0.72351841
|
||||
4 1:0.70027899 2:0.31813065 3:0.46160919 4:0.67100337 5:0.74355703 6:0.78820216
|
||||
4 1:0.78642738 2:0.31813065 3:0.49001346 4:0.72032998 5:0.79167775 6:0.83306235
|
||||
4 1:0.82574317 2:0.31813065 3:0.54962708 4:0.81174952 5:0.87501259 6:0.9070568
|
||||
4 1:0.9038342 2:0.31813065 3:0.60120088 4:0.8672518 5:0.91737821 6:0.94093945
|
||||
-4 1:0.9616841 2:0.31813065 3:0.65078047 4:0.92284738 5:0.95658586 6:0.97061867
|
||||
-4 1:0.97005642 2:0.31813065 3:0.67874954 4:0.94213598 5:0.96846928 6:0.97897375
|
||||
4 1:0.56379827 2:0.24484638 3:0.62725489 4:0.73401377 5:0.77061361 6:0.79233977
|
||||
4 1:0.69707073 2:0.24484638 3:0.66864069 4:0.79391324 5:0.8324878 6:0.85355213
|
||||
4 1:0.72448597 2:0.24484638 3:0.69473535 4:0.83115605 5:0.87085556 6:0.89202625
|
||||
4 1:0.80573572 2:0.24484638 3:0.72761205 4:0.87368756 5:0.90816269 6:0.92491864
|
||||
4 1:0.84202128 2:0.24484638 3:0.77195881 4:0.9200765 5:0.94626283 6:0.95775509
|
||||
4 1:0.91272868 2:0.24484638 3:0.81030574 4:0.9498361 5:0.96767523 6:0.97518431
|
||||
4 1:0.96863532 2:0.24484638 3:0.83826012 4:0.97494708 5:0.98538861 6:0.98958291
|
||||
4 1:0.97633249 2:0.24484638 3:0.85344648 4:0.98180902 5:0.9896203 6:0.99264501
|
||||
-4 1:0.62001105 2:0.024412915 3:0.48303676 4:0.77346009 5:0.86903616 6:0.91933256
|
||||
-4 1:0.75315336 2:0.024412915 3:0.54495254 4:0.8556029 5:0.92219373 6:0.95115286
|
||||
-4 1:0.75724951 2:0.024412915 3:0.55262807 4:0.86428342 5:0.9282135 6:0.95577208
|
||||
-4 1:0.83810789 2:0.024412915 3:0.59827116 4:0.91134508 5:0.95279962 6:0.96996019
|
||||
-4 1:0.85232946 2:0.024412915 3:0.62293909 4:0.92558872 5:0.96038708 6:0.97539389
|
||||
4 1:0.92792663 2:0.024412915 3:0.69545065 4:0.95936739 5:0.97831336 6:0.98620559
|
||||
-4 1:0.97264863 2:0.024412915 3:0.73200601 4:0.97966853 5:0.98963673 6:0.99281027
|
||||
-4 1:0.97460471 2:0.024412915 3:0.74066194 4:0.98145187 5:0.99064675 6:0.993573
|
||||
-4 1:0.48158977 2:0.61324729 3:0.27540875 4:0.42553765 5:0.48641897 6:0.53104738
|
||||
-4 1:0.63753866 2:0.61324729 3:0.33157417 4:0.5219651 5:0.58927718 6:0.63177685
|
||||
-4 1:0.67707961 2:0.61324729 3:0.36721782 4:0.59027691 5:0.66847711 6:0.71742217
|
||||
-4 1:0.76829625 2:0.61324729 3:0.41958997 4:0.67025967 5:0.74327658 6:0.78585557
|
||||
4 1:0.81258618 2:0.61324729 3:0.48476198 4:0.77032441 5:0.83826134 6:0.87434329
|
||||
-4 1:0.89300178 2:0.61324729 3:0.55319441 4:0.83735236 5:0.89032475 6:0.91666457
|
||||
-4 1:0.95569452 2:0.61324729 3:0.59744731 4:0.90011796 5:0.93900499 6:0.95615901
|
||||
-4 1:0.96488572 2:0.61324729 3:0.62477426 4:0.92367983 5:0.95528787 6:0.9685549
|
||||
-4 1:0.6558802 3:0.50914684 4:0.83375963 5:0.89809846 6:0.92653187
|
||||
-4 1:0.76884943 3:0.55679293 4:0.89391591 5:0.93860454 6:0.95403218
|
||||
-4 1:0.77375631 3:0.5636812 4:0.90019662 5:0.9427445 6:0.9574506
|
||||
-4 1:0.84303042 3:0.60236618 4:0.93446437 5:0.96242475 6:0.97109062
|
||||
-4 1:0.85951211 3:0.6228269 4:0.94532487 5:0.96833445 6:0.97557224
|
||||
4 1:0.96470143 3:0.7147545 4:0.98321849 5:0.9919861 6:0.99443831
|
||||
-4 1:0.967065 3:0.7243143 4:0.98476297 5:0.99277815 6:0.99502417
|
||||
4 1:0.099255226 2:1 3:0.10881751 4:0.12198057 5:0.1091675 6:0.088043328
|
||||
-2.114731306800289 1:0.29688918 2:1 3:0.13820799 4:0.18737935 5:0.19948561 6:0.20329466
|
||||
-4 1:0.38839319 2:1 3:0.16899654 4:0.25561373 5:0.29559208 6:0.3291397
|
||||
-4 1:0.51537476 2:1 3:0.20282799 4:0.32849203 5:0.38566584 6:0.43301855
|
||||
-4 1:0.63770606 2:1 3:0.27539534 4:0.47471422 5:0.56203958 6:0.6289053
|
||||
-4 1:0.75616331 2:1 3:0.34700476 4:0.58843901 5:0.67881337 6:0.74344488
|
||||
4 1:0.90117017 2:1 3:0.47750457 4:0.80506581 5:0.87690238 6:0.91543318
|
||||
4 1:1 2:0.019238957 3:0.99999983 4:0.99999915 5:0.9999982 6:0.99999886
|
||||
-3.172194950666282 1:1 2:0.57015555 3:0.99999999 4:0.99999986 5:0.99999974 6:0.9999997
|
||||
-4 1:1 2:0.73861347 3:0.99999983 4:0.99999957 5:0.99999885 6:0.99999917
|
||||
-4 1:1 2:0.77164289 3:1 4:0.99999991 5:0.99999965 6:0.99999961
|
||||
-4 1:0.37561256 2:0.27174489 3:0.14564537 4:0.39790222 5:0.55106678 6:0.67008782
|
||||
-4 1:0.56862883 2:0.27174489 3:0.19411401 4:0.53707663 5:0.68373405 6:0.77053495
|
||||
-4 1:0.59507913 2:0.27174489 3:0.21726037 4:0.59928839 5:0.74861604 6:0.82928713
|
||||
-4 1:0.73092966 2:0.27174489 3:0.27356025 4:0.71390094 5:0.82257087 6:0.87444689
|
||||
4 1:0.75725767 2:0.27174489 3:0.31634112 4:0.79654122 5:0.88915412 6:0.9273156
|
||||
4 1:0.88324277 2:0.27174489 3:0.4403716 4:0.8922293 5:0.93831942 6:0.95845059
|
||||
4 1:0.8933052 2:0.27174489 3:0.47228748 4:0.92107255 5:0.95675014 6:0.97151317
|
||||
-4 1:0.9508125 2:0.27174489 3:0.58168899 4:0.90979133 5:0.94735255 6:0.96398348
|
||||
4 1:0.95713874 2:0.27174489 3:0.61027713 4:0.92360129 5:0.95604732 6:0.97013831
|
||||
-4 1:0.52994813 2:0.019238957 3:0.38547432 4:0.75372022 5:0.84123041 6:0.89486139
|
||||
-4 1:0.53720078 2:0.019238957 3:0.3990632 4:0.77884256 5:0.86263175 6:0.9119893
|
||||
-4 1:0.69594659 2:0.019238957 3:0.42249933 4:0.83012148 5:0.89999703 6:0.9343333
|
||||
-4 1:0.70045567 2:0.019238957 3:0.43485895 4:0.84990814 5:0.91438168 6:0.94468986
|
||||
-4 1:0.81165128 2:0.019238957 3:0.45209767 4:0.87998379 5:0.93121657 6:0.95417334
|
||||
-1.525588728813809 1:0.90641987 2:0.019238957 3:0.47995579 4:0.90591955 5:0.94655395 6:0.96494883
|
||||
4 1:0.96394448 2:0.019238957 3:0.49703719 4:0.92208917 5:0.95739033 6:0.97352851
|
||||
0.9303943857062207 1:0.97111644 2:0.019238957 3:0.51850714 4:0.94179388 5:0.97018449 6:0.98213448
|
||||
4 2:0.57015555 6:0.010154919
|
||||
-4 1:0.60579512 2:0.57015555 3:0.12893302 4:0.40260054 5:0.52794625 6:0.61631229
|
||||
-4 1:0.75391926 2:0.57015555 3:0.18461005 4:0.49989687 5:0.61178122 6:0.68884477
|
||||
-4 1:0.8153429 2:0.57015555 3:0.23793372 4:0.60651572 5:0.71554025 6:0.78255239
|
||||
4 1:0.85600941 2:0.57015555 3:0.28629085 4:0.68788242 5:0.78757701 6:0.84353583
|
||||
4 1:0.89148132 2:0.57015555 3:0.34171535 4:0.76509994 5:0.85013067 6:0.8935626
|
||||
4 1:0.1753977 2:0.73861347 3:0.09552304 4:0.13054246 5:0.15035856 6:0.1699603
|
||||
-4 1:0.45635833 2:0.73861347 3:0.158209 4:0.28040177 5:0.35751004 6:0.42348738
|
||||
4 1:0.69430386 2:0.73861347 3:0.27712969 4:0.53553712 5:0.64647804 6:0.71969773
|
||||
4 1:0.76724888 2:0.73861347 3:0.31108262 4:0.57582518 5:0.67863928 6:0.74667418
|
||||
4 1:0.86571411 2:0.73861347 3:0.3944368 4:0.71882415 5:0.81004305 6:0.8623959
|
||||
4 1:0.90357706 2:0.73861347 3:0.46136994 4:0.80064289 5:0.87542246 6:0.91386276
|
||||
4 1:0.92840891 2:0.73861347 3:0.51989475 4:0.8578363 5:0.9163383 6:0.94388077
|
||||
4 1:0.057186579 2:0.50243453 3:0.074302209 4:0.064066487 5:0.038191765
|
||||
4 1:0.46335071 2:0.50243453 3:0.15651072 4:0.26099077 5:0.31080835 6:0.35093188
|
||||
4 1:0.57170622 2:0.50243453 3:0.19565839 4:0.34034574 5:0.40815216 6:0.46499326
|
||||
4 1:0.61771078 2:0.50243453 3:0.2013411 4:0.37388838 5:0.44991385 6:0.51391699
|
||||
4 1:0.64058636 2:0.50243453 3:0.23392852 4:0.42110826 5:0.50581137 6:0.57392097
|
||||
4 1:0.68648276 2:0.50243453 3:0.23959609 4:0.45613658 5:0.54666909 6:0.61876644
|
||||
4 1:0.79301714 2:0.50243453 3:0.32622773 4:0.62144616 5:0.7212244 6:0.78795799
|
||||
4 1:0.86049974 2:0.50243453 3:0.40728198 4:0.74550855 5:0.83106809 6:0.87888976
|
||||
4 1:0.89790028 2:0.50243453 3:0.47222451 4:0.82140625 5:0.88905388 6:0.92286615
|
||||
4 1:0.29904095 2:0.54605511 3:0.21472932 4:0.38914781 5:0.49769154 6:0.59083219
|
||||
4 1:0.56768263 2:0.54605511 3:0.30308084 4:0.59347344 5:0.71982347 6:0.79614483
|
||||
4 1:0.69533755 2:0.54605511 3:0.31948376 4:0.61068179 5:0.71809681 6:0.78192463
|
||||
4 1:0.75945348 2:0.54605511 3:0.43714837 4:0.81360207 5:0.89436962 6:0.92985049
|
||||
-4 1:0.93943076 2:0.54605511 3:0.53480784 4:0.86577728 5:0.92039762 6:0.94567054
|
||||
-4 1:0.98364834 2:0.54605511 3:0.75735767 4:0.97288667 5:0.98579289 6:0.99060009
|
||||
4 1:0.32002749 2:0.21597041 3:0.045063964 4:0.37692216 5:0.55140675 6:0.69796544
|
||||
-4 1:0.56695344 2:0.21597041 3:0.097210209 4:0.58397601 5:0.7508394 6:0.83948605
|
||||
-4 1:0.70520428 2:0.21597041 3:0.13385033 4:0.67160615 5:0.79655301 6:0.85818695
|
||||
-4 1:0.73424456 2:0.21597041 3:0.16265978 4:0.77271887 5:0.87781115 6:0.92030835
|
||||
4 1:0.86954132 2:0.21597041 3:0.25291857 4:0.86032679 5:0.92065002 6:0.94719087
|
||||
4 1:0.87335209 2:0.21597041 3:0.26150142 4:0.87394579 5:0.92955244 6:0.95361972
|
||||
4 1:0.95158679 2:0.21597041 3:0.31469782 4:0.90564041 5:0.9505662 6:0.96731494
|
||||
4 1:0.046480997 2:0.77164289 3:0.0036752949 4:0.063426258 5:0.083975821 6:0.10357933
|
||||
-1.58206740090601 1:0.59466693 2:0.77164289 3:0.10183633 4:0.43686442 5:0.55619455 6:0.63614229
|
||||
4 1:0.67663499 2:0.77164289 3:0.12768853 4:0.46551139 5:0.57412631 6:0.64893256
|
||||
4 1:0.727837 2:0.77164289 3:0.15698565 4:0.54933575 5:0.66054291 6:0.73141004
|
||||
4 1:0.79298458 2:0.77164289 3:0.1783044 4:0.58984439 5:0.69884629 6:0.76566769
|
||||
4 1:0.84189758 2:0.77164289 3:0.2201085 4:0.67980569 5:0.78117365 6:0.8374729
|
||||
4 1:0.87582783 2:0.77164289 3:0.25791546 4:0.74958011 5:0.83919212 6:0.88469242
|
||||
-4 1:0.93223983 2:0.77164289 3:0.34905641 4:0.87203088 5:0.92820957 6:0.95189869
|
||||
-4 1:0.94593957 2:0.77164289 3:0.38300199 4:0.90150605 5:0.9468388 6:0.96487186
|
||||
-4 1:0.51879331 2:0.46336375 3:0.30175677 4:0.53715556 5:0.6201217 6:0.69126522
|
||||
-4 1:0.69563267 2:0.46336375 3:0.38974197 4:0.68280797 5:0.7624929 6:0.81933882
|
||||
-4 1:0.78342288 2:0.46336375 3:0.43017021 4:0.73828939 5:0.81072072 6:0.85931014
|
||||
-4 1:0.82362468 2:0.46336375 3:0.49268118 4:0.82332639 5:0.88132959 6:0.91765632
|
||||
-4 1:0.89144668 2:0.46336375 3:0.53894393 4:0.87349384 5:0.92016796 6:0.94654988
|
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv4.pkl
vendored
Normal file
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv4.pkl
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif_scale0'
|
||||
p16
|
||||
aS'vif_scale1'
|
||||
p17
|
||||
aS'vif_scale2'
|
||||
p18
|
||||
aS'vif_scale3'
|
||||
p19
|
||||
aS'adm2'
|
||||
p20
|
||||
aS'motion'
|
||||
p21
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p22
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p23
|
||||
(lp24
|
||||
S'VMAF_feature_adm2_score'
|
||||
p25
|
||||
aS'VMAF_feature_motion_score'
|
||||
p26
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p30
|
||||
asS'intercepts'
|
||||
p31
|
||||
(lp32
|
||||
F-0.01818181818181818
|
||||
aF-1.9715077269616803
|
||||
aF-0.03671084490620134
|
||||
aF-0.08203910092775053
|
||||
aF-0.2858058491124272
|
||||
aF-0.480167543060334
|
||||
aF-0.7764756920485143
|
||||
asS'model_type'
|
||||
p33
|
||||
S'LIBSVMNUSVR'
|
||||
p34
|
||||
sS'model'
|
||||
p35
|
||||
NsS'slopes'
|
||||
p36
|
||||
(lp37
|
||||
F0.009454545454545453
|
||||
aF2.9715077269616805
|
||||
aF0.05246778812837607
|
||||
aF1.0820390945805258
|
||||
aF1.2858061763913162
|
||||
aF1.4801682848883448
|
||||
aF1.7764765384047878
|
||||
ass.
|
153
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv4.pkl.model
vendored
Normal file
153
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxall_vmafv4.pkl.model
vendored
Normal file
@ -0,0 +1,153 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 146
|
||||
rho -1.32632
|
||||
SV
|
||||
-4 1:1 2:0.8030051 3:0.99999729 4:0.99999079 5:0.99998943 6:0.9999878
|
||||
4 1:1 2:0.038015823 3:0.99999928 4:0.99999873 5:0.99999804 6:0.99999741
|
||||
4 1:1 2:0.25848432 3:0.99999903 4:0.99998969 5:0.99999013 6:0.99998978
|
||||
1.807335200204975 1:1 2:0.29342488 3:0.99999592 4:0.99999846 5:0.99999788 6:0.9999974
|
||||
4 1:1 2:0.10677631 3:0.99999978 4:1 5:0.99999986 6:0.99999943
|
||||
4 1:1 3:0.99998133 4:0.999983 5:0.99997894 6:0.99997401
|
||||
-4 1:0.69877011 2:0.56444262 3:0.50921148 4:0.76710784 5:0.82670241 6:0.86490642
|
||||
-4 1:0.79766167 2:0.56444262 3:0.53823533 4:0.81897065 5:0.87312034 6:0.90157336
|
||||
-4 1:0.72184702 2:0.81184392 3:0.34146118 4:0.77233099 5:0.85139308 6:0.8911112
|
||||
-4 1:0.80161708 2:0.8030051 3:0.37137887 4:0.81441984 5:0.88205746 6:0.91458784
|
||||
4 1:0.82707859 2:0.8030051 3:0.39967972 4:0.85595164 5:0.9157471 6:0.94250616
|
||||
4 1:0.89751482 2:0.8030051 3:0.43471552 4:0.88766843 5:0.93741664 6:0.9585333
|
||||
4 1:0.94175377 2:0.8030051 3:0.46452669 4:0.9182414 5:0.9574509 6:0.97241904
|
||||
4 1:0.94886773 2:0.8030051 3:0.48597643 4:0.9305327 5:0.96475729 6:0.97745993
|
||||
-2.510361020090557 1:0.40868489 2:0.038015823 3:0.21781789 4:0.44794961 5:0.63031085 6:0.80683337
|
||||
-4 1:0.63428342 2:0.038015823 3:0.30849583 4:0.64202249 5:0.80802081 6:0.90863282
|
||||
-4 1:0.63517266 2:0.038015823 3:0.31217271 4:0.64691363 5:0.81222875 6:0.91233255
|
||||
-4 1:0.76722119 2:0.038015823 3:0.39695052 4:0.78959953 5:0.90634845 6:0.95720779
|
||||
-4 1:0.78174139 2:0.038015823 3:0.42163817 4:0.81669421 5:0.91935657 6:0.96453704
|
||||
4 1:0.91228761 2:0.038015823 3:0.61994475 4:0.94847901 5:0.97833681 6:0.98936287
|
||||
-4 1:0.99904905 2:0.038015823 3:0.93628712 4:0.99679004 5:0.99846782 6:0.99903209
|
||||
-4 1:0.58827977 2:0.25848432 3:0.14383844 4:0.73829094 5:0.81603677 6:0.85595957
|
||||
2.902362693360934 1:0.72787846 2:0.25848432 3:0.15680151 4:0.78772395 5:0.8630424 6:0.89601386
|
||||
4 1:0.73686951 2:0.25848432 3:0.16041931 4:0.8054275 5:0.8795366 6:0.91128178
|
||||
4 1:0.81448451 2:0.25848432 3:0.16789364 4:0.83127922 5:0.90072936 6:0.92855272
|
||||
4 1:0.83243025 2:0.25848432 3:0.17571056 4:0.85519703 5:0.91900384 6:0.94337939
|
||||
4 1:0.90008949 2:0.25848432 3:0.18526461 4:0.87114837 5:0.93120916 6:0.95345941
|
||||
-4 1:0.9417379 2:0.25848432 3:0.19310586 4:0.88842969 5:0.94366205 6:0.96310817
|
||||
-4 1:0.94484695 2:0.25848432 3:0.20141739 4:0.89806671 5:0.94947889 6:0.96737567
|
||||
4 1:0.47978606 2:0.29342488 3:0.37828753 4:0.59283997 5:0.6986829 6:0.76721953
|
||||
-4 1:0.67041246 2:0.29342488 3:0.43406042 4:0.69545545 5:0.78844497 6:0.83548565
|
||||
-4 1:0.68687171 2:0.29342488 3:0.4533295 4:0.73365473 5:0.8283423 6:0.87437613
|
||||
-4 1:0.78675347 2:0.29342488 3:0.50368236 4:0.80877338 5:0.88125545 6:0.91311785
|
||||
4 1:0.81048742 2:0.29342488 3:0.53929031 4:0.85927598 5:0.92157707 6:0.94661509
|
||||
4 1:0.91008577 2:0.29342488 3:0.64342603 4:0.92235378 5:0.95594401 6:0.97022052
|
||||
4 1:0.98034419 2:0.29342488 3:0.74867139 4:0.96174708 5:0.97865813 6:0.9855907
|
||||
-4 1:0.98374845 2:0.29342488 3:0.76761303 4:0.96943688 5:0.98331581 6:0.98886018
|
||||
4 1:0.21485039 2:0.48677022 3:0.11345038 4:0.17140411 5:0.2101569 6:0.24593902
|
||||
-4 1:0.41372739 2:0.48677022 3:0.14082884 4:0.24538952 5:0.29907456 6:0.33850931
|
||||
-4 1:0.47345302 2:0.48677022 3:0.16006938 4:0.3034939 5:0.37958679 6:0.43704105
|
||||
-4 1:0.59443212 2:0.48677022 3:0.19192638 4:0.37748708 5:0.45920897 6:0.51712537
|
||||
-4 1:0.67574515 2:0.48677022 3:0.23713622 4:0.49728842 5:0.59955195 6:0.6663985
|
||||
4 1:0.78992412 2:0.48677022 3:0.31211637 4:0.59455234 5:0.68412552 6:0.74174321
|
||||
4 1:0.88689388 2:0.48677022 3:0.41179694 4:0.71798944 5:0.79723708 6:0.84286184
|
||||
4 1:0.91206375 2:0.48677022 3:0.45966149 4:0.78017661 5:0.85110756 6:0.88888462
|
||||
4 1:0.29413383 2:0.10677631 3:0.19874924 4:0.40337922 5:0.61274472 6:0.8105974
|
||||
4 1:0.54963028 2:0.10677631 3:0.27738962 4:0.60155207 5:0.79900726 6:0.91107745
|
||||
4 1:0.55151187 2:0.10677631 3:0.27887687 4:0.60612125 5:0.80427185 6:0.91644232
|
||||
4 1:0.70981251 2:0.10677631 3:0.36218223 4:0.75727682 5:0.90334086 6:0.95976102
|
||||
4 1:0.73071821 2:0.10677631 3:0.38762586 4:0.78874054 5:0.91736487 6:0.96694371
|
||||
4 1:0.89553278 2:0.10677631 3:0.64450377 4:0.94508005 5:0.97969348 6:0.99102268
|
||||
-4 1:0.99960553 2:0.10677631 3:0.97746638 4:0.99901236 5:0.99947611 6:0.99962996
|
||||
-4 1:0.51836093 2:0.41417463 3:0.46738067 4:0.61522089 5:0.66393896 6:0.69033856
|
||||
-4 1:0.67524849 2:0.41417463 3:0.49668554 4:0.67097253 5:0.72838492 6:0.75985279
|
||||
-4 1:0.70028015 2:0.41417463 3:0.52098374 4:0.71662894 5:0.78064948 6:0.81645797
|
||||
-4 1:0.78642744 2:0.41417463 3:0.5461248 4:0.75910395 5:0.82175845 6:0.85532884
|
||||
4 1:0.90383507 2:0.41417463 3:0.64492493 4:0.88591045 5:0.92952674 6:0.94932761
|
||||
-4 1:0.96168905 2:0.41417463 3:0.68941955 4:0.93381569 5:0.96303272 6:0.97470906
|
||||
-4 1:0.97005681 2:0.41417463 3:0.71439359 4:0.95040237 5:0.97316178 6:0.98194096
|
||||
-4 1:0.56380049 2:0.31835223 3:0.69193697 4:0.78256967 5:0.81221005 6:0.82634328
|
||||
-4 1:0.69707209 2:0.31835223 3:0.72638362 4:0.83182981 5:0.86311597 6:0.87753352
|
||||
4 1:0.80573645 2:0.31835223 3:0.77507907 4:0.89690184 5:0.92487946 6:0.9374063
|
||||
4 1:0.84202195 2:0.31835223 3:0.81166689 4:0.93470572 5:0.95598757 6:0.96484279
|
||||
4 1:0.91272894 2:0.31835223 3:0.8436011 4:0.95907188 5:0.97354318 6:0.979415
|
||||
4 1:0.9686358 2:0.31835223 3:0.86670871 4:0.97955311 5:0.98803337 6:0.99122745
|
||||
4 1:0.97633312 2:0.31835223 3:0.87923717 4:0.98514841 5:0.99149005 6:0.99380957
|
||||
-4 1:0.65588273 3:0.5682756 4:0.86215027 5:0.91612413 6:0.93851985
|
||||
-4 1:0.7688504 3:0.61047319 4:0.91205526 5:0.94943272 6:0.96141581
|
||||
-4 1:0.77375719 3:0.61652077 4:0.91721776 5:0.95283683 6:0.96443685
|
||||
-4 1:0.84303094 3:0.65087011 4:0.94571492 5:0.96911258 6:0.97599917
|
||||
-4 1:0.859513 3:0.66891799 4:0.95471412 5:0.97396024 6:0.97998427
|
||||
4 1:0.92610378 3:0.72619437 4:0.97495675 5:0.98604062 6:0.98960284
|
||||
4 1:0.96469997 3:0.75060173 4:0.98615297 5:0.99340881 6:0.99571252
|
||||
4 1:1 2:0.025183075 3:0.99999941 4:0.99999574 5:0.99999491 6:0.99999593
|
||||
-4 1:1 2:0.73957936 3:1 4:0.9999995 5:0.99999914 6:0.99999875
|
||||
-4 1:1 2:0.95569244 3:0.99999937 4:0.99999802 5:0.99999697 6:0.99999632
|
||||
-4 1:1 2:0.65360757 3:0.99999736 4:0.99999482 5:0.99999327 6:0.99999186
|
||||
-4 1:1 2:0.69531342 3:0.99999853 4:0.99999627 5:0.99999468 6:0.99999297
|
||||
4 1:1 2:0.28383856 3:0.99999999 4:0.99999528 5:0.99999508 6:0.99999322
|
||||
-4 1:1 2:1 3:0.99999999 4:0.99999949 5:0.99999896 6:0.9999987
|
||||
-2.433009748878295 1:1 2:0.60349977 3:0.99999749 4:0.99999136 5:0.99999 6:0.99998873
|
||||
-4 1:0.37561501 2:0.34645426 3:0.14880892 4:0.39723988 5:0.55093369 6:0.66454538
|
||||
-4 1:0.56863072 2:0.34645426 3:0.19722036 4:0.53712785 5:0.68388172 6:0.76682187
|
||||
-4 1:0.59508041 2:0.34645426 3:0.22024317 4:0.59921562 5:0.7485305 6:0.8264393
|
||||
-4 1:0.73093101 2:0.34645426 3:0.27642153 4:0.71410968 5:0.8226547 6:0.87404565
|
||||
4 1:0.75725861 2:0.34645426 3:0.31892986 4:0.79653796 5:0.88902562 6:0.92720955
|
||||
4 1:0.88324205 2:0.34645426 3:0.44247265 4:0.89218395 5:0.93823649 6:0.95809467
|
||||
4 1:0.89330531 2:0.34645426 3:0.47413087 4:0.92095479 5:0.95660608 6:0.97126897
|
||||
-4 1:0.95081368 2:0.34645426 3:0.58448455 4:0.90977535 5:0.94729808 6:0.96305607
|
||||
4 1:0.95713957 2:0.34645426 3:0.61289525 4:0.92353134 5:0.95596795 6:0.96933354
|
||||
-4 1:0.52995072 2:0.025183075 3:0.38836184 4:0.75826373 5:0.84406609 6:0.89508423
|
||||
-4 1:0.53720256 2:0.025183075 3:0.40192329 4:0.78307203 5:0.86525381 6:0.91252574
|
||||
-4 1:0.69594771 2:0.025183075 3:0.42521979 4:0.8330908 5:0.90153311 6:0.93405062
|
||||
-4 1:0.70045697 2:0.025183075 3:0.43751926 4:0.85257099 5:0.91574681 6:0.94460461
|
||||
-4 1:0.81165203 2:0.025183075 3:0.45460835 4:0.88191737 5:0.93215888 6:0.95417335
|
||||
-2.173340096752099 1:0.9064202 2:0.025183075 3:0.48206869 4:0.9071518 5:0.9470606 6:0.96487315
|
||||
4 1:0.96394483 2:0.025183075 3:0.49883076 4:0.9230607 5:0.9578558 6:0.97233833
|
||||
4 1:0.97111669 2:0.025183075 3:0.52021085 4:0.94257658 5:0.97053128 6:0.98157252
|
||||
4 1:2.220446e-16 2:0.73957936 3:-1.3877788e-17 4:5.5511151e-17
|
||||
-4 1:0.60579537 2:0.73957936 3:0.12857951 4:0.40136241 5:0.52639591 6:0.61154456
|
||||
-4 1:0.75391998 2:0.73957936 3:0.18413975 4:0.49865908 5:0.61041927 6:0.68222311
|
||||
-4 1:0.81534386 2:0.73957936 3:0.23733655 4:0.60531333 5:0.71438921 6:0.77830168
|
||||
3.690302106434123 1:0.85601348 2:0.73957936 3:0.28558237 4:0.68675229 5:0.78660791 6:0.84081181
|
||||
4 1:0.89148224 2:0.73957936 3:0.3409056 4:0.76416987 5:0.84941558 6:0.89195694
|
||||
-1.271874187873331 1:0.1754006 2:0.95569244 3:0.10791346 4:0.14680138 5:0.16845189 6:0.17979297
|
||||
-4 1:0.45636047 2:0.95569244 3:0.16953359 4:0.29339239 5:0.37053194 6:0.42928841
|
||||
-4 1:0.76725045 2:0.95569244 3:0.3199056 4:0.58267543 5:0.68446781 6:0.74947444
|
||||
4 1:0.86571468 2:0.95569244 3:0.40217281 4:0.72326223 5:0.81343054 6:0.86237369
|
||||
4 1:0.90357654 2:0.95569244 3:0.46813214 4:0.8036618 5:0.87757159 6:0.91422921
|
||||
4 1:0.92841067 2:0.95569244 3:0.52583662 4:0.85994278 5:0.91777955 6:0.94444287
|
||||
4 1:0.057190813 2:0.65360757 3:0.088546983 4:0.08489065 5:0.063710047 6:0.018497865
|
||||
4 1:0.4633528 2:0.65360757 3:0.16931489 4:0.27746204 5:0.32957949 6:0.36452535
|
||||
4 1:0.57170849 2:0.65360757 3:0.20775152 4:0.35490039 5:0.42421223 6:0.47398047
|
||||
4 1:0.61771166 2:0.65360757 3:0.21359395 4:0.38823433 5:0.46552238 6:0.51658141
|
||||
4 1:0.64058555 2:0.65360757 3:0.24532275 4:0.433707 5:0.5190611 6:0.58093764
|
||||
4 1:0.68648384 2:0.65360757 3:0.25117129 4:0.46847919 5:0.55943113 6:0.61867492
|
||||
4 1:0.79302622 2:0.65360757 3:0.33630494 4:0.629892 5:0.72893633 6:0.78645585
|
||||
4 1:0.86050673 2:0.65360757 3:0.41611988 4:0.75124872 5:0.83579174 6:0.87875592
|
||||
4 1:0.89790018 2:0.65360757 3:0.48011754 4:0.82547834 5:0.89218436 6:0.92303961
|
||||
4 1:0.29904526 2:0.69531342 3:0.25388315 4:0.42468328 5:0.52818056 6:0.61044403
|
||||
4 1:0.56768372 2:0.69531342 3:0.33757382 4:0.61717352 5:0.73687058 6:0.80630558
|
||||
4 1:0.69534457 2:0.69531342 3:0.35302074 4:0.63336871 5:0.73527483 6:0.79288091
|
||||
4 1:0.75945312 2:0.69531342 3:0.46462989 4:0.82460745 5:0.90086281 6:0.93411717
|
||||
-0.01141494640575525 1:0.93943015 2:0.69531342 3:0.55750662 4:0.87351791 5:0.92517572 6:0.94832031
|
||||
-4 1:0.98364831 2:0.69531342 3:0.76920047 4:0.97447972 5:0.98666061 6:0.99114208
|
||||
4 1:0.32003025 2:0.28383856 3:0.044665195 4:0.39766692 5:0.56732669 6:0.70652029
|
||||
-4 1:0.56695519 2:0.28383856 3:0.096622337 4:0.59717873 5:0.75893387 6:0.84265862
|
||||
-4 1:0.70520449 2:0.28383856 3:0.13297753 4:0.68083625 5:0.80204185 6:0.8608337
|
||||
-4 1:0.73424539 2:0.28383856 3:0.16186552 4:0.77936913 5:0.88146282 6:0.92299088
|
||||
4 1:0.8695414 2:0.28383856 3:0.25145782 4:0.86353422 5:0.92242861 6:0.94817197
|
||||
4 1:0.87335334 2:0.28383856 3:0.26005157 4:0.87688405 5:0.93121026 6:0.95449853
|
||||
4 1:0.95158906 2:0.28383856 3:0.31261683 4:0.90736454 5:0.95137819 6:0.9685259
|
||||
-4 1:0.4815428 2:1 3:0.061536953 4:0.28565784 5:0.37684552 6:0.44080166
|
||||
-4 1:0.59467 2:1 3:0.10166264 4:0.43889626 5:0.55930869 6:0.63557174
|
||||
4 1:0.67663613 2:1 3:0.12780958 4:0.46795265 5:0.57738143 6:0.64923049
|
||||
4 1:0.72783807 2:1 3:0.15711041 4:0.55134409 5:0.66305237 6:0.73186017
|
||||
-4 1:0.79298469 2:1 3:0.17873176 4:0.59206595 5:0.70160442 6:0.76500248
|
||||
4 1:0.84189744 2:1 3:0.22057684 4:0.68154534 5:0.78312756 6:0.83712587
|
||||
4 1:0.87583173 2:1 3:0.25845185 4:0.750957 5:0.84062665 6:0.88486359
|
||||
-4 1:0.93224076 2:1 3:0.34967328 4:0.87263679 5:0.92874269 6:0.9524502
|
||||
-4 1:0.94593929 2:1 3:0.38363181 4:0.90195369 5:0.94721313 6:0.96546559
|
||||
-4 1:0.51879581 2:0.60349977 3:0.30613996 4:0.55018829 5:0.6350736 6:0.69921848
|
||||
-4 1:0.69563366 2:0.60349977 3:0.39213515 4:0.69127303 5:0.77191062 6:0.82345731
|
||||
-4 1:0.78343124 2:0.60349977 3:0.43249771 4:0.74714033 5:0.81818514 6:0.86246184
|
||||
-4 1:0.8236257 2:0.60349977 3:0.49339213 4:0.82858556 5:0.88579014 6:0.91928421
|
||||
-4 1:0.89144739 2:0.60349977 3:0.5428863 4:0.87835737 5:0.92321475 6:0.94810537
|
@ -0,0 +1,78 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F3.1
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.1
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif'
|
||||
p16
|
||||
aS'adm'
|
||||
p17
|
||||
aS'motion'
|
||||
p18
|
||||
aS'ansnr'
|
||||
p19
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p20
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p21
|
||||
(lp22
|
||||
S'VMAF_feature_adm_score'
|
||||
p23
|
||||
aS'VMAF_feature_ansnr_score'
|
||||
p24
|
||||
aS'VMAF_feature_motion_score'
|
||||
p25
|
||||
aS'VMAF_feature_vif_score'
|
||||
p26
|
||||
asS'intercepts'
|
||||
p27
|
||||
(lp28
|
||||
F-0.1909090909090909
|
||||
aF-1.635828565827225
|
||||
aF-0.5027725296167747
|
||||
aF-0.022214587359292954
|
||||
aF-0.12191917348723096
|
||||
asS'model_type'
|
||||
p29
|
||||
S'LIBSVMNUSVR'
|
||||
p30
|
||||
sS'model'
|
||||
p31
|
||||
NsS'slopes'
|
||||
p32
|
||||
(lp33
|
||||
F0.010909090909090908
|
||||
aF2.635828565827225
|
||||
aF0.030306790717580585
|
||||
aF0.06846153126171134
|
||||
aF1.121919173487231
|
||||
ass.
|
@ -0,0 +1,152 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.1
|
||||
nr_class 2
|
||||
total_sv 145
|
||||
rho -0.518509
|
||||
SV
|
||||
-1.908779772857038 1:1 2:0.9023797 3:0.80360073 4:1
|
||||
3.1 1:1 2:0.6268493 3:0.060660457 4:1
|
||||
-3.1 1:1 2:0.82419551 3:0.25800309 4:1
|
||||
3.1 1:1 2:0.60150691 3:0.13125463 4:1
|
||||
-3.1 1:1 2:0.81706577 3:0.41227705 4:1
|
||||
-3.1 1:1 2:0.86043223 3:0.3173053 4:1
|
||||
-3.1 1:0.500758 2:0.44434935 3:0.80360073 4:0.25504335
|
||||
-3.1 1:0.66395488 2:0.49545656 3:0.80360073 4:0.30315084
|
||||
-3.1 1:0.68710445 2:0.51616008 3:0.80360073 4:0.32840241
|
||||
3.1 1:0.77682167 2:0.55184234 3:0.80360073 4:0.36126897
|
||||
3.1 1:0.80552743 2:0.57886981 3:0.80360073 4:0.3952589
|
||||
3.1 1:0.88273764 2:0.61682479 3:0.80360073 4:0.43234181
|
||||
-3.1 1:0.93116188 2:0.65752339 3:0.80360073 4:0.46598966
|
||||
3.1 1:0.93943344 2:0.67382416 3:0.80360073 4:0.48875504
|
||||
-3.1 1:0.44111817 2:0.13943156 3:0.060660457 4:0.23164915
|
||||
-3.1 1:0.65519079 2:0.2182804 3:0.060660457 4:0.35101052
|
||||
-3.1 1:0.77999724 2:0.29259565 3:0.060660457 4:0.44902479
|
||||
3.1 1:0.79372033 2:0.31017378 3:0.060660457 4:0.4749309
|
||||
3.1 1:0.91710352 2:0.45437437 3:0.060660457 4:0.66549345
|
||||
3.1 1:0.99910085 2:0.62307047 3:0.060660457 4:0.94344783
|
||||
3.1 1:0.70228825 2:0.41065868 3:0.25800309 4:0.16020672
|
||||
3.1 1:0.71225044 2:0.41933192 3:0.25800309 4:0.16684779
|
||||
3.1 1:0.79683949 2:0.43826809 3:0.25800309 4:0.17816881
|
||||
3.1 1:0.81652281 2:0.45300881 3:0.25800309 4:0.19016999
|
||||
3.1 1:0.89025411 2:0.468107 3:0.25800309 4:0.20163548
|
||||
-3.1 1:0.93569958 2:0.48157676 3:0.25800309 4:0.21208644
|
||||
3.1 1:0.93913288 2:0.49123252 3:0.25800309 4:0.22195992
|
||||
-3.1 1:0.66703242 2:0.24861296 3:0.29975901 4:0.34248223
|
||||
-3.1 1:0.68361815 2:0.26524478 3:0.29975901 4:0.36982031
|
||||
-3.1 1:0.78457344 2:0.32209063 3:0.29975901 4:0.43388438
|
||||
3.1 1:0.80856316 2:0.35113715 3:0.29975901 4:0.47936171
|
||||
3.1 1:0.90912597 2:0.4570275 3:0.29975901 4:0.59104161
|
||||
-1.95125371595871 1:0.98011205 2:0.57256903 3:0.29975901 4:0.69987699
|
||||
-3.1 1:0.98354192 2:0.5885804 3:0.29975901 4:0.72038426
|
||||
0.8928938865007994 1:0.23737343 2:0.092648467 3:0.49240306 4:0.074975226
|
||||
-3.1 1:0.43053262 2:0.12481478 3:0.49240306 4:0.11338352
|
||||
-3.1 1:0.48855711 2:0.150659 3:0.49240306 4:0.14217743
|
||||
-3.1 1:0.60605382 2:0.18559397 3:0.49240306 4:0.18417781
|
||||
-3.1 1:0.68505081 2:0.23614196 3:0.49240306 4:0.24718934
|
||||
-3.1 1:0.79592925 2:0.30063732 3:0.49240306 4:0.33000913
|
||||
-3.1 1:0.89013303 2:0.39057937 3:0.49240306 4:0.43942102
|
||||
3.1 1:0.91458482 2:0.43330721 3:0.49240306 4:0.49236913
|
||||
3.1 1:0.32769235 2:0.11805063 3:0.13125463 4:0.15797584
|
||||
3.1 1:0.57102853 2:0.18673101 3:0.13125463 4:0.2692099
|
||||
3.1 1:0.57282199 2:0.18739048 3:0.13125463 4:0.27170222
|
||||
3.1 1:0.72359309 2:0.2571562 3:0.13125463 4:0.37594831
|
||||
3.1 1:0.74350533 2:0.27830189 3:0.13125463 4:0.40502819
|
||||
3.1 1:0.90049487 2:0.43091367 3:0.13125463 4:0.66579618
|
||||
1.439296923646941 1:0.99962385 2:0.60052019 3:0.13125463 4:0.97801244
|
||||
-3.1 1:0.48038412 2:0.23379852 3:0.41227705 4:0.18361558
|
||||
-3.1 1:0.6494774 2:0.27837021 3:0.41227705 4:0.22867305
|
||||
-3.1 1:0.67648047 2:0.3096224 3:0.41227705 4:0.26662141
|
||||
-3.1 1:0.76923458 2:0.34709787 3:0.41227705 4:0.30394459
|
||||
-3.1 1:0.8956297 2:0.46193279 3:0.41227705 4:0.44146699
|
||||
-3.1 1:0.95803953 2:0.52505896 3:0.41227705 4:0.50173907
|
||||
-3.1 1:0.96714842 2:0.55388193 3:0.41227705 4:0.53377919
|
||||
3.1 1:0.48186529 2:0.28840495 3:0.3173053 4:0.35029221
|
||||
3.1 1:0.63910783 2:0.34199561 3:0.3173053 4:0.40973951
|
||||
3.1 1:0.67242576 2:0.37411679 3:0.3173053 4:0.44891858
|
||||
3.1 1:0.76844641 2:0.42165442 3:0.3173053 4:0.49511208
|
||||
3.1 1:0.81232229 2:0.47549925 3:0.3173053 4:0.5571142
|
||||
3.1 1:0.89573129 2:0.53507396 3:0.3173053 4:0.6057181
|
||||
3.1 1:0.96198872 2:0.59867279 3:0.3173053 4:0.64581725
|
||||
1.375294662803866 1:0.97130686 2:0.62463226 3:0.3173053 4:0.6670586
|
||||
-3.1 1:0.51091654 2:0.36753212 4:0.32122832
|
||||
-3.1 1:0.67131199 2:0.40988734 4:0.37624653
|
||||
-3.1 1:0.67853479 2:0.41802337 4:0.38490923
|
||||
-3.1 1:0.77668766 2:0.4530568 4:0.42714338
|
||||
-3.1 1:0.80010279 2:0.47295605 4:0.44945901
|
||||
-2.649966511184513 1:0.94867588 2:0.55053174 4:0.55259659
|
||||
-3.1 1:0.95202741 2:0.56265542 4:0.56679466
|
||||
-3.1 1:1 2:0.83216729 3:0.65112312 4:1
|
||||
-3.1 1:1 2:0.84061366 3:0.70765261 4:1
|
||||
-3.1 1:1 2:0.71738209 3:0.27988388 4:1
|
||||
3.1 1:1 2:0.54793197 3:1 4:1
|
||||
-3.1 1:1 2:1 3:0.60048989 4:1
|
||||
-3.1 1:0.36338045 2:0.20017167 3:0.35216405 4:0.19030002
|
||||
-3.1 1:0.56016075 2:0.2511454 3:0.35216405 4:0.25418659
|
||||
-3.1 1:0.58720387 2:0.26591235 3:0.35216405 4:0.28451975
|
||||
-3.1 1:0.72561366 2:0.32432484 3:0.35216405 4:0.34947968
|
||||
3.1 1:0.7525563 2:0.34866202 3:0.35216405 4:0.3991584
|
||||
3.1 1:0.88089009 2:0.45568174 3:0.35216405 4:0.51691346
|
||||
3.1 1:0.89118788 2:0.47211671 3:0.35216405 4:0.54829173
|
||||
3.1 1:0.94970136 2:0.54170694 3:0.35216405 4:0.63661853
|
||||
3.1 1:0.95617102 2:0.55602795 3:0.35216405 4:0.66263285
|
||||
3.1 1:0.96902859 2:0.58505878 3:0.35216405 4:0.72053996
|
||||
-3.1 1:0.49691615 2:0.56424104 3:0.024932462 4:0.45200919
|
||||
-3.1 1:0.50469145 2:0.57181443 3:0.024932462 4:0.46818436
|
||||
-3.1 1:0.67458252 2:0.62423542 3:0.024932462 4:0.49597011
|
||||
-3.1 1:0.67941593 2:0.6324076 3:0.024932462 4:0.50994261
|
||||
-3.1 1:0.79839909 2:0.68132931 3:0.024932462 4:0.52861368
|
||||
3.1 1:0.8998255 2:0.73591865 3:0.024932462 4:0.555713
|
||||
3.1 1:0.96138923 2:0.76908851 3:0.024932462 4:0.57268419
|
||||
3.1 1:0.96906849 2:0.7906865 3:0.024932462 4:0.59393192
|
||||
3.1 1:0.028315453 2:0.029721262 3:0.73888524
|
||||
-3.1 1:0.61695399 2:0.18704248 3:0.73888524 4:0.1814112
|
||||
-3.1 1:0.7608844 2:0.25428655 3:0.73888524 4:0.24370254
|
||||
-3.1 1:0.82057107 2:0.30563046 3:0.73888524 4:0.30618093
|
||||
-3.1 1:0.86008714 2:0.34853999 3:0.73888524 4:0.35992967
|
||||
-3.1 1:0.89455431 2:0.39394543 3:0.73888524 4:0.41860883
|
||||
-3.1 1:0.93054994 2:0.45158749 3:0.73888524 4:0.49788181
|
||||
-3.1 1:0.16873718 2:0.15491045 3:0.95719598 4:0.079392181
|
||||
-3.1 1:0.45188506 2:0.22731935 3:0.95719598 4:0.16130023
|
||||
-3.1 1:0.69176657 2:0.33745528 3:0.95719598 4:0.30827001
|
||||
-3.1 1:0.76536179 2:0.36671253 3:0.95719598 4:0.34343984
|
||||
-3.1 1:0.86463628 2:0.44598536 3:0.95719598 4:0.43860171
|
||||
3.1 1:0.90279382 2:0.49917048 3:0.95719598 4:0.50883156
|
||||
3.1 1:0.9278218 2:0.54448511 3:0.95719598 4:0.56756291
|
||||
3.1 1:2.220446e-16 2:0.23907071 3:0.65112312 4:0.038179135
|
||||
3.1 1:0.42756068 2:0.33322794 3:0.65112312 4:0.144644
|
||||
3.1 1:0.54211376 2:0.37139949 3:0.65112312 4:0.1921988
|
||||
3.1 1:0.59120008 2:0.38742794 3:0.65112312 4:0.20324125
|
||||
3.1 1:0.61558961 2:0.40700327 3:0.65112312 4:0.23911229
|
||||
3.1 1:0.66410067 2:0.42453917 3:0.65112312 4:0.25030438
|
||||
3.1 1:0.77796278 2:0.50015434 3:0.65112312 4:0.35266323
|
||||
3.1 1:0.850087 2:0.56409596 3:0.65112312 4:0.44272339
|
||||
3.1 1:0.89007769 2:0.6105181 3:0.65112312 4:0.51063948
|
||||
3.1 1:0.2919114 2:0.32670389 3:0.70765261 4:0.16789622
|
||||
3.1 1:0.56327043 2:0.41097052 3:0.70765261 4:0.28869814
|
||||
-3.1 1:0.69223575 2:0.44677163 3:0.70765261 4:0.30435865
|
||||
3.1 1:0.7570134 2:0.52053937 3:0.70765261 4:0.45274665
|
||||
-3.1 1:0.93882855 2:0.64245784 3:0.70765261 4:0.54772182
|
||||
3.1 1:0.30992869 2:0.24744957 3:0.27988388 4:0.08636103
|
||||
-3.1 1:0.56052264 2:0.31230263 3:0.27988388 4:0.16193225
|
||||
-3.1 1:0.70082836 2:0.36112001 3:0.27988388 4:0.2051139
|
||||
3.1 1:0.73029842 2:0.38872215 3:0.27988388 4:0.2447673
|
||||
3.1 1:0.86760546 2:0.48182811 3:0.27988388 4:0.33403096
|
||||
3.1 1:0.87147234 2:0.48882625 3:0.27988388 4:0.34344882
|
||||
3.1 1:0.95086917 2:0.55599973 3:0.27988388 4:0.39368584
|
||||
3.1 1:0.03020499 3:1 4:0.010458785
|
||||
-3.1 1:0.47261196 2:0.084491417 3:1 4:0.097458927
|
||||
-3.1 1:0.58771434 2:0.13408384 3:1 4:0.1573028
|
||||
3.1 1:0.67102703 2:0.16297436 3:1 4:0.1833146
|
||||
3.1 1:0.72313816 2:0.19544136 3:1 4:0.22168406
|
||||
3.1 1:0.78939255 2:0.22653651 3:1 4:0.24606121
|
||||
3.1 1:0.83915519 2:0.27026774 3:1 4:0.29560442
|
||||
3.1 1:0.87367366 2:0.30750931 3:1 4:0.33839465
|
||||
-3.1 1:0.93106101 2:0.38632703 3:1 4:0.43396065
|
||||
2.802514527048651 1:0.94499913 2:0.41008163 3:1 4:0.46699577
|
||||
-3.1 1:0.47596853 2:0.4846003 3:0.60048989 4:0.30839395
|
||||
-3.1 1:0.6683492 2:0.56626182 3:0.60048989 4:0.40875179
|
||||
-3.1 1:0.76380856 2:0.60596099 3:0.60048989 4:0.45269953
|
||||
-3.1 1:0.8078454 2:0.66094735 3:0.60048989 4:0.52147761
|
||||
3.1 1:0.88161084 2:0.71273046 3:0.60048989 4:0.57004196
|
||||
3.1 1:0.93055934 2:0.73684772 3:0.60048989 4:0.57987786
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,77 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'none'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'custom_clip_0to1_map'
|
||||
p8
|
||||
(dp9
|
||||
S'VMAF_feature_adm_scale0_score'
|
||||
p10
|
||||
(lp11
|
||||
F0.0
|
||||
aF0.5
|
||||
assS'nu'
|
||||
p12
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p13
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p14
|
||||
(dp15
|
||||
g4
|
||||
g5
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p16
|
||||
(lp17
|
||||
S'VMAF_feature_adm2_score'
|
||||
p18
|
||||
aS'VMAF_feature_motion_score'
|
||||
p19
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p20
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p21
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p22
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p23
|
||||
asS'model_type'
|
||||
p24
|
||||
S'LIBSVMNUSVR'
|
||||
p25
|
||||
sS'model'
|
||||
p26
|
||||
NsS'feature_dict'
|
||||
p27
|
||||
(dp28
|
||||
S'VMAF_feature'
|
||||
p29
|
||||
(lp30
|
||||
S'vif_scale0'
|
||||
p31
|
||||
aS'vif_scale1'
|
||||
p32
|
||||
aS'vif_scale2'
|
||||
p33
|
||||
aS'vif_scale3'
|
||||
p34
|
||||
aS'adm2'
|
||||
p35
|
||||
aS'motion'
|
||||
p36
|
||||
asss.
|
@ -0,0 +1,152 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 145
|
||||
rho -71.4237
|
||||
SV
|
||||
4 1:1 2:12.533413 3:0.9999975 4:0.99999258 5:0.99999236 6:0.99999266
|
||||
4 1:1 2:1.2599153 3:0.99999934 4:0.99999876 5:0.99999818 6:0.99999807
|
||||
4 1:1 2:4.5089165 3:0.99999911 4:0.99999173 5:0.99999283 6:0.99999377
|
||||
4 1:1 2:5.0238287 3:0.99999624 4:0.99999855 5:0.99999806 6:0.99999806
|
||||
4 1:1 2:7.8731214 3:0.99999988 4:0.99999971 5:0.9999995 6:0.99999952
|
||||
4 1:1 2:2.2732251 3:0.9999998 4:0.99999975 5:0.9999994 6:0.9999992
|
||||
4 1:1 2:6.8032943 3:0.99998855 4:0.99999204 5:0.99999101 6:0.99999066
|
||||
4 1:1 2:5.3911783 3:0.99998973 4:0.9999925 5:0.99999152 6:0.99999104
|
||||
4 1:1 2:0.69968349 3:0.99998275 4:0.99998653 5:0.99998527 6:0.99998489
|
||||
-4 1:0.84896634 2:12.533413 3:0.33895021 4:0.73552419 5:0.82587986 6:0.88518901
|
||||
-4 1:0.89902399 2:12.533413 3:0.37506725 4:0.79150984 5:0.87103572 6:0.91598638
|
||||
-4 1:0.9058092 2:12.533413 3:0.39291047 4:0.82191427 5:0.8974504 6:0.93697579
|
||||
4 1:0.94180684 2:12.533413 3:0.44519539 4:0.88797014 5:0.94307833 6:0.96763555
|
||||
4 1:0.96551071 2:12.533413 3:0.47757481 4:0.91263699 5:0.95771825 6:0.97665742
|
||||
4 1:0.98039843 2:12.533413 3:0.50512574 4:0.93641427 5:0.97125337 6:0.98447387
|
||||
4 1:0.98279248 2:12.533413 3:0.52494917 4:0.94597348 5:0.97618956 6:0.98731145
|
||||
-4 1:0.80100502 2:1.2599153 3:0.27712214 4:0.5706579 5:0.75023794 6:0.89126371
|
||||
-4 1:0.87692558 2:1.2599153 3:0.36092497 4:0.72159269 5:0.87029858 6:0.94856784
|
||||
-4 1:0.87722484 2:1.2599153 3:0.36432308 4:0.72539664 5:0.87314146 6:0.95065046
|
||||
-4 1:0.92166307 2:1.2599153 3:0.44267312 4:0.83636663 5:0.93672862 6:0.97591127
|
||||
4 1:0.97048219 2:1.2599153 3:0.64876015 4:0.95993073 5:0.98536387 6:0.99401176
|
||||
4 1:0.99967998 2:1.2599153 3:0.94111777 4:0.99750329 5:0.99896436 6:0.99945468
|
||||
-4 1:0.861444 2:4.5089165 3:0.20875174 4:0.7964628 5:0.87571415 6:0.91891743
|
||||
-4 1:0.90842308 2:4.5089165 3:0.22073196 4:0.83490795 5:0.9074711 6:0.94146448
|
||||
-4 1:0.91144883 2:4.5089165 3:0.22407546 4:0.84867639 5:0.91861457 6:0.95005897
|
||||
4 1:0.94360784 2:4.5089165 3:0.23820735 4:0.88738326 5:0.94527859 6:0.9681271
|
||||
4 1:0.96637717 2:4.5089165 3:0.24703702 4:0.89978897 5:0.95352448 6:0.97380127
|
||||
4 1:0.98039308 2:4.5089165 3:0.25428375 4:0.91322904 5:0.96193765 6:0.97923267
|
||||
4 1:0.98143937 2:4.5089165 3:0.26196511 4:0.92072397 5:0.96586749 6:0.98163489
|
||||
-4 1:0.82493266 2:5.0238287 3:0.42542513 4:0.68334236 5:0.79643001 6:0.8689646
|
||||
-4 1:0.88908407 2:5.0238287 3:0.47696938 4:0.76314869 5:0.85707317 6:0.90739242
|
||||
-4 1:0.89462309 2:5.0238287 3:0.49477751 4:0.79285712 5:0.88402775 6:0.92928433
|
||||
-4 1:0.92823625 2:5.0238287 3:0.54131266 4:0.85127856 5:0.91977582 6:0.95109252
|
||||
4 1:0.96974121 2:5.0238287 3:0.6704611 4:0.93961256 5:0.97023532 6:0.9832363
|
||||
4 1:0.99338524 2:5.0238287 3:0.76772688 4:0.9702496 5:0.98558096 6:0.99188836
|
||||
4 1:0.99453087 2:5.0238287 3:0.78523237 4:0.97623013 5:0.98872768 6:0.99372879
|
||||
-4 1:0.735774 2:7.8731214 3:0.18066767 4:0.35558233 5:0.46638241 6:0.57552953
|
||||
-4 1:0.80270198 2:7.8731214 3:0.20597032 4:0.41312243 5:0.52645507 6:0.62763846
|
||||
-4 1:0.82280141 2:7.8731214 3:0.22375207 4:0.4583115 5:0.58084904 6:0.68310316
|
||||
-4 1:0.86351445 2:7.8731214 3:0.2531937 4:0.51585763 5:0.6346417 6:0.72818359
|
||||
-4 1:0.89087868 2:7.8731214 3:0.29497578 4:0.60902979 5:0.72945726 6:0.81221123
|
||||
-2.91118935619693 1:0.92930327 2:7.8731214 3:0.36427101 4:0.6846741 5:0.78659506 6:0.85462367
|
||||
4 1:0.96193645 2:7.8731214 3:0.4563939 4:0.78067388 5:0.8630131 6:0.91154457
|
||||
4 1:0.97040686 2:7.8731214 3:0.50062941 4:0.82903822 5:0.89940794 6:0.93745134
|
||||
-4 1:0.76245521 2:2.2732251 3:0.25949926 4:0.53599452 5:0.73837027 6:0.89338253
|
||||
-4 1:0.8484373 2:2.2732251 3:0.33217721 4:0.69011795 5:0.86420904 6:0.94994395
|
||||
-4 1:0.84907052 2:2.2732251 3:0.33355169 4:0.6936715 5:0.86776579 6:0.9529639
|
||||
4 1:0.9648437 2:2.2732251 3:0.67145713 4:0.95728728 5:0.98628044 6:0.99494608
|
||||
4 1:0.99986725 2:2.2732251 3:0.97917486 4:0.99923164 5:0.99964556 6:0.99979122
|
||||
-4 1:0.83791425 2:6.8032943 3:0.50776333 4:0.70074849 5:0.77295705 6:0.82568738
|
||||
-4 1:0.89071154 2:6.8032943 3:0.53484634 4:0.74410778 5:0.81649666 6:0.86481777
|
||||
-4 1:0.89913543 2:6.8032943 3:0.55730227 4:0.77961578 5:0.85180654 6:0.89668151
|
||||
-4 1:0.92812654 2:6.8032943 3:0.58053715 4:0.81264954 5:0.87957971 6:0.91856239
|
||||
4 1:0.96763766 2:6.8032943 3:0.67184636 4:0.91126977 5:0.95238785 6:0.97147542
|
||||
4 1:0.98710724 2:6.8032943 3:0.71296745 4:0.94852674 5:0.97502444 6:0.98576295
|
||||
4 1:0.98992323 2:6.8032943 3:0.73604798 4:0.96142657 5:0.98186763 6:0.98983387
|
||||
-4 1:0.853206 2:5.3911783 3:0.715294 4:0.83089935 5:0.87312882 6:0.90224607
|
||||
-4 1:0.89805582 2:5.3911783 3:0.74712894 4:0.86921006 5:0.90752081 6:0.93106167
|
||||
-4 1:0.90728193 2:5.3911783 3:0.76689204 4:0.89270712 5:0.92858154 6:0.949143
|
||||
-4 1:0.93462458 2:5.3911783 3:0.79213235 4:0.91981802 5:0.94924815 6:0.96476477
|
||||
0.1125141694350817 1:0.94683573 2:5.3911783 3:0.82594612 4:0.94921894 5:0.97026475 6:0.98020911
|
||||
4 1:0.97063071 2:5.3911783 3:0.85545911 4:0.96816904 5:0.9821253 6:0.98841198
|
||||
4 1:0.98944502 2:5.3911783 3:0.87681472 4:0.98409775 5:0.99191486 6:0.99506135
|
||||
4 1:0.9920354 2:5.3911783 3:0.88839329 4:0.98844934 5:0.99425018 6:0.99651485
|
||||
-4 1:0.88419439 2:0.69968349 3:0.60100851 4:0.89279095 5:0.94333305 6:0.96539161
|
||||
-4 1:0.92221134 2:0.69968349 3:0.64000672 4:0.93160317 5:0.9658363 6:0.97828002
|
||||
-4 1:0.92386262 2:0.69968349 3:0.64559578 4:0.93561816 5:0.96813612 6:0.9799806
|
||||
-4 1:0.94717528 2:0.69968349 3:0.67734079 4:0.95778103 5:0.979132 6:0.98648917
|
||||
4 1:0.97513174 2:0.69968349 3:0.74695404 4:0.98052305 5:0.99056856 6:0.99414684
|
||||
4 1:0.9881205 2:0.69968349 3:0.76951085 4:0.98923061 5:0.9955465 6:0.99758605
|
||||
4 1:0.98891621 2:0.69968349 3:0.77725545 4:0.99023068 5:0.99599907 6:0.99786338
|
||||
4 1:1 2:5.8053123 3:0.99999983 4:0.99999919 5:0.99999875 6:0.99999879
|
||||
4 1:1 2:1.0708016 3:0.99999946 4:0.99999643 5:0.99999606 6:0.99999723
|
||||
4 1:1 2:11.59872 3:1 4:0.99999936 5:0.99999892 6:0.99999882
|
||||
4 1:1 2:14.783537 3:0.99999942 4:0.99999821 5:0.99999745 6:0.99999745
|
||||
4 1:1 2:10.331771 3:0.99999757 4:0.99999572 5:0.99999495 6:0.99999494
|
||||
4 1:1 2:10.946382 3:0.99999865 4:0.99999684 5:0.9999959 6:0.99999556
|
||||
4 1:1 2:4.882557 3:1 4:0.99999607 5:0.99999618 6:0.99999571
|
||||
4 1:1 2:15.436489 3:0.99999999 4:0.99999935 5:0.9999988 6:0.99999879
|
||||
4 1:1 2:9.593342 3:0.99999769 4:0.99999303 5:0.99999274 6:0.99999318
|
||||
-4 1:0.78987603 2:5.8053123 3:0.21334536 4:0.53121982 5:0.69661081 6:0.81116809
|
||||
-4 1:0.85483151 2:5.8053123 3:0.2580863 4:0.6400138 5:0.78643035 6:0.86874075
|
||||
-4 1:0.86373262 2:5.8053123 3:0.27936354 4:0.68830084 5:0.83010699 6:0.90230012
|
||||
-4 1:0.90945035 2:5.8053123 3:0.33128252 4:0.7776565 5:0.88018522 6:0.9290983
|
||||
4 1:0.9607075 2:5.8053123 3:0.48474381 4:0.91614881 5:0.95827214 6:0.97641051
|
||||
4 1:0.96409409 2:5.8053123 3:0.51400174 4:0.93852453 5:0.97068262 6:0.98382648
|
||||
4 1:0.98344735 2:5.8053123 3:0.61598851 4:0.92983003 5:0.96439414 6:0.97920334
|
||||
4 1:0.9855762 2:5.8053123 3:0.64224514 4:0.94052837 5:0.9702515 6:0.98273701
|
||||
4 1:0.98980868 2:5.8053123 3:0.70176719 4:0.96001502 5:0.98053015 6:0.9888236
|
||||
-4 1:0.84181455 2:1.0708016 3:0.43473563 4:0.81199608 5:0.89465073 6:0.94094117
|
||||
-4 1:0.84425501 2:1.0708016 3:0.44726886 4:0.83129005 5:0.90896513 6:0.95075921
|
||||
-4 1:0.89767743 2:1.0708016 3:0.46879904 4:0.87019075 5:0.93347538 6:0.96287583
|
||||
-4 1:0.89919494 2:1.0708016 3:0.48016597 4:0.88534093 5:0.94307814 6:0.96881679
|
||||
-3.640230481023945 1:0.93661535 2:1.0708016 3:0.4959594 4:0.90816427 5:0.95416611 6:0.97420315
|
||||
4 1:0.96850764 2:1.0708016 3:0.52133772 4:0.92778964 5:0.9642337 6:0.9802262
|
||||
4 1:0.98786637 2:1.0708016 3:0.53682891 4:0.94016235 5:0.97152693 6:0.98442844
|
||||
4 1:0.99027992 2:1.0708016 3:0.55658798 4:0.95534028 5:0.98009047 6:0.98962647
|
||||
-4 1:0.6634705 2:11.59872 3:0.07581898 4:0.22227755 5:0.32440064 6:0.4370875
|
||||
-4 1:0.86733851 2:11.59872 3:0.19464972 4:0.53442601 5:0.68003312 6:0.78133328
|
||||
-4 1:0.91718681 2:11.59872 3:0.24599744 4:0.61009579 5:0.73679921 6:0.82111909
|
||||
-4 1:0.93785776 2:11.59872 3:0.29516092 4:0.69304317 5:0.80704118 6:0.87520288
|
||||
4 1:0.96348057 2:11.59872 3:0.39087746 4:0.81658942 5:0.89826484 6:0.93918079
|
||||
4 1:0.97594715 2:11.59872 3:0.46404647 4:0.88220885 5:0.9397742 6:0.96552466
|
||||
-4 1:0.72249798 2:14.783537 3:0.17555055 4:0.33644824 5:0.43820655 6:0.53829513
|
||||
-4 1:0.81704926 2:14.783537 3:0.23249871 4:0.45045532 5:0.5747316 6:0.67873911
|
||||
-4 1:0.89712467 2:14.783537 3:0.34060495 4:0.64477578 5:0.76559084 6:0.84380587
|
||||
-4 1:0.92167291 2:14.783537 3:0.37146966 4:0.67543717 5:0.78682631 6:0.85897567
|
||||
0.2874858305649529 1:0.95480903 2:14.783537 3:0.44749946 4:0.78477464 5:0.87395338 6:0.92252802
|
||||
4 1:0.96755066 2:14.783537 3:0.50845782 4:0.84730317 5:0.91728701 6:0.95171811
|
||||
4 1:0.97590808 2:14.783537 3:0.56178721 4:0.89107414 5:0.94445146 6:0.96872575
|
||||
-4 1:0.6827169 2:10.331771 3:0.15765242 4:0.28829889 5:0.36744308 6:0.44750017
|
||||
-4 1:0.81940239 2:10.331771 3:0.23229659 4:0.43806594 5:0.54706417 6:0.64228321
|
||||
-4 1:0.85586727 2:10.331771 3:0.26781899 4:0.49829146 5:0.61099794 6:0.7038968
|
||||
-4 1:0.8713487 2:10.331771 3:0.27321846 4:0.524216 5:0.63890703 6:0.72787739
|
||||
4 1:0.89449256 2:10.331771 3:0.30794672 4:0.58662422 5:0.70235168 6:0.78534705
|
||||
4 1:0.93034722 2:10.331771 3:0.38662562 4:0.71215854 5:0.8168692 6:0.87979295
|
||||
4 1:0.9530564 2:10.331771 3:0.46038908 4:0.80654036 5:0.88906058 6:0.93174977
|
||||
4 1:0.9656404 2:10.331771 3:0.5195345 4:0.86427038 5:0.92715938 6:0.9566776
|
||||
-4 1:0.76410805 2:10.946382 3:0.31045297 4:0.55256316 5:0.68123882 6:0.78071379
|
||||
-4 1:0.85451282 2:10.946382 3:0.3877983 4:0.70226709 5:0.82222956 6:0.89096661
|
||||
-4 1:0.89747446 2:10.946382 3:0.40207405 4:0.71486246 5:0.82115148 6:0.8834097
|
||||
4 1:0.97961646 2:10.946382 3:0.59105602 4:0.90163181 5:0.9494483 6:0.9709084
|
||||
4 1:0.99449718 2:10.946382 3:0.78669946 4:0.98015206 5:0.99098742 6:0.9950133
|
||||
-4 1:0.77117012 2:4.882557 3:0.11709771 4:0.53155194 5:0.70768591 6:0.83479627
|
||||
-4 1:0.85426765 2:4.882557 3:0.16511551 4:0.68671671 5:0.8371355 6:0.91143017
|
||||
-4 1:0.90079262 2:4.882557 3:0.19871429 4:0.75177902 5:0.8662592 6:0.92166114
|
||||
-4 1:0.91056573 2:4.882557 3:0.22541202 4:0.82841022 5:0.91991591 6:0.95665016
|
||||
4 1:0.95609683 2:4.882557 3:0.30821153 4:0.89386728 5:0.94759236 6:0.9708249
|
||||
4 1:0.95737966 2:4.882557 3:0.3161537 4:0.90424974 5:0.95352523 6:0.9743862
|
||||
4 1:0.98370829 2:4.882557 3:0.36473352 4:0.92795509 5:0.96715066 6:0.98228238
|
||||
-4 1:0.67911419 2:15.436489 3:0.078980729 4:0.27329281 5:0.38390156 6:0.49400732
|
||||
-4 1:0.82552386 2:15.436489 3:0.13269026 4:0.44443999 5:0.57899704 6:0.68522006
|
||||
-4 1:0.8635945 2:15.436489 3:0.16977366 4:0.56361692 5:0.70226895 6:0.79485847
|
||||
-4 1:0.89117852 2:15.436489 3:0.19393817 4:0.58621472 5:0.71447888 6:0.80254715
|
||||
-1.848580162779159 1:0.90840948 2:15.436489 3:0.22101744 4:0.65107009 5:0.77235806 6:0.84906039
|
||||
4 1:0.94679383 2:15.436489 3:0.27967191 4:0.75233049 5:0.85348072 6:0.90831572
|
||||
4 1:0.95821371 2:15.436489 3:0.31467528 4:0.80631347 5:0.89232705 6:0.93518786
|
||||
4 1:0.97719702 2:15.436489 3:0.39898039 4:0.90094655 5:0.95185814 6:0.97323317
|
||||
4 1:0.98180698 2:15.436489 3:0.43036422 4:0.92374695 5:0.96433675 6:0.98055969
|
||||
-4 1:0.83806059 2:9.593342 3:0.35874773 4:0.6501712 5:0.75345564 6:0.83068599
|
||||
-4 1:0.89757175 2:9.593342 3:0.43822285 4:0.75989593 5:0.84590257 6:0.90062152
|
||||
-4 1:0.92711822 2:9.593342 3:0.47552516 4:0.80334517 5:0.87716559 6:0.92257764
|
||||
-4 1:0.94064485 2:9.593342 3:0.53180263 4:0.86668693 5:0.92283945 6:0.95456364
|
||||
4 1:0.96346884 2:9.593342 3:0.57754419 4:0.90539557 5:0.94812347 6:0.97078741
|
||||
4 1:0.97860532 2:9.593342 3:0.58699278 4:0.92495643 5:0.96173419 6:0.97897753
|
78
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv1.pkl
vendored
Normal file
78
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv1.pkl
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F3.1
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.1
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif'
|
||||
p16
|
||||
aS'adm'
|
||||
p17
|
||||
aS'motion'
|
||||
p18
|
||||
aS'ansnr'
|
||||
p19
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p20
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p21
|
||||
(lp22
|
||||
S'VMAF_feature_adm_score'
|
||||
p23
|
||||
aS'VMAF_feature_ansnr_score'
|
||||
p24
|
||||
aS'VMAF_feature_motion_score'
|
||||
p25
|
||||
aS'VMAF_feature_vif_score'
|
||||
p26
|
||||
asS'intercepts'
|
||||
p27
|
||||
(lp28
|
||||
F-0.1909090909090909
|
||||
aF-1.635828565827225
|
||||
aF-0.5027725296167747
|
||||
aF-0.022214587359292954
|
||||
aF-0.12191917348723096
|
||||
asS'model_type'
|
||||
p29
|
||||
S'LIBSVMNUSVR'
|
||||
p30
|
||||
sS'model'
|
||||
p31
|
||||
NsS'slopes'
|
||||
p32
|
||||
(lp33
|
||||
F0.010909090909090908
|
||||
aF2.635828565827225
|
||||
aF0.030306790717580585
|
||||
aF0.06846153126171134
|
||||
aF1.121919173487231
|
||||
ass.
|
152
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv1.pkl.model
vendored
Normal file
152
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv1.pkl.model
vendored
Normal file
@ -0,0 +1,152 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.1
|
||||
nr_class 2
|
||||
total_sv 145
|
||||
rho -0.518509
|
||||
SV
|
||||
-1.908779772857038 1:1 2:0.9023797 3:0.80360073 4:1
|
||||
3.1 1:1 2:0.6268493 3:0.060660457 4:1
|
||||
-3.1 1:1 2:0.82419551 3:0.25800309 4:1
|
||||
3.1 1:1 2:0.60150691 3:0.13125463 4:1
|
||||
-3.1 1:1 2:0.81706577 3:0.41227705 4:1
|
||||
-3.1 1:1 2:0.86043223 3:0.3173053 4:1
|
||||
-3.1 1:0.500758 2:0.44434935 3:0.80360073 4:0.25504335
|
||||
-3.1 1:0.66395488 2:0.49545656 3:0.80360073 4:0.30315084
|
||||
-3.1 1:0.68710445 2:0.51616008 3:0.80360073 4:0.32840241
|
||||
3.1 1:0.77682167 2:0.55184234 3:0.80360073 4:0.36126897
|
||||
3.1 1:0.80552743 2:0.57886981 3:0.80360073 4:0.3952589
|
||||
3.1 1:0.88273764 2:0.61682479 3:0.80360073 4:0.43234181
|
||||
-3.1 1:0.93116188 2:0.65752339 3:0.80360073 4:0.46598966
|
||||
3.1 1:0.93943344 2:0.67382416 3:0.80360073 4:0.48875504
|
||||
-3.1 1:0.44111817 2:0.13943156 3:0.060660457 4:0.23164915
|
||||
-3.1 1:0.65519079 2:0.2182804 3:0.060660457 4:0.35101052
|
||||
-3.1 1:0.77999724 2:0.29259565 3:0.060660457 4:0.44902479
|
||||
3.1 1:0.79372033 2:0.31017378 3:0.060660457 4:0.4749309
|
||||
3.1 1:0.91710352 2:0.45437437 3:0.060660457 4:0.66549345
|
||||
3.1 1:0.99910085 2:0.62307047 3:0.060660457 4:0.94344783
|
||||
3.1 1:0.70228825 2:0.41065868 3:0.25800309 4:0.16020672
|
||||
3.1 1:0.71225044 2:0.41933192 3:0.25800309 4:0.16684779
|
||||
3.1 1:0.79683949 2:0.43826809 3:0.25800309 4:0.17816881
|
||||
3.1 1:0.81652281 2:0.45300881 3:0.25800309 4:0.19016999
|
||||
3.1 1:0.89025411 2:0.468107 3:0.25800309 4:0.20163548
|
||||
-3.1 1:0.93569958 2:0.48157676 3:0.25800309 4:0.21208644
|
||||
3.1 1:0.93913288 2:0.49123252 3:0.25800309 4:0.22195992
|
||||
-3.1 1:0.66703242 2:0.24861296 3:0.29975901 4:0.34248223
|
||||
-3.1 1:0.68361815 2:0.26524478 3:0.29975901 4:0.36982031
|
||||
-3.1 1:0.78457344 2:0.32209063 3:0.29975901 4:0.43388438
|
||||
3.1 1:0.80856316 2:0.35113715 3:0.29975901 4:0.47936171
|
||||
3.1 1:0.90912597 2:0.4570275 3:0.29975901 4:0.59104161
|
||||
-1.95125371595871 1:0.98011205 2:0.57256903 3:0.29975901 4:0.69987699
|
||||
-3.1 1:0.98354192 2:0.5885804 3:0.29975901 4:0.72038426
|
||||
0.8928938865007994 1:0.23737343 2:0.092648467 3:0.49240306 4:0.074975226
|
||||
-3.1 1:0.43053262 2:0.12481478 3:0.49240306 4:0.11338352
|
||||
-3.1 1:0.48855711 2:0.150659 3:0.49240306 4:0.14217743
|
||||
-3.1 1:0.60605382 2:0.18559397 3:0.49240306 4:0.18417781
|
||||
-3.1 1:0.68505081 2:0.23614196 3:0.49240306 4:0.24718934
|
||||
-3.1 1:0.79592925 2:0.30063732 3:0.49240306 4:0.33000913
|
||||
-3.1 1:0.89013303 2:0.39057937 3:0.49240306 4:0.43942102
|
||||
3.1 1:0.91458482 2:0.43330721 3:0.49240306 4:0.49236913
|
||||
3.1 1:0.32769235 2:0.11805063 3:0.13125463 4:0.15797584
|
||||
3.1 1:0.57102853 2:0.18673101 3:0.13125463 4:0.2692099
|
||||
3.1 1:0.57282199 2:0.18739048 3:0.13125463 4:0.27170222
|
||||
3.1 1:0.72359309 2:0.2571562 3:0.13125463 4:0.37594831
|
||||
3.1 1:0.74350533 2:0.27830189 3:0.13125463 4:0.40502819
|
||||
3.1 1:0.90049487 2:0.43091367 3:0.13125463 4:0.66579618
|
||||
1.439296923646941 1:0.99962385 2:0.60052019 3:0.13125463 4:0.97801244
|
||||
-3.1 1:0.48038412 2:0.23379852 3:0.41227705 4:0.18361558
|
||||
-3.1 1:0.6494774 2:0.27837021 3:0.41227705 4:0.22867305
|
||||
-3.1 1:0.67648047 2:0.3096224 3:0.41227705 4:0.26662141
|
||||
-3.1 1:0.76923458 2:0.34709787 3:0.41227705 4:0.30394459
|
||||
-3.1 1:0.8956297 2:0.46193279 3:0.41227705 4:0.44146699
|
||||
-3.1 1:0.95803953 2:0.52505896 3:0.41227705 4:0.50173907
|
||||
-3.1 1:0.96714842 2:0.55388193 3:0.41227705 4:0.53377919
|
||||
3.1 1:0.48186529 2:0.28840495 3:0.3173053 4:0.35029221
|
||||
3.1 1:0.63910783 2:0.34199561 3:0.3173053 4:0.40973951
|
||||
3.1 1:0.67242576 2:0.37411679 3:0.3173053 4:0.44891858
|
||||
3.1 1:0.76844641 2:0.42165442 3:0.3173053 4:0.49511208
|
||||
3.1 1:0.81232229 2:0.47549925 3:0.3173053 4:0.5571142
|
||||
3.1 1:0.89573129 2:0.53507396 3:0.3173053 4:0.6057181
|
||||
3.1 1:0.96198872 2:0.59867279 3:0.3173053 4:0.64581725
|
||||
1.375294662803866 1:0.97130686 2:0.62463226 3:0.3173053 4:0.6670586
|
||||
-3.1 1:0.51091654 2:0.36753212 4:0.32122832
|
||||
-3.1 1:0.67131199 2:0.40988734 4:0.37624653
|
||||
-3.1 1:0.67853479 2:0.41802337 4:0.38490923
|
||||
-3.1 1:0.77668766 2:0.4530568 4:0.42714338
|
||||
-3.1 1:0.80010279 2:0.47295605 4:0.44945901
|
||||
-2.649966511184513 1:0.94867588 2:0.55053174 4:0.55259659
|
||||
-3.1 1:0.95202741 2:0.56265542 4:0.56679466
|
||||
-3.1 1:1 2:0.83216729 3:0.65112312 4:1
|
||||
-3.1 1:1 2:0.84061366 3:0.70765261 4:1
|
||||
-3.1 1:1 2:0.71738209 3:0.27988388 4:1
|
||||
3.1 1:1 2:0.54793197 3:1 4:1
|
||||
-3.1 1:1 2:1 3:0.60048989 4:1
|
||||
-3.1 1:0.36338045 2:0.20017167 3:0.35216405 4:0.19030002
|
||||
-3.1 1:0.56016075 2:0.2511454 3:0.35216405 4:0.25418659
|
||||
-3.1 1:0.58720387 2:0.26591235 3:0.35216405 4:0.28451975
|
||||
-3.1 1:0.72561366 2:0.32432484 3:0.35216405 4:0.34947968
|
||||
3.1 1:0.7525563 2:0.34866202 3:0.35216405 4:0.3991584
|
||||
3.1 1:0.88089009 2:0.45568174 3:0.35216405 4:0.51691346
|
||||
3.1 1:0.89118788 2:0.47211671 3:0.35216405 4:0.54829173
|
||||
3.1 1:0.94970136 2:0.54170694 3:0.35216405 4:0.63661853
|
||||
3.1 1:0.95617102 2:0.55602795 3:0.35216405 4:0.66263285
|
||||
3.1 1:0.96902859 2:0.58505878 3:0.35216405 4:0.72053996
|
||||
-3.1 1:0.49691615 2:0.56424104 3:0.024932462 4:0.45200919
|
||||
-3.1 1:0.50469145 2:0.57181443 3:0.024932462 4:0.46818436
|
||||
-3.1 1:0.67458252 2:0.62423542 3:0.024932462 4:0.49597011
|
||||
-3.1 1:0.67941593 2:0.6324076 3:0.024932462 4:0.50994261
|
||||
-3.1 1:0.79839909 2:0.68132931 3:0.024932462 4:0.52861368
|
||||
3.1 1:0.8998255 2:0.73591865 3:0.024932462 4:0.555713
|
||||
3.1 1:0.96138923 2:0.76908851 3:0.024932462 4:0.57268419
|
||||
3.1 1:0.96906849 2:0.7906865 3:0.024932462 4:0.59393192
|
||||
3.1 1:0.028315453 2:0.029721262 3:0.73888524
|
||||
-3.1 1:0.61695399 2:0.18704248 3:0.73888524 4:0.1814112
|
||||
-3.1 1:0.7608844 2:0.25428655 3:0.73888524 4:0.24370254
|
||||
-3.1 1:0.82057107 2:0.30563046 3:0.73888524 4:0.30618093
|
||||
-3.1 1:0.86008714 2:0.34853999 3:0.73888524 4:0.35992967
|
||||
-3.1 1:0.89455431 2:0.39394543 3:0.73888524 4:0.41860883
|
||||
-3.1 1:0.93054994 2:0.45158749 3:0.73888524 4:0.49788181
|
||||
-3.1 1:0.16873718 2:0.15491045 3:0.95719598 4:0.079392181
|
||||
-3.1 1:0.45188506 2:0.22731935 3:0.95719598 4:0.16130023
|
||||
-3.1 1:0.69176657 2:0.33745528 3:0.95719598 4:0.30827001
|
||||
-3.1 1:0.76536179 2:0.36671253 3:0.95719598 4:0.34343984
|
||||
-3.1 1:0.86463628 2:0.44598536 3:0.95719598 4:0.43860171
|
||||
3.1 1:0.90279382 2:0.49917048 3:0.95719598 4:0.50883156
|
||||
3.1 1:0.9278218 2:0.54448511 3:0.95719598 4:0.56756291
|
||||
3.1 1:2.220446e-16 2:0.23907071 3:0.65112312 4:0.038179135
|
||||
3.1 1:0.42756068 2:0.33322794 3:0.65112312 4:0.144644
|
||||
3.1 1:0.54211376 2:0.37139949 3:0.65112312 4:0.1921988
|
||||
3.1 1:0.59120008 2:0.38742794 3:0.65112312 4:0.20324125
|
||||
3.1 1:0.61558961 2:0.40700327 3:0.65112312 4:0.23911229
|
||||
3.1 1:0.66410067 2:0.42453917 3:0.65112312 4:0.25030438
|
||||
3.1 1:0.77796278 2:0.50015434 3:0.65112312 4:0.35266323
|
||||
3.1 1:0.850087 2:0.56409596 3:0.65112312 4:0.44272339
|
||||
3.1 1:0.89007769 2:0.6105181 3:0.65112312 4:0.51063948
|
||||
3.1 1:0.2919114 2:0.32670389 3:0.70765261 4:0.16789622
|
||||
3.1 1:0.56327043 2:0.41097052 3:0.70765261 4:0.28869814
|
||||
-3.1 1:0.69223575 2:0.44677163 3:0.70765261 4:0.30435865
|
||||
3.1 1:0.7570134 2:0.52053937 3:0.70765261 4:0.45274665
|
||||
-3.1 1:0.93882855 2:0.64245784 3:0.70765261 4:0.54772182
|
||||
3.1 1:0.30992869 2:0.24744957 3:0.27988388 4:0.08636103
|
||||
-3.1 1:0.56052264 2:0.31230263 3:0.27988388 4:0.16193225
|
||||
-3.1 1:0.70082836 2:0.36112001 3:0.27988388 4:0.2051139
|
||||
3.1 1:0.73029842 2:0.38872215 3:0.27988388 4:0.2447673
|
||||
3.1 1:0.86760546 2:0.48182811 3:0.27988388 4:0.33403096
|
||||
3.1 1:0.87147234 2:0.48882625 3:0.27988388 4:0.34344882
|
||||
3.1 1:0.95086917 2:0.55599973 3:0.27988388 4:0.39368584
|
||||
3.1 1:0.03020499 3:1 4:0.010458785
|
||||
-3.1 1:0.47261196 2:0.084491417 3:1 4:0.097458927
|
||||
-3.1 1:0.58771434 2:0.13408384 3:1 4:0.1573028
|
||||
3.1 1:0.67102703 2:0.16297436 3:1 4:0.1833146
|
||||
3.1 1:0.72313816 2:0.19544136 3:1 4:0.22168406
|
||||
3.1 1:0.78939255 2:0.22653651 3:1 4:0.24606121
|
||||
3.1 1:0.83915519 2:0.27026774 3:1 4:0.29560442
|
||||
3.1 1:0.87367366 2:0.30750931 3:1 4:0.33839465
|
||||
-3.1 1:0.93106101 2:0.38632703 3:1 4:0.43396065
|
||||
2.802514527048651 1:0.94499913 2:0.41008163 3:1 4:0.46699577
|
||||
-3.1 1:0.47596853 2:0.4846003 3:0.60048989 4:0.30839395
|
||||
-3.1 1:0.6683492 2:0.56626182 3:0.60048989 4:0.40875179
|
||||
-3.1 1:0.76380856 2:0.60596099 3:0.60048989 4:0.45269953
|
||||
-3.1 1:0.8078454 2:0.66094735 3:0.60048989 4:0.52147761
|
||||
3.1 1:0.88161084 2:0.71273046 3:0.60048989 4:0.57004196
|
||||
3.1 1:0.93055934 2:0.73684772 3:0.60048989 4:0.57987786
|
96
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv2.pkl
vendored
Normal file
96
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv2.pkl
vendored
Normal file
@ -0,0 +1,96 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif_scale0'
|
||||
p16
|
||||
aS'vif_scale1'
|
||||
p17
|
||||
aS'vif_scale2'
|
||||
p18
|
||||
aS'vif_scale3'
|
||||
p19
|
||||
aS'adm2'
|
||||
p20
|
||||
aS'motion'
|
||||
p21
|
||||
aS'ansnr'
|
||||
p22
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_ansnr_score'
|
||||
p27
|
||||
aS'VMAF_feature_motion_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p31
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p32
|
||||
asS'intercepts'
|
||||
p33
|
||||
(lp34
|
||||
F-0.1909090909090909
|
||||
aF-1.9715194224195431
|
||||
aF-0.5027725296167747
|
||||
aF-0.022214587359292954
|
||||
aF-0.08217305517359848
|
||||
aF-0.2767600362748038
|
||||
aF-0.469070289400241
|
||||
aF-0.7460857020871375
|
||||
asS'model_type'
|
||||
p35
|
||||
S'LIBSVMNUSVR'
|
||||
p36
|
||||
sS'model'
|
||||
p37
|
||||
NsS'slopes'
|
||||
p38
|
||||
(lp39
|
||||
F0.010909090909090908
|
||||
aF2.971519422419543
|
||||
aF0.030306790717580585
|
||||
aF0.06846153126171134
|
||||
aF1.0821730334476833
|
||||
aF1.2767601181740016
|
||||
aF1.4690704623045836
|
||||
aF1.746086042520506
|
||||
ass.
|
157
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv2.pkl.model
vendored
Normal file
157
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv2.pkl.model
vendored
Normal file
@ -0,0 +1,157 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 150
|
||||
rho -1.07371
|
||||
SV
|
||||
-4 1:1 2:0.9023797 3:0.80360073 4:0.99999956 5:0.99999617 6:0.99999659 7:0.99999649
|
||||
4 1:1 2:0.6268493 3:0.060660457 4:0.99999979 5:0.9999997 6:0.9999995 7:0.99999916
|
||||
4 1:1 2:0.6945613 3:0.29975901 4:0.9999987 5:0.99999951 6:0.99999913 7:0.99999913
|
||||
4 1:1 2:0.60150691 3:0.13125463 4:0.99999995 5:1 6:0.99999997 7:0.99999982
|
||||
-4 1:1 2:0.81706577 3:0.41227705 4:0.99999519 5:0.99999624 6:0.99999547 7:0.99999532
|
||||
-4 1:1 2:0.86043223 3:0.3173053 4:0.99999559 5:0.9999956 6:0.99999629 7:0.99999512
|
||||
1.127761869652489 1:1 2:0.83592028 4:0.9999953 5:0.99999163 6:0.99999444 7:0.9999906
|
||||
-4 1:0.55120029 2:0.44434935 3:0.80360073 4:0.26121942 5:0.6293366 6:0.71975367 7:0.78093108
|
||||
-4 1:0.69994822 2:0.49545656 3:0.80360073 4:0.30135725 5:0.70722144 6:0.79216822 7:0.83978283
|
||||
-4 1:0.72011021 2:0.51616008 3:0.80360073 4:0.32121318 5:0.74989787 6:0.83473257 7:0.87962097
|
||||
-4 1:0.80161657 2:0.55184234 3:0.80360073 4:0.3501572 5:0.79684481 6:0.87136279 7:0.90727549
|
||||
4 1:0.82707856 2:0.57886981 3:0.80360073 4:0.37930406 5:0.84227672 6:0.90805726 7:0.93746453
|
||||
4 1:0.89751445 2:0.61682479 3:0.80360073 4:0.41517592 5:0.87673937 6:0.93162471 7:0.95441416
|
||||
-4 1:0.94175354 2:0.65752339 3:0.80360073 4:0.44577851 5:0.91006376 6:0.95340334 7:0.97037481
|
||||
4 1:0.94886911 2:0.67382416 3:0.80360073 4:0.46794139 5:0.92362274 6:0.96145271 7:0.97586663
|
||||
4 1:0.40868363 2:0.13943156 3:0.060660457 4:0.20127881 5:0.43690014 6:0.62303099 7:0.80462761
|
||||
1.984934200622846 1:0.63428306 2:0.21779297 3:0.060660457 4:0.29367506 5:0.63478131 6:0.80404493 7:0.90860113
|
||||
-4 1:0.63517172 2:0.2182804 3:0.060660457 4:0.29742126 5:0.63976608 6:0.8083318 7:0.9121364
|
||||
-4 1:0.76722122 2:0.29259565 3:0.060660457 4:0.38377254 5:0.78514877 6:0.90429663 7:0.95734326
|
||||
4 1:0.78174155 2:0.31017378 3:0.060660457 4:0.40876054 5:0.81261902 6:0.91751826 7:0.96173956
|
||||
4 1:0.91228727 2:0.45437437 3:0.060660457 4:0.61082239 5:0.94727552 6:0.9778847 7:0.98952764
|
||||
4 1:0.99904844 2:0.62307047 3:0.060660457 4:0.93477801 5:0.99671741 6:0.99843624 7:0.99906019
|
||||
-4 1:0.58827841 2:0.37677077 3:0.25800309 4:0.12270748 5:0.71032975 6:0.79612606 7:0.84328574
|
||||
-0.9346808495068268 1:0.72787772 2:0.41065868 3:0.25800309 4:0.13608056 5:0.7652198 6:0.84839563 7:0.88712536
|
||||
4 1:0.73686914 2:0.41933192 3:0.25800309 4:0.13980216 5:0.78480629 6:0.86663349 7:0.90357662
|
||||
4 1:0.81448411 2:0.43826809 3:0.25800309 4:0.14751601 5:0.81360437 6:0.89032105 7:0.92210299
|
||||
4 1:0.83242962 2:0.45300881 3:0.25800309 4:0.15555028 5:0.84004447 6:0.91050996 7:0.938502
|
||||
4 1:0.90008906 2:0.468107 3:0.25800309 4:0.16537108 5:0.85778742 6:0.92412308 7:0.94895956
|
||||
-4 1:0.94173707 2:0.48157676 3:0.25800309 4:0.17317649 5:0.876681 6:0.93779975 7:0.95956764
|
||||
-4 1:0.94484618 2:0.49123252 3:0.25800309 4:0.18169384 5:0.88732249 6:0.94420428 7:0.96402826
|
||||
-4 1:0.47977509 2:0.18200267 3:0.29975901 4:0.32928412 5:0.55282916 6:0.66791845 7:0.74863576
|
||||
-4 1:0.67040866 2:0.24861296 3:0.29975901 4:0.38943269 5:0.66545556 6:0.76680794 7:0.81985996
|
||||
-4 1:0.68687131 2:0.26524478 3:0.29975901 4:0.41023912 5:0.70740496 6:0.81078152 7:0.86221763
|
||||
-4 1:0.78674389 2:0.32209063 3:0.29975901 4:0.46460529 5:0.78994847 6:0.86913143 7:0.90516139
|
||||
4 1:0.81048086 2:0.35113715 3:0.29975901 4:0.50312748 5:0.84547503 6:0.91358495 7:0.94168743
|
||||
4 1:0.9100825 2:0.4570275 3:0.29975901 4:0.61552031 5:0.9147698 6:0.95147469 7:0.96681058
|
||||
4 1:0.98034608 2:0.57256903 3:0.29975901 4:0.72900944 5:0.95802477 6:0.97650266 7:0.98413271
|
||||
-4 1:0.98374901 2:0.5885804 3:0.29975901 4:0.74947079 5:0.96647178 6:0.98163931 7:0.98773965
|
||||
0.555136755565616 1:0.21483779 2:0.092648467 3:0.49240306 4:0.091662564 5:0.1529332 6:0.19165383 7:0.23332771
|
||||
-4 1:0.41372639 2:0.12481478 3:0.49240306 4:0.11972516 5:0.22858077 6:0.28261732 7:0.32614433
|
||||
-4 1:0.4734512 2:0.150659 3:0.49240306 4:0.13945528 5:0.28799635 6:0.36498566 7:0.42609007
|
||||
-4 1:0.5944247 2:0.18559397 3:0.49240306 4:0.17211443 5:0.36367814 6:0.44650577 7:0.50673632
|
||||
-4 1:0.67573909 2:0.23614196 3:0.49240306 4:0.2184327 5:0.48605098 6:0.59000253 7:0.65971535
|
||||
4 1:0.78992142 2:0.30063732 3:0.49240306 4:0.29529412 5:0.58552372 6:0.67661896 7:0.73531212
|
||||
4 1:0.8868928 2:0.39057937 3:0.49240306 4:0.39750191 5:0.71176991 6:0.79245591 7:0.83806775
|
||||
4 1:0.91206245 2:0.43330721 3:0.49240306 4:0.44654064 5:0.77534857 6:0.84760758 7:0.88531211
|
||||
4 1:0.29412838 2:0.11805063 3:0.13125463 4:0.16200315 5:0.37578485 6:0.59320682 7:0.80117536
|
||||
4 1:0.54962761 2:0.18673101 3:0.13125463 4:0.24393505 5:0.58209165 6:0.78851378 7:0.9067632
|
||||
4 1:0.55150951 2:0.18739048 3:0.13125463 4:0.24550611 5:0.58687978 6:0.79404623 7:0.91217056
|
||||
-4 1:0.70981097 2:0.2571562 3:0.13125463 4:0.33222561 5:0.74494592 6:0.89826659 7:0.95769783
|
||||
4 1:0.73071683 2:0.27830189 3:0.13125463 4:0.358983 5:0.7781418 6:0.91310488 7:0.9623323
|
||||
4 1:0.89553429 2:0.43091367 3:0.13125463 4:0.62745623 5:0.94236465 6:0.97874341 7:0.99066928
|
||||
4 1:0.99960552 2:0.60052019 3:0.13125463 4:0.97634186 5:0.99896487 6:0.99945077 7:0.99960846
|
||||
-4 1:0.51835903 2:0.23379852 3:0.41227705 4:0.40082289 5:0.55345405 6:0.60797992 7:0.64355438
|
||||
-4 1:0.67524675 2:0.27837021 3:0.41227705 4:0.43396977 5:0.61807337 6:0.68289571 7:0.72351841
|
||||
-0.9934134271455123 1:0.70027899 2:0.3096224 3:0.41227705 4:0.46160919 5:0.67100337 6:0.74355703 7:0.78820216
|
||||
-4 1:0.78642738 2:0.34709787 3:0.41227705 4:0.49001346 5:0.72032998 6:0.79167775 7:0.83306235
|
||||
4 1:0.82574317 2:0.4051903 3:0.41227705 4:0.54962708 5:0.81174952 6:0.87501259 7:0.9070568
|
||||
2.990520156159385 1:0.9038342 2:0.46193279 3:0.41227705 4:0.60120088 5:0.8672518 6:0.91737821 7:0.94093945
|
||||
0.04757917257313609 1:0.9616841 2:0.52505896 3:0.41227705 4:0.65078047 5:0.92284738 6:0.95658586 7:0.97061867
|
||||
-4 1:0.97005642 2:0.55388193 3:0.41227705 4:0.67874954 5:0.94213598 6:0.96846928 7:0.97897375
|
||||
-4 1:0.56379827 2:0.28840495 3:0.3173053 4:0.62725489 5:0.73401377 6:0.77061361 7:0.79233977
|
||||
4 1:0.69707073 2:0.34199561 3:0.3173053 4:0.66864069 5:0.79391324 6:0.8324878 7:0.85355213
|
||||
-4 1:0.80573572 2:0.42165442 3:0.3173053 4:0.72761205 5:0.87368756 6:0.90816269 7:0.92491864
|
||||
4 1:0.84202128 2:0.47549925 3:0.3173053 4:0.77195881 5:0.9200765 6:0.94626283 7:0.95775509
|
||||
4 1:0.91272868 2:0.53507396 3:0.3173053 4:0.81030574 5:0.9498361 6:0.96767523 7:0.97518431
|
||||
4 1:0.96863532 2:0.59867279 3:0.3173053 4:0.83826012 5:0.97494708 6:0.98538861 7:0.98958291
|
||||
4 1:0.97633249 2:0.62463226 3:0.3173053 4:0.85344648 5:0.98180902 6:0.9896203 7:0.99264501
|
||||
-4 1:0.6558802 2:0.36753212 4:0.50914684 5:0.83375963 6:0.89809846 7:0.92653187
|
||||
-4 1:0.76884943 2:0.40988734 4:0.55679293 5:0.89391591 6:0.93860454 7:0.95403218
|
||||
-4 1:0.77375631 2:0.41802337 4:0.5636812 5:0.90019662 6:0.9427445 7:0.9574506
|
||||
-4 1:0.84303042 2:0.4530568 4:0.60236618 5:0.93446437 6:0.96242475 7:0.97109062
|
||||
-4 1:0.85951211 2:0.47295605 4:0.6228269 5:0.94532487 6:0.96833445 7:0.97557224
|
||||
-4 1:0.9261042 2:0.52043749 4:0.68729659 5:0.96971448 6:0.98303447 7:0.98744411
|
||||
-4 1:0.96470143 2:0.55053174 4:0.7147545 5:0.98321849 6:0.9919861 7:0.99443831
|
||||
-4 1:0.967065 2:0.56265542 4:0.7243143 5:0.98476297 6:0.99277815 7:0.99502417
|
||||
0.9077719706534756 1:1 2:0.67643557 3:0.35216405 4:0.99999995 5:0.99999987 6:0.99999955 7:0.99999965
|
||||
-0.7129226862350851 1:1 2:0.9463555 3:0.024932462 4:0.99999983 5:0.99999915 6:0.9999982 7:0.99999886
|
||||
-4 1:1 2:0.78323367 3:0.95719598 4:0.99999983 5:0.99999957 6:0.99999885 7:0.99999917
|
||||
-4 1:1 2:0.83216729 3:0.65112312 4:0.99999917 5:0.99999858 6:0.99999805 7:0.99999788
|
||||
-4 1:1 2:0.84061366 3:0.70765261 4:0.99999958 5:0.99999872 6:0.99999818 7:0.99999796
|
||||
-1.758983037112612 1:1 2:0.54793197 3:1 4:1 5:0.99999991 6:0.99999965 7:0.99999961
|
||||
-4 1:1 2:1 3:0.60048989 4:0.99999945 5:0.99999719 6:0.99999675 7:0.99999724
|
||||
-4 1:0.37561256 2:0.20017167 3:0.35216405 4:0.14564537 5:0.39790222 6:0.55106678 7:0.67008782
|
||||
-4 1:0.56862883 2:0.2511454 3:0.35216405 4:0.19411401 5:0.53707663 6:0.68373405 7:0.77053495
|
||||
-4 1:0.59507913 2:0.26591235 3:0.35216405 4:0.21726037 5:0.59928839 6:0.74861604 7:0.82928713
|
||||
-4 1:0.73092966 2:0.32432484 3:0.35216405 4:0.27356025 5:0.71390094 6:0.82257087 7:0.87444689
|
||||
4 1:0.75725767 2:0.34866202 3:0.35216405 4:0.31634112 5:0.79654122 6:0.88915412 7:0.9273156
|
||||
4 1:0.88324277 2:0.45568174 3:0.35216405 4:0.4403716 5:0.8922293 6:0.93831942 7:0.95845059
|
||||
4 1:0.8933052 2:0.47211671 3:0.35216405 4:0.47228748 5:0.92107255 6:0.95675014 7:0.97151317
|
||||
4 1:0.9508125 2:0.54170694 3:0.35216405 4:0.58168899 5:0.90979133 6:0.94735255 7:0.96398348
|
||||
4 1:0.95713874 2:0.55602795 3:0.35216405 4:0.61027713 5:0.92360129 6:0.95604732 7:0.97013831
|
||||
4 1:0.96971772 2:0.58505878 3:0.35216405 4:0.67509147 5:0.9486493 6:0.97123348 7:0.98048503
|
||||
-4 1:0.52994813 2:0.56424104 3:0.024932462 4:0.38547432 5:0.75372022 6:0.84123041 7:0.89486139
|
||||
-4 1:0.53720078 2:0.57181443 3:0.024932462 4:0.3990632 5:0.77884256 6:0.86263175 7:0.9119893
|
||||
-4 1:0.69594659 2:0.62423542 3:0.024932462 4:0.42249933 5:0.83012148 6:0.89999703 7:0.9343333
|
||||
-4 1:0.70045567 2:0.6324076 3:0.024932462 4:0.43485895 5:0.84990814 6:0.91438168 7:0.94468986
|
||||
-4 1:0.81165128 2:0.68132931 3:0.024932462 4:0.45209767 5:0.87998379 6:0.93121657 7:0.95417334
|
||||
4 1:0.96394448 2:0.76908851 3:0.024932462 4:0.49703719 5:0.92208917 6:0.95739033 7:0.97352851
|
||||
4 1:0.97111644 2:0.7906865 3:0.024932462 4:0.51850714 5:0.94179388 6:0.97018449 7:0.98213448
|
||||
4 2:0.029721262 3:0.73888524 7:0.010154919
|
||||
-4 1:0.60579512 2:0.18704248 3:0.73888524 4:0.12893302 5:0.40260054 6:0.52794625 7:0.61631229
|
||||
-4 1:0.75391926 2:0.25428655 3:0.73888524 4:0.18461005 5:0.49989687 6:0.61178122 7:0.68884477
|
||||
-4 1:0.8153429 2:0.30563046 3:0.73888524 4:0.23793372 5:0.60651572 6:0.71554025 7:0.78255239
|
||||
-4 1:0.85600941 2:0.34853999 3:0.73888524 4:0.28629085 5:0.68788242 6:0.78757701 7:0.84353583
|
||||
-4 1:0.89148132 2:0.39394543 3:0.73888524 4:0.34171535 5:0.76509994 6:0.85013067 7:0.8935626
|
||||
-4 1:0.92852788 2:0.45158749 3:0.73888524 4:0.42100368 5:0.84916897 6:0.91127553 7:0.93940013
|
||||
-4 1:0.1753977 2:0.15491045 3:0.95719598 4:0.09552304 5:0.13054246 6:0.15035856 7:0.1699603
|
||||
-4 1:0.45635833 2:0.22731935 3:0.95719598 4:0.158209 5:0.28040177 6:0.35751004 7:0.42348738
|
||||
4 1:0.69430386 2:0.33745528 3:0.95719598 4:0.27712969 5:0.53553712 6:0.64647804 7:0.71969773
|
||||
3.900377532092378 1:0.86571411 2:0.44598536 3:0.95719598 4:0.3944368 5:0.71882415 6:0.81004305 7:0.8623959
|
||||
4 1:0.90357706 2:0.49917048 3:0.95719598 4:0.46136994 5:0.80064289 6:0.87542246 7:0.91386276
|
||||
4 1:0.92840891 2:0.54448511 3:0.95719598 4:0.51989475 5:0.8578363 6:0.9163383 7:0.94388077
|
||||
4 1:0.057186579 2:0.23907071 3:0.65112312 4:0.074302209 5:0.064066487 6:0.038191765
|
||||
4 1:0.46335071 2:0.33322794 3:0.65112312 4:0.15651072 5:0.26099077 6:0.31080835 7:0.35093188
|
||||
4 1:0.57170622 2:0.37139949 3:0.65112312 4:0.19565839 5:0.34034574 6:0.40815216 7:0.46499326
|
||||
4 1:0.61771078 2:0.38742794 3:0.65112312 4:0.2013411 5:0.37388838 6:0.44991385 7:0.51391699
|
||||
4 1:0.64058636 2:0.40700327 3:0.65112312 4:0.23392852 5:0.42110826 6:0.50581137 7:0.57392097
|
||||
4 1:0.68648276 2:0.42453917 3:0.65112312 4:0.23959609 5:0.45613658 6:0.54666909 7:0.61876644
|
||||
4 1:0.79301714 2:0.50015434 3:0.65112312 4:0.32622773 5:0.62144616 6:0.7212244 7:0.78795799
|
||||
4 1:0.86049974 2:0.56409596 3:0.65112312 4:0.40728198 5:0.74550855 6:0.83106809 7:0.87888976
|
||||
4 1:0.89790028 2:0.6105181 3:0.65112312 4:0.47222451 5:0.82140625 6:0.88905388 7:0.92286615
|
||||
4 1:0.29904095 2:0.32670389 3:0.70765261 4:0.21472932 5:0.38914781 6:0.49769154 7:0.59083219
|
||||
4 1:0.56768263 2:0.41097052 3:0.70765261 4:0.30308084 5:0.59347344 6:0.71982347 7:0.79614483
|
||||
-4 1:0.69533755 2:0.44677163 3:0.70765261 4:0.31948376 5:0.61068179 6:0.71809681 7:0.78192463
|
||||
4 1:0.75945348 2:0.52053937 3:0.70765261 4:0.43714837 5:0.81360207 6:0.89436962 7:0.92985049
|
||||
-4 1:0.93943076 2:0.64245784 3:0.70765261 4:0.53480784 5:0.86577728 6:0.92039762 7:0.94567054
|
||||
4 1:0.32002749 2:0.24744957 3:0.27988388 4:0.045063964 5:0.37692216 6:0.55140675 7:0.69796544
|
||||
-4 1:0.56695344 2:0.31230263 3:0.27988388 4:0.097210209 5:0.58397601 6:0.7508394 7:0.83948605
|
||||
-4 1:0.70520428 2:0.36112001 3:0.27988388 4:0.13385033 5:0.67160615 6:0.79655301 7:0.85818695
|
||||
4 1:0.73424456 2:0.38872215 3:0.27988388 4:0.16265978 5:0.77271887 6:0.87781115 7:0.92030835
|
||||
4 1:0.86954132 2:0.48182811 3:0.27988388 4:0.25291857 5:0.86032679 6:0.92065002 7:0.94719087
|
||||
4 1:0.87335209 2:0.48882625 3:0.27988388 4:0.26150142 5:0.87394579 6:0.92955244 7:0.95361972
|
||||
4 1:0.95158679 2:0.55599973 3:0.27988388 4:0.31469782 5:0.90564041 6:0.9505662 7:0.96731494
|
||||
3.908643990019688 1:0.046480997 3:1 4:0.0036752949 5:0.063426258 6:0.083975821 7:0.10357933
|
||||
-4 1:0.4815399 2:0.084491417 3:1 4:0.061680284 5:0.28308554 6:0.37269791 7:0.4415304
|
||||
-4 1:0.59466693 2:0.13408384 3:1 4:0.10183633 5:0.43686442 6:0.55619455 7:0.63614229
|
||||
4 1:0.67663499 2:0.16297436 3:1 4:0.12768853 5:0.46551139 6:0.57412631 7:0.64893256
|
||||
4 1:0.727837 2:0.19544136 3:1 4:0.15698565 5:0.54933575 6:0.66054291 7:0.73141004
|
||||
4 1:0.79298458 2:0.22653651 3:1 4:0.1783044 5:0.58984439 6:0.69884629 7:0.76566769
|
||||
4 1:0.84189758 2:0.27026774 3:1 4:0.2201085 5:0.67980569 6:0.78117365 7:0.8374729
|
||||
0.9772743526610148 1:0.87582783 2:0.30750931 3:1 4:0.25791546 5:0.74958011 6:0.83919212 7:0.88469242
|
||||
-4 1:0.93223983 2:0.38632703 3:1 4:0.34905641 5:0.87203088 6:0.92820957 7:0.95189869
|
||||
-4 1:0.94593957 2:0.41008163 3:1 4:0.38300199 5:0.90150605 6:0.9468388 7:0.96487186
|
||||
-4 1:0.51879331 2:0.4846003 3:0.60048989 4:0.30175677 5:0.53715556 6:0.6201217 7:0.69126522
|
||||
-4 1:0.69563267 2:0.56626182 3:0.60048989 4:0.38974197 5:0.68280797 6:0.7624929 7:0.81933882
|
||||
-4 1:0.78342288 2:0.60596099 3:0.60048989 4:0.43017021 5:0.73828939 6:0.81072072 7:0.85931014
|
||||
-4 1:0.82362468 2:0.66094735 3:0.60048989 4:0.49268118 5:0.82332639 6:0.88132959 7:0.91765632
|
||||
4 1:0.89144668 2:0.71273046 3:0.60048989 4:0.53894393 5:0.87349384 6:0.92016796 7:0.94654988
|
||||
4 1:0.93642466 2:0.73684772 3:0.60048989 4:0.54466735 5:0.89946619 6:0.94109895 7:0.96142482
|
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3.pkl
vendored
Normal file
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3.pkl
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif_scale0'
|
||||
p16
|
||||
aS'vif_scale1'
|
||||
p17
|
||||
aS'vif_scale2'
|
||||
p18
|
||||
aS'vif_scale3'
|
||||
p19
|
||||
aS'adm2'
|
||||
p20
|
||||
aS'motion'
|
||||
p21
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p22
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p23
|
||||
(lp24
|
||||
S'VMAF_feature_adm2_score'
|
||||
p25
|
||||
aS'VMAF_feature_motion_score'
|
||||
p26
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p30
|
||||
asS'intercepts'
|
||||
p31
|
||||
(lp32
|
||||
F-0.1909090909090909
|
||||
aF-1.9715194224195431
|
||||
aF-0.022214587359292954
|
||||
aF-0.08217305517359848
|
||||
aF-0.2767600362748038
|
||||
aF-0.469070289400241
|
||||
aF-0.7460857020871375
|
||||
asS'model_type'
|
||||
p33
|
||||
S'LIBSVMNUSVR'
|
||||
p34
|
||||
sS'model'
|
||||
p35
|
||||
NsS'slopes'
|
||||
p36
|
||||
(lp37
|
||||
F0.010909090909090908
|
||||
aF2.971519422419543
|
||||
aF0.06846153126171134
|
||||
aF1.0821730334476833
|
||||
aF1.2767601181740016
|
||||
aF1.4690704623045836
|
||||
aF1.746086042520506
|
||||
ass.
|
153
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3.pkl.model
vendored
Normal file
153
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3.pkl.model
vendored
Normal file
@ -0,0 +1,153 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 146
|
||||
rho -1.28648
|
||||
SV
|
||||
-4 1:1 2:0.80360073 3:0.99999956 4:0.99999617 5:0.99999659 6:0.99999649
|
||||
4 1:1 2:0.060660457 3:0.99999979 4:0.9999997 5:0.9999995 6:0.99999916
|
||||
0.872370502079681 1:1 2:0.13125463 3:0.99999995 4:1 5:0.99999997 6:0.99999982
|
||||
4 1:1 3:0.9999953 4:0.99999163 5:0.99999444 6:0.9999906
|
||||
-4 1:0.55120029 2:0.80360073 3:0.26121942 4:0.6293366 5:0.71975367 6:0.78093108
|
||||
-4 1:0.69994822 2:0.80360073 3:0.30135725 4:0.70722144 5:0.79216822 6:0.83978283
|
||||
-4 1:0.72011021 2:0.80360073 3:0.32121318 4:0.74989787 5:0.83473257 6:0.87962097
|
||||
4 1:0.80161657 2:0.80360073 3:0.3501572 4:0.79684481 5:0.87136279 6:0.90727549
|
||||
4 1:0.82707856 2:0.80360073 3:0.37930406 4:0.84227672 5:0.90805726 6:0.93746453
|
||||
4 1:0.89751445 2:0.80360073 3:0.41517592 4:0.87673937 5:0.93162471 6:0.95441416
|
||||
-4 1:0.94175354 2:0.80360073 3:0.44577851 4:0.91006376 5:0.95340334 6:0.97037481
|
||||
4 1:0.94886911 2:0.80360073 3:0.46794139 4:0.92362274 5:0.96145271 6:0.97586663
|
||||
4 1:0.40868363 2:0.060660457 3:0.20127881 4:0.43690014 5:0.62303099 6:0.80462761
|
||||
-1.826010772594858 1:0.63428306 2:0.060660457 3:0.29367506 4:0.63478131 5:0.80404493 6:0.90860113
|
||||
-4 1:0.63517172 2:0.060660457 3:0.29742126 4:0.63976608 5:0.8083318 6:0.9121364
|
||||
-4 1:0.76722122 2:0.060660457 3:0.38377254 4:0.78514877 5:0.90429663 6:0.95734326
|
||||
4 1:0.78174155 2:0.060660457 3:0.40876054 4:0.81261902 5:0.91751826 6:0.96173956
|
||||
4 1:0.91228727 2:0.060660457 3:0.61082239 4:0.94727552 5:0.9778847 6:0.98952764
|
||||
4 1:0.99904844 2:0.060660457 3:0.93477801 4:0.99671741 5:0.99843624 6:0.99906019
|
||||
-4 1:0.58827841 2:0.25800309 3:0.12270748 4:0.71032975 5:0.79612606 6:0.84328574
|
||||
-1.711705467538651 1:0.72787772 2:0.25800309 3:0.13608056 4:0.7652198 5:0.84839563 6:0.88712536
|
||||
4 1:0.73686914 2:0.25800309 3:0.13980216 4:0.78480629 5:0.86663349 6:0.90357662
|
||||
4 1:0.81448411 2:0.25800309 3:0.14751601 4:0.81360437 5:0.89032105 6:0.92210299
|
||||
4 1:0.83242962 2:0.25800309 3:0.15555028 4:0.84004447 5:0.91050996 6:0.938502
|
||||
4 1:0.90008906 2:0.25800309 3:0.16537108 4:0.85778742 5:0.92412308 6:0.94895956
|
||||
-4 1:0.94173707 2:0.25800309 3:0.17317649 4:0.876681 5:0.93779975 6:0.95956764
|
||||
-4 1:0.94484618 2:0.25800309 3:0.18169384 4:0.88732249 5:0.94420428 6:0.96402826
|
||||
-4 1:0.47977509 2:0.29975901 3:0.32928412 4:0.55282916 5:0.66791845 6:0.74863576
|
||||
-4 1:0.67040866 2:0.29975901 3:0.38943269 4:0.66545556 5:0.76680794 6:0.81985996
|
||||
-4 1:0.68687131 2:0.29975901 3:0.41023912 4:0.70740496 5:0.81078152 6:0.86221763
|
||||
-4 1:0.78674389 2:0.29975901 3:0.46460529 4:0.78994847 5:0.86913143 6:0.90516139
|
||||
4 1:0.9100825 2:0.29975901 3:0.61552031 4:0.9147698 5:0.95147469 6:0.96681058
|
||||
4 1:0.98034608 2:0.29975901 3:0.72900944 4:0.95802477 5:0.97650266 6:0.98413271
|
||||
-4 1:0.98374901 2:0.29975901 3:0.74947079 4:0.96647178 5:0.98163931 6:0.98773965
|
||||
3.861725820844584 1:0.21483779 2:0.49240306 3:0.091662564 4:0.1529332 5:0.19165383 6:0.23332771
|
||||
-4 1:0.41372639 2:0.49240306 3:0.11972516 4:0.22858077 5:0.28261732 6:0.32614433
|
||||
-4 1:0.4734512 2:0.49240306 3:0.13945528 4:0.28799635 5:0.36498566 6:0.42609007
|
||||
-4 1:0.5944247 2:0.49240306 3:0.17211443 4:0.36367814 5:0.44650577 6:0.50673632
|
||||
-4 1:0.67573909 2:0.49240306 3:0.2184327 4:0.48605098 5:0.59000253 6:0.65971535
|
||||
4 1:0.78992142 2:0.49240306 3:0.29529412 4:0.58552372 5:0.67661896 6:0.73531212
|
||||
4 1:0.8868928 2:0.49240306 3:0.39750191 4:0.71176991 5:0.79245591 6:0.83806775
|
||||
4 1:0.91206245 2:0.49240306 3:0.44654064 4:0.77534857 5:0.84760758 6:0.88531211
|
||||
4 1:0.29412838 2:0.13125463 3:0.16200315 4:0.37578485 5:0.59320682 6:0.80117536
|
||||
4 1:0.54962761 2:0.13125463 3:0.24393505 4:0.58209165 5:0.78851378 6:0.9067632
|
||||
4 1:0.55150951 2:0.13125463 3:0.24550611 4:0.58687978 5:0.79404623 6:0.91217056
|
||||
-4 1:0.70981097 2:0.13125463 3:0.33222561 4:0.74494592 5:0.89826659 6:0.95769783
|
||||
4 1:0.73071683 2:0.13125463 3:0.358983 4:0.7781418 5:0.91310488 6:0.9623323
|
||||
4 1:0.89553429 2:0.13125463 3:0.62745623 4:0.94236465 5:0.97874341 6:0.99066928
|
||||
-4 1:0.51835903 2:0.41227705 3:0.40082289 4:0.55345405 5:0.60797992 6:0.64355438
|
||||
-4 1:0.67524675 2:0.41227705 3:0.43396977 4:0.61807337 5:0.68289571 6:0.72351841
|
||||
-4 1:0.70027899 2:0.41227705 3:0.46160919 4:0.67100337 5:0.74355703 6:0.78820216
|
||||
-4 1:0.78642738 2:0.41227705 3:0.49001346 4:0.72032998 5:0.79167775 6:0.83306235
|
||||
4 1:0.82574317 2:0.41227705 3:0.54962708 4:0.81174952 5:0.87501259 6:0.9070568
|
||||
-4 1:0.97005642 2:0.41227705 3:0.67874954 4:0.94213598 5:0.96846928 6:0.97897375
|
||||
-4 1:0.56379827 2:0.3173053 3:0.62725489 4:0.73401377 5:0.77061361 6:0.79233977
|
||||
4 1:0.69707073 2:0.3173053 3:0.66864069 4:0.79391324 5:0.8324878 6:0.85355213
|
||||
-4 1:0.80573572 2:0.3173053 3:0.72761205 4:0.87368756 5:0.90816269 6:0.92491864
|
||||
4 1:0.84202128 2:0.3173053 3:0.77195881 4:0.9200765 5:0.94626283 6:0.95775509
|
||||
4 1:0.91272868 2:0.3173053 3:0.81030574 4:0.9498361 5:0.96767523 6:0.97518431
|
||||
4 1:0.96863532 2:0.3173053 3:0.83826012 4:0.97494708 5:0.98538861 6:0.98958291
|
||||
4 1:0.97633249 2:0.3173053 3:0.85344648 4:0.98180902 5:0.9896203 6:0.99264501
|
||||
-4 1:0.6558802 3:0.50914684 4:0.83375963 5:0.89809846 6:0.92653187
|
||||
-4 1:0.76884943 3:0.55679293 4:0.89391591 5:0.93860454 6:0.95403218
|
||||
-4 1:0.77375631 3:0.5636812 4:0.90019662 5:0.9427445 6:0.9574506
|
||||
-4 1:0.84303042 3:0.60236618 4:0.93446437 5:0.96242475 6:0.97109062
|
||||
-4 1:0.85951211 3:0.6228269 4:0.94532487 5:0.96833445 6:0.97557224
|
||||
-4 1:0.9261042 3:0.68729659 4:0.96971448 5:0.98303447 6:0.98744411
|
||||
-4 1:0.96470143 3:0.7147545 4:0.98321849 5:0.9919861 6:0.99443831
|
||||
-4 1:0.967065 3:0.7243143 4:0.98476297 5:0.99277815 6:0.99502417
|
||||
4 1:1 2:0.024932462 3:0.99999983 4:0.99999915 5:0.9999982 6:0.99999886
|
||||
-4 1:1 2:0.73888524 3:0.99999999 4:0.99999986 5:0.99999974 6:0.9999997
|
||||
-4 1:1 2:0.95719598 3:0.99999983 4:0.99999957 5:0.99999885 6:0.99999917
|
||||
-4 1:1 2:0.65112312 3:0.99999917 4:0.99999858 5:0.99999805 6:0.99999788
|
||||
-4 1:1 2:0.70765261 3:0.99999958 4:0.99999872 5:0.99999818 6:0.99999796
|
||||
-4 1:1 2:1 3:1 4:0.99999991 5:0.99999965 6:0.99999961
|
||||
-2.67895219796731 1:1 2:0.60048989 3:0.99999945 4:0.99999719 5:0.99999675 6:0.99999724
|
||||
-4 1:0.37561256 2:0.35216405 3:0.14564537 4:0.39790222 5:0.55106678 6:0.67008782
|
||||
-4 1:0.56862883 2:0.35216405 3:0.19411401 4:0.53707663 5:0.68373405 6:0.77053495
|
||||
-4 1:0.59507913 2:0.35216405 3:0.21726037 4:0.59928839 5:0.74861604 6:0.82928713
|
||||
-4 1:0.73092966 2:0.35216405 3:0.27356025 4:0.71390094 5:0.82257087 6:0.87444689
|
||||
4 1:0.75725767 2:0.35216405 3:0.31634112 4:0.79654122 5:0.88915412 6:0.9273156
|
||||
4 1:0.88324277 2:0.35216405 3:0.4403716 4:0.8922293 5:0.93831942 6:0.95845059
|
||||
4 1:0.8933052 2:0.35216405 3:0.47228748 4:0.92107255 5:0.95675014 6:0.97151317
|
||||
4 1:0.9508125 2:0.35216405 3:0.58168899 4:0.90979133 5:0.94735255 6:0.96398348
|
||||
4 1:0.95713874 2:0.35216405 3:0.61027713 4:0.92360129 5:0.95604732 6:0.97013831
|
||||
4 1:0.96971772 2:0.35216405 3:0.67509147 4:0.9486493 5:0.97123348 6:0.98048503
|
||||
-4 1:0.52994813 2:0.024932462 3:0.38547432 4:0.75372022 5:0.84123041 6:0.89486139
|
||||
-4 1:0.53720078 2:0.024932462 3:0.3990632 4:0.77884256 5:0.86263175 6:0.9119893
|
||||
-4 1:0.69594659 2:0.024932462 3:0.42249933 4:0.83012148 5:0.89999703 6:0.9343333
|
||||
-4 1:0.70045567 2:0.024932462 3:0.43485895 4:0.84990814 5:0.91438168 6:0.94468986
|
||||
-4 1:0.81165128 2:0.024932462 3:0.45209767 4:0.87998379 5:0.93121657 6:0.95417334
|
||||
4 1:0.90641987 2:0.024932462 3:0.47995579 4:0.90591955 5:0.94655395 6:0.96494883
|
||||
4 1:0.96394448 2:0.024932462 3:0.49703719 4:0.92208917 5:0.95739033 6:0.97352851
|
||||
4 1:0.97111644 2:0.024932462 3:0.51850714 4:0.94179388 5:0.97018449 6:0.98213448
|
||||
4 2:0.73888524 6:0.010154919
|
||||
-4 1:0.60579512 2:0.73888524 3:0.12893302 4:0.40260054 5:0.52794625 6:0.61631229
|
||||
-4 1:0.75391926 2:0.73888524 3:0.18461005 4:0.49989687 5:0.61178122 6:0.68884477
|
||||
-4 1:0.8153429 2:0.73888524 3:0.23793372 4:0.60651572 5:0.71554025 6:0.78255239
|
||||
-4 1:0.85600941 2:0.73888524 3:0.28629085 4:0.68788242 5:0.78757701 6:0.84353583
|
||||
-4 1:0.89148132 2:0.73888524 3:0.34171535 4:0.76509994 5:0.85013067 6:0.8935626
|
||||
-4 1:0.92852788 2:0.73888524 3:0.42100368 4:0.84916897 5:0.91127553 6:0.93940013
|
||||
-4 1:0.1753977 2:0.95719598 3:0.09552304 4:0.13054246 5:0.15035856 6:0.1699603
|
||||
-4 1:0.45635833 2:0.95719598 3:0.158209 4:0.28040177 5:0.35751004 6:0.42348738
|
||||
4 1:0.69430386 2:0.95719598 3:0.27712969 4:0.53553712 5:0.64647804 6:0.71969773
|
||||
1.823165866970752 1:0.76724888 2:0.95719598 3:0.31108262 4:0.57582518 5:0.67863928 6:0.74667418
|
||||
4 1:0.86571411 2:0.95719598 3:0.3944368 4:0.71882415 5:0.81004305 6:0.8623959
|
||||
4 1:0.90357706 2:0.95719598 3:0.46136994 4:0.80064289 5:0.87542246 6:0.91386276
|
||||
4 1:0.92840891 2:0.95719598 3:0.51989475 4:0.8578363 5:0.9163383 6:0.94388077
|
||||
4 1:0.057186579 2:0.65112312 3:0.074302209 4:0.064066487 5:0.038191765
|
||||
4 1:0.46335071 2:0.65112312 3:0.15651072 4:0.26099077 5:0.31080835 6:0.35093188
|
||||
4 1:0.57170622 2:0.65112312 3:0.19565839 4:0.34034574 5:0.40815216 6:0.46499326
|
||||
4 1:0.61771078 2:0.65112312 3:0.2013411 4:0.37388838 5:0.44991385 6:0.51391699
|
||||
4 1:0.64058636 2:0.65112312 3:0.23392852 4:0.42110826 5:0.50581137 6:0.57392097
|
||||
4 1:0.68648276 2:0.65112312 3:0.23959609 4:0.45613658 5:0.54666909 6:0.61876644
|
||||
4 1:0.79301714 2:0.65112312 3:0.32622773 4:0.62144616 5:0.7212244 6:0.78795799
|
||||
4 1:0.86049974 2:0.65112312 3:0.40728198 4:0.74550855 5:0.83106809 6:0.87888976
|
||||
4 1:0.89790028 2:0.65112312 3:0.47222451 4:0.82140625 5:0.88905388 6:0.92286615
|
||||
4 1:0.29904095 2:0.70765261 3:0.21472932 4:0.38914781 5:0.49769154 6:0.59083219
|
||||
4 1:0.56768263 2:0.70765261 3:0.30308084 4:0.59347344 5:0.71982347 6:0.79614483
|
||||
-4 1:0.69533755 2:0.70765261 3:0.31948376 4:0.61068179 5:0.71809681 6:0.78192463
|
||||
4 1:0.75945348 2:0.70765261 3:0.43714837 4:0.81360207 5:0.89436962 6:0.92985049
|
||||
-4 1:0.93943076 2:0.70765261 3:0.53480784 4:0.86577728 5:0.92039762 6:0.94567054
|
||||
4 1:0.98364834 2:0.70765261 3:0.75735767 4:0.97288667 5:0.98579289 6:0.99060009
|
||||
4 1:0.32002749 2:0.27988388 3:0.045063964 4:0.37692216 5:0.55140675 6:0.69796544
|
||||
-4 1:0.56695344 2:0.27988388 3:0.097210209 4:0.58397601 5:0.7508394 6:0.83948605
|
||||
-4 1:0.70520428 2:0.27988388 3:0.13385033 4:0.67160615 5:0.79655301 6:0.85818695
|
||||
4 1:0.73424456 2:0.27988388 3:0.16265978 4:0.77271887 5:0.87781115 6:0.92030835
|
||||
4 1:0.86954132 2:0.27988388 3:0.25291857 4:0.86032679 5:0.92065002 6:0.94719087
|
||||
4 1:0.87335209 2:0.27988388 3:0.26150142 4:0.87394579 5:0.92955244 6:0.95361972
|
||||
4 1:0.95158679 2:0.27988388 3:0.31469782 4:0.90564041 5:0.9505662 6:0.96731494
|
||||
1.842737810105017 1:0.046480997 2:1 3:0.0036752949 4:0.063426258 5:0.083975821 6:0.10357933
|
||||
-4 1:0.4815399 2:1 3:0.061680284 4:0.28308554 5:0.37269791 6:0.4415304
|
||||
-4 1:0.59466693 2:1 3:0.10183633 4:0.43686442 5:0.55619455 6:0.63614229
|
||||
4 1:0.67663499 2:1 3:0.12768853 4:0.46551139 5:0.57412631 6:0.64893256
|
||||
4 1:0.727837 2:1 3:0.15698565 4:0.54933575 5:0.66054291 6:0.73141004
|
||||
4 1:0.79298458 2:1 3:0.1783044 4:0.58984439 5:0.69884629 6:0.76566769
|
||||
4 1:0.84189758 2:1 3:0.2201085 4:0.67980569 5:0.78117365 6:0.8374729
|
||||
-2.183331561899216 1:0.87582783 2:1 3:0.25791546 4:0.74958011 5:0.83919212 6:0.88469242
|
||||
-4 1:0.93223983 2:1 3:0.34905641 4:0.87203088 5:0.92820957 6:0.95189869
|
||||
-4 1:0.94593957 2:1 3:0.38300199 4:0.90150605 5:0.9468388 6:0.96487186
|
||||
-4 1:0.51879331 2:0.60048989 3:0.30175677 4:0.53715556 5:0.6201217 6:0.69126522
|
||||
-4 1:0.69563267 2:0.60048989 3:0.38974197 4:0.68280797 5:0.7624929 6:0.81933882
|
||||
-4 1:0.78342288 2:0.60048989 3:0.43017021 4:0.73828939 5:0.81072072 6:0.85931014
|
||||
-4 1:0.82362468 2:0.60048989 3:0.49268118 4:0.82332639 5:0.88132959 6:0.91765632
|
||||
4 1:0.89144668 2:0.60048989 3:0.53894393 4:0.87349384 5:0.92016796 6:0.94654988
|
||||
4 1:0.93642466 2:0.60048989 3:0.54466735 4:0.89946619 5:0.94109895 6:0.96142482
|
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl
vendored
Normal file
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'feature_dict'
|
||||
p12
|
||||
(dp13
|
||||
S'VMAF_feature'
|
||||
p14
|
||||
(lp15
|
||||
S'vif_scale0'
|
||||
p16
|
||||
aS'vif_scale1'
|
||||
p17
|
||||
aS'vif_scale2'
|
||||
p18
|
||||
aS'vif_scale3'
|
||||
p19
|
||||
aS'adm2'
|
||||
p20
|
||||
aS'motion'
|
||||
p21
|
||||
assg3
|
||||
S'linear_rescale'
|
||||
p22
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p23
|
||||
(lp24
|
||||
S'VMAF_feature_adm2_score'
|
||||
p25
|
||||
aS'VMAF_feature_motion_score'
|
||||
p26
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p30
|
||||
asS'intercepts'
|
||||
p31
|
||||
(lp32
|
||||
F-0.04672897196261682
|
||||
aF-1.9715194224195431
|
||||
aF-0.022214587359292957
|
||||
aF-0.0821730551735984
|
||||
aF-0.27676003627480394
|
||||
aF-0.46907028940024076
|
||||
aF-0.7460857020871379
|
||||
asS'model_type'
|
||||
p33
|
||||
S'LIBSVMNUSVR'
|
||||
p34
|
||||
sS'model'
|
||||
p35
|
||||
NsS'slopes'
|
||||
p36
|
||||
(lp37
|
||||
F0.0097196261682243
|
||||
aF2.971519422419543
|
||||
aF0.0684615312617113
|
||||
aF1.0821730334476827
|
||||
aF1.276760118174002
|
||||
aF1.469070462304583
|
||||
aF1.7460860425205067
|
||||
ass.
|
153
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl.model
vendored
Normal file
153
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/nflxtrain_vmafv3a.pkl.model
vendored
Normal file
@ -0,0 +1,153 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 146
|
||||
rho -1.25374
|
||||
SV
|
||||
-4 1:1 2:0.80360073 3:0.99999956 4:0.99999617 5:0.99999659 6:0.99999649
|
||||
4 1:1 2:0.060660457 3:0.99999979 4:0.9999997 5:0.9999995 6:0.99999916
|
||||
4 1:1 2:0.25800309 3:0.99999975 4:0.99999676 5:0.99999619 6:0.99999762
|
||||
4 1:1 2:0.13125463 3:0.99999995 4:1 5:0.99999997 6:0.99999982
|
||||
4 1:1 3:0.9999953 4:0.99999163 5:0.99999444 6:0.9999906
|
||||
-4 1:0.55120029 2:0.80360073 3:0.26121942 4:0.6293366 5:0.71975367 6:0.78093108
|
||||
-4 1:0.69994822 2:0.80360073 3:0.30135725 4:0.70722144 5:0.79216822 6:0.83978283
|
||||
-4 1:0.72011021 2:0.80360073 3:0.32121318 4:0.74989787 5:0.83473257 6:0.87962097
|
||||
-4 1:0.80161657 2:0.80360073 3:0.3501572 4:0.79684481 5:0.87136279 6:0.90727549
|
||||
4 1:0.82707856 2:0.80360073 3:0.37930406 4:0.84227672 5:0.90805726 6:0.93746453
|
||||
4 1:0.89751445 2:0.80360073 3:0.41517592 4:0.87673937 5:0.93162471 6:0.95441416
|
||||
4 1:0.94175354 2:0.80360073 3:0.44577851 4:0.91006376 5:0.95340334 6:0.97037481
|
||||
4 1:0.94886911 2:0.80360073 3:0.46794139 4:0.92362274 5:0.96145271 6:0.97586663
|
||||
-4 1:0.40868363 2:0.060660457 3:0.20127881 4:0.43690014 5:0.62303099 6:0.80462761
|
||||
-4 1:0.63428306 2:0.060660457 3:0.29367506 4:0.63478131 5:0.80404493 6:0.90860113
|
||||
-4 1:0.63517172 2:0.060660457 3:0.29742126 4:0.63976608 5:0.8083318 6:0.9121364
|
||||
-4 1:0.76722122 2:0.060660457 3:0.38377254 4:0.78514877 5:0.90429663 6:0.95734326
|
||||
-4 1:0.78174155 2:0.060660457 3:0.40876054 4:0.81261902 5:0.91751826 6:0.96173956
|
||||
4 1:0.91228727 2:0.060660457 3:0.61082239 4:0.94727552 5:0.9778847 6:0.98952764
|
||||
-4 1:0.99904844 2:0.060660457 3:0.93477801 4:0.99671741 5:0.99843624 6:0.99906019
|
||||
-4 1:0.58827841 2:0.25800309 3:0.12270748 4:0.71032975 5:0.79612606 6:0.84328574
|
||||
4 1:0.72787772 2:0.25800309 3:0.13608056 4:0.7652198 5:0.84839563 6:0.88712536
|
||||
4 1:0.73686914 2:0.25800309 3:0.13980216 4:0.78480629 5:0.86663349 6:0.90357662
|
||||
4 1:0.81448411 2:0.25800309 3:0.14751601 4:0.81360437 5:0.89032105 6:0.92210299
|
||||
4 1:0.83242962 2:0.25800309 3:0.15555028 4:0.84004447 5:0.91050996 6:0.938502
|
||||
4 1:0.90008906 2:0.25800309 3:0.16537108 4:0.85778742 5:0.92412308 6:0.94895956
|
||||
-4 1:0.94173707 2:0.25800309 3:0.17317649 4:0.876681 5:0.93779975 6:0.95956764
|
||||
-4 1:0.94484618 2:0.25800309 3:0.18169384 4:0.88732249 5:0.94420428 6:0.96402826
|
||||
4 1:0.47977509 2:0.29975901 3:0.32928412 4:0.55282916 5:0.66791845 6:0.74863576
|
||||
-4 1:0.67040866 2:0.29975901 3:0.38943269 4:0.66545556 5:0.76680794 6:0.81985996
|
||||
-4 1:0.68687131 2:0.29975901 3:0.41023912 4:0.70740496 5:0.81078152 6:0.86221763
|
||||
-4 1:0.78674389 2:0.29975901 3:0.46460529 4:0.78994847 5:0.86913143 6:0.90516139
|
||||
4 1:0.81048086 2:0.29975901 3:0.50312748 4:0.84547503 5:0.91358495 6:0.94168743
|
||||
4 1:0.9100825 2:0.29975901 3:0.61552031 4:0.9147698 5:0.95147469 6:0.96681058
|
||||
4 1:0.98034608 2:0.29975901 3:0.72900944 4:0.95802477 5:0.97650266 6:0.98413271
|
||||
-4 1:0.98374901 2:0.29975901 3:0.74947079 4:0.96647178 5:0.98163931 6:0.98773965
|
||||
4 1:0.21483779 2:0.49240306 3:0.091662564 4:0.1529332 5:0.19165383 6:0.23332771
|
||||
-4 1:0.41372639 2:0.49240306 3:0.11972516 4:0.22858077 5:0.28261732 6:0.32614433
|
||||
-4 1:0.4734512 2:0.49240306 3:0.13945528 4:0.28799635 5:0.36498566 6:0.42609007
|
||||
-4 1:0.5944247 2:0.49240306 3:0.17211443 4:0.36367814 5:0.44650577 6:0.50673632
|
||||
-4 1:0.67573909 2:0.49240306 3:0.2184327 4:0.48605098 5:0.59000253 6:0.65971535
|
||||
4 1:0.78992142 2:0.49240306 3:0.29529412 4:0.58552372 5:0.67661896 6:0.73531212
|
||||
4 1:0.8868928 2:0.49240306 3:0.39750191 4:0.71176991 5:0.79245591 6:0.83806775
|
||||
4 1:0.91206245 2:0.49240306 3:0.44654064 4:0.77534857 5:0.84760758 6:0.88531211
|
||||
4 1:0.29412838 2:0.13125463 3:0.16200315 4:0.37578485 5:0.59320682 6:0.80117536
|
||||
4 1:0.54962761 2:0.13125463 3:0.24393505 4:0.58209165 5:0.78851378 6:0.9067632
|
||||
4 1:0.55150951 2:0.13125463 3:0.24550611 4:0.58687978 5:0.79404623 6:0.91217056
|
||||
4 1:0.70981097 2:0.13125463 3:0.33222561 4:0.74494592 5:0.89826659 6:0.95769783
|
||||
4 1:0.73071683 2:0.13125463 3:0.358983 4:0.7781418 5:0.91310488 6:0.9623323
|
||||
4 1:0.89553429 2:0.13125463 3:0.62745623 4:0.94236465 5:0.97874341 6:0.99066928
|
||||
-4 1:0.99960552 2:0.13125463 3:0.97634186 4:0.99896487 5:0.99945077 6:0.99960846
|
||||
-4 1:0.51835903 2:0.41227705 3:0.40082289 4:0.55345405 5:0.60797992 6:0.64355438
|
||||
-4 1:0.67524675 2:0.41227705 3:0.43396977 4:0.61807337 5:0.68289571 6:0.72351841
|
||||
-4 1:0.70027899 2:0.41227705 3:0.46160919 4:0.67100337 5:0.74355703 6:0.78820216
|
||||
-1.593572091173743 1:0.78642738 2:0.41227705 3:0.49001346 4:0.72032998 5:0.79167775 6:0.83306235
|
||||
4 1:0.82574317 2:0.41227705 3:0.54962708 4:0.81174952 5:0.87501259 6:0.9070568
|
||||
4 1:0.9038342 2:0.41227705 3:0.60120088 4:0.8672518 5:0.91737821 6:0.94093945
|
||||
-4 1:0.9616841 2:0.41227705 3:0.65078047 4:0.92284738 5:0.95658586 6:0.97061867
|
||||
-4 1:0.97005642 2:0.41227705 3:0.67874954 4:0.94213598 5:0.96846928 6:0.97897375
|
||||
-4 1:0.56379827 2:0.3173053 3:0.62725489 4:0.73401377 5:0.77061361 6:0.79233977
|
||||
-4 1:0.69707073 2:0.3173053 3:0.66864069 4:0.79391324 5:0.8324878 6:0.85355213
|
||||
1.027730875070084 1:0.72448597 2:0.3173053 3:0.69473535 4:0.83115605 5:0.87085556 6:0.89202625
|
||||
4 1:0.80573572 2:0.3173053 3:0.72761205 4:0.87368756 5:0.90816269 6:0.92491864
|
||||
4 1:0.84202128 2:0.3173053 3:0.77195881 4:0.9200765 5:0.94626283 6:0.95775509
|
||||
4 1:0.91272868 2:0.3173053 3:0.81030574 4:0.9498361 5:0.96767523 6:0.97518431
|
||||
4 1:0.96863532 2:0.3173053 3:0.83826012 4:0.97494708 5:0.98538861 6:0.98958291
|
||||
4 1:0.97633249 2:0.3173053 3:0.85344648 4:0.98180902 5:0.9896203 6:0.99264501
|
||||
-4 1:0.6558802 3:0.50914684 4:0.83375963 5:0.89809846 6:0.92653187
|
||||
-4 1:0.76884943 3:0.55679293 4:0.89391591 5:0.93860454 6:0.95403218
|
||||
-4 1:0.77375631 3:0.5636812 4:0.90019662 5:0.9427445 6:0.9574506
|
||||
-4 1:0.84303042 3:0.60236618 4:0.93446437 5:0.96242475 6:0.97109062
|
||||
-4 1:0.85951211 3:0.6228269 4:0.94532487 5:0.96833445 6:0.97557224
|
||||
4 1:0.96470143 3:0.7147545 4:0.98321849 5:0.9919861 6:0.99443831
|
||||
4 1:1 2:0.024932462 3:0.99999983 4:0.99999915 5:0.9999982 6:0.99999886
|
||||
-4 1:1 2:0.73888524 3:0.99999999 4:0.99999986 5:0.99999974 6:0.9999997
|
||||
-4 1:1 2:0.95719598 3:0.99999983 4:0.99999957 5:0.99999885 6:0.99999917
|
||||
-4 1:1 2:0.65112312 3:0.99999917 4:0.99999858 5:0.99999805 6:0.99999788
|
||||
-4 1:1 2:0.70765261 3:0.99999958 4:0.99999872 5:0.99999818 6:0.99999796
|
||||
1.794426115107138 1:1 2:0.27988388 3:0.99999999 4:0.99999869 5:0.99999869 6:0.99999817
|
||||
-4 1:1 2:1 3:1 4:0.99999991 5:0.99999965 6:0.99999961
|
||||
-0.9027730414251226 1:1 2:0.60048989 3:0.99999945 4:0.99999719 5:0.99999675 6:0.99999724
|
||||
-4 1:0.37561256 2:0.35216405 3:0.14564537 4:0.39790222 5:0.55106678 6:0.67008782
|
||||
-4 1:0.56862883 2:0.35216405 3:0.19411401 4:0.53707663 5:0.68373405 6:0.77053495
|
||||
-4 1:0.59507913 2:0.35216405 3:0.21726037 4:0.59928839 5:0.74861604 6:0.82928713
|
||||
-4 1:0.73092966 2:0.35216405 3:0.27356025 4:0.71390094 5:0.82257087 6:0.87444689
|
||||
4 1:0.75725767 2:0.35216405 3:0.31634112 4:0.79654122 5:0.88915412 6:0.9273156
|
||||
4 1:0.88324277 2:0.35216405 3:0.4403716 4:0.8922293 5:0.93831942 6:0.95845059
|
||||
4 1:0.8933052 2:0.35216405 3:0.47228748 4:0.92107255 5:0.95675014 6:0.97151317
|
||||
-4 1:0.9508125 2:0.35216405 3:0.58168899 4:0.90979133 5:0.94735255 6:0.96398348
|
||||
4 1:0.95713874 2:0.35216405 3:0.61027713 4:0.92360129 5:0.95604732 6:0.97013831
|
||||
-4 1:0.52994813 2:0.024932462 3:0.38547432 4:0.75372022 5:0.84123041 6:0.89486139
|
||||
-4 1:0.53720078 2:0.024932462 3:0.3990632 4:0.77884256 5:0.86263175 6:0.9119893
|
||||
-4 1:0.69594659 2:0.024932462 3:0.42249933 4:0.83012148 5:0.89999703 6:0.9343333
|
||||
-4 1:0.70045567 2:0.024932462 3:0.43485895 4:0.84990814 5:0.91438168 6:0.94468986
|
||||
-4 1:0.81165128 2:0.024932462 3:0.45209767 4:0.87998379 5:0.93121657 6:0.95417334
|
||||
4 1:0.96394448 2:0.024932462 3:0.49703719 4:0.92208917 5:0.95739033 6:0.97352851
|
||||
4 1:0.97111644 2:0.024932462 3:0.51850714 4:0.94179388 5:0.97018449 6:0.98213448
|
||||
4 2:0.73888524 6:0.010154919
|
||||
-4 1:0.60579512 2:0.73888524 3:0.12893302 4:0.40260054 5:0.52794625 6:0.61631229
|
||||
-4 1:0.75391926 2:0.73888524 3:0.18461005 4:0.49989687 5:0.61178122 6:0.68884477
|
||||
-4 1:0.8153429 2:0.73888524 3:0.23793372 4:0.60651572 5:0.71554025 6:0.78255239
|
||||
2.749026331778182 1:0.85600941 2:0.73888524 3:0.28629085 4:0.68788242 5:0.78757701 6:0.84353583
|
||||
4 1:0.89148132 2:0.73888524 3:0.34171535 4:0.76509994 5:0.85013067 6:0.8935626
|
||||
-4 1:0.1753977 2:0.95719598 3:0.09552304 4:0.13054246 5:0.15035856 6:0.1699603
|
||||
-4 1:0.45635833 2:0.95719598 3:0.158209 4:0.28040177 5:0.35751004 6:0.42348738
|
||||
-1.903654867401171 1:0.76724888 2:0.95719598 3:0.31108262 4:0.57582518 5:0.67863928 6:0.74667418
|
||||
4 1:0.86571411 2:0.95719598 3:0.3944368 4:0.71882415 5:0.81004305 6:0.8623959
|
||||
4 1:0.90357706 2:0.95719598 3:0.46136994 4:0.80064289 5:0.87542246 6:0.91386276
|
||||
4 1:0.92840891 2:0.95719598 3:0.51989475 4:0.8578363 5:0.9163383 6:0.94388077
|
||||
4 1:0.057186579 2:0.65112312 3:0.074302209 4:0.064066487 5:0.038191765
|
||||
4 1:0.46335071 2:0.65112312 3:0.15651072 4:0.26099077 5:0.31080835 6:0.35093188
|
||||
4 1:0.57170622 2:0.65112312 3:0.19565839 4:0.34034574 5:0.40815216 6:0.46499326
|
||||
4 1:0.61771078 2:0.65112312 3:0.2013411 4:0.37388838 5:0.44991385 6:0.51391699
|
||||
4 1:0.64058636 2:0.65112312 3:0.23392852 4:0.42110826 5:0.50581137 6:0.57392097
|
||||
4 1:0.68648276 2:0.65112312 3:0.23959609 4:0.45613658 5:0.54666909 6:0.61876644
|
||||
4 1:0.79301714 2:0.65112312 3:0.32622773 4:0.62144616 5:0.7212244 6:0.78795799
|
||||
4 1:0.86049974 2:0.65112312 3:0.40728198 4:0.74550855 5:0.83106809 6:0.87888976
|
||||
4 1:0.89790028 2:0.65112312 3:0.47222451 4:0.82140625 5:0.88905388 6:0.92286615
|
||||
4 1:0.29904095 2:0.70765261 3:0.21472932 4:0.38914781 5:0.49769154 6:0.59083219
|
||||
4 1:0.56768263 2:0.70765261 3:0.30308084 4:0.59347344 5:0.71982347 6:0.79614483
|
||||
4 1:0.69533755 2:0.70765261 3:0.31948376 4:0.61068179 5:0.71809681 6:0.78192463
|
||||
4 1:0.75945348 2:0.70765261 3:0.43714837 4:0.81360207 5:0.89436962 6:0.92985049
|
||||
-4 1:0.93943076 2:0.70765261 3:0.53480784 4:0.86577728 5:0.92039762 6:0.94567054
|
||||
-4 1:0.98364834 2:0.70765261 3:0.75735767 4:0.97288667 5:0.98579289 6:0.99060009
|
||||
4 1:0.32002749 2:0.27988388 3:0.045063964 4:0.37692216 5:0.55140675 6:0.69796544
|
||||
-4 1:0.56695344 2:0.27988388 3:0.097210209 4:0.58397601 5:0.7508394 6:0.83948605
|
||||
-4 1:0.70520428 2:0.27988388 3:0.13385033 4:0.67160615 5:0.79655301 6:0.85818695
|
||||
-4 1:0.73424456 2:0.27988388 3:0.16265978 4:0.77271887 5:0.87781115 6:0.92030835
|
||||
4 1:0.86954132 2:0.27988388 3:0.25291857 4:0.86032679 5:0.92065002 6:0.94719087
|
||||
4 1:0.87335209 2:0.27988388 3:0.26150142 4:0.87394579 5:0.92955244 6:0.95361972
|
||||
4 1:0.95158679 2:0.27988388 3:0.31469782 4:0.90564041 5:0.9505662 6:0.96731494
|
||||
2.828816678044631 1:0.046480997 2:1 3:0.0036752949 4:0.063426258 5:0.083975821 6:0.10357933
|
||||
-4 1:0.4815399 2:1 3:0.061680284 4:0.28308554 5:0.37269791 6:0.4415304
|
||||
-4 1:0.59466693 2:1 3:0.10183633 4:0.43686442 5:0.55619455 6:0.63614229
|
||||
4 1:0.67663499 2:1 3:0.12768853 4:0.46551139 5:0.57412631 6:0.64893256
|
||||
4 1:0.727837 2:1 3:0.15698565 4:0.54933575 5:0.66054291 6:0.73141004
|
||||
-4 1:0.79298458 2:1 3:0.1783044 4:0.58984439 5:0.69884629 6:0.76566769
|
||||
4 1:0.84189758 2:1 3:0.2201085 4:0.67980569 5:0.78117365 6:0.8374729
|
||||
4 1:0.87582783 2:1 3:0.25791546 4:0.74958011 5:0.83919212 6:0.88469242
|
||||
-4 1:0.93223983 2:1 3:0.34905641 4:0.87203088 5:0.92820957 6:0.95189869
|
||||
-4 1:0.94593957 2:1 3:0.38300199 4:0.90150605 5:0.9468388 6:0.96487186
|
||||
-4 1:0.51879331 2:0.60048989 3:0.30175677 4:0.53715556 5:0.6201217 6:0.69126522
|
||||
-4 1:0.69563267 2:0.60048989 3:0.38974197 4:0.68280797 5:0.7624929 6:0.81933882
|
||||
-4 1:0.78342288 2:0.60048989 3:0.43017021 4:0.73828939 5:0.81072072 6:0.85931014
|
||||
-4 1:0.82362468 2:0.60048989 3:0.49268118 4:0.82332639 5:0.88132959 6:0.91765632
|
||||
-4 1:0.89144668 2:0.60048989 3:0.53894393 4:0.87349384 5:0.92016796 6:0.94654988
|
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/niqe_v0.1.pkl
vendored
Normal file
BIN
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/niqe_v0.1.pkl
vendored
Normal file
Binary file not shown.
104
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl
vendored
Normal file
104
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl
vendored
Normal file
@ -0,0 +1,104 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'score_transform'
|
||||
p4
|
||||
(dp5
|
||||
S'p2'
|
||||
p6
|
||||
F-0.00705305
|
||||
sS'p0'
|
||||
p7
|
||||
F1.70674692
|
||||
sS'p1'
|
||||
p8
|
||||
F1.72643844
|
||||
ssS'norm_type'
|
||||
p9
|
||||
S'clip_0to1'
|
||||
p10
|
||||
sS'score_clip'
|
||||
p11
|
||||
(lp12
|
||||
F0.0
|
||||
aF110.0
|
||||
asS'nu'
|
||||
p13
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p14
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p15
|
||||
(dp16
|
||||
S'model'
|
||||
p17
|
||||
Nsg4
|
||||
g5
|
||||
sg9
|
||||
S'linear_rescale'
|
||||
p18
|
||||
sg11
|
||||
g12
|
||||
sS'feature_names'
|
||||
p19
|
||||
(lp20
|
||||
S'VMAF_feature_adm2_score'
|
||||
p21
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p22
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p23
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p24
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p25
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p26
|
||||
asS'intercepts'
|
||||
p27
|
||||
(lp28
|
||||
F-0.23202029036329092
|
||||
aF-0.7703350310526216
|
||||
aF-0.010411981862966059
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.6161060516582791
|
||||
asS'model_type'
|
||||
p29
|
||||
S'LIBSVMNUSVR'
|
||||
p30
|
||||
sS'slopes'
|
||||
p31
|
||||
(lp32
|
||||
F0.244201478446933
|
||||
aF1.7697551475258635
|
||||
aF0.061831493128738056
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.6161065113575923
|
||||
asS'feature_dict'
|
||||
p33
|
||||
(dp34
|
||||
S'VMAF_feature'
|
||||
p35
|
||||
(lp36
|
||||
S'vif_scale0'
|
||||
p37
|
||||
aS'vif_scale1'
|
||||
p38
|
||||
aS'vif_scale2'
|
||||
p39
|
||||
aS'vif_scale3'
|
||||
p40
|
||||
aS'adm2'
|
||||
p41
|
||||
aS'motion2'
|
||||
p42
|
||||
asss.
|
452
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl.model
vendored
Normal file
452
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_4k_v0.6.1rc.pkl.model
vendored
Normal file
@ -0,0 +1,452 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 445
|
||||
rho -2.09694
|
||||
SV
|
||||
4 1:0.99942012 2:0.066982086 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999415
|
||||
4 1:0.99942012 2:1.7347235e-18 3:0.99999968 4:0.99999846 5:0.99999708 6:0.99999594
|
||||
-4 1:0.99942012 2:0.36765538 3:0.99999849 4:0.99998199 5:0.99998178 6:0.99998358
|
||||
4 1:0.99942012 2:0.085160715 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998104
|
||||
4 1:0.99942012 2:0.031277503 3:0.99999905 4:0.99999854 5:0.99999742 6:0.99999527
|
||||
-4 1:0.99942012 2:0.51305378 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99942012 2:0.25338003 3:0.9999966 4:0.9999921 5:0.99998852 6:0.99998683
|
||||
-4 1:0.99942012 2:0.50056883 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999073
|
||||
-4 1:0.99942012 2:0.21919533 3:0.99999975 4:0.99999351 5:0.99998797 6:0.9999868
|
||||
-4 1:0.99942012 2:0.19903381 3:0.99999974 4:0.99998992 5:0.99998491 6:0.9999861
|
||||
4 1:0.99942012 2:0.086753771 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999303
|
||||
-4 1:0.99942012 2:0.93112465 3:0.99999913 4:0.99999541 5:0.99999285 6:0.99999222
|
||||
-4 1:0.99942012 2:0.49912008 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999634
|
||||
4 1:0.99942012 2:0.083566785 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998373
|
||||
4 1:0.99942012 2:0.038381578 3:0.9999994 4:0.99999903 5:0.99999768 6:0.9999964
|
||||
4 1:0.99942012 2:0.0056646026 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999907
|
||||
4 1:0.99942012 2:0.24376664 3:0.99999484 4:0.99999024 5:0.99998472 6:0.99998206
|
||||
-4 1:0.99942012 2:0.17100887 3:0.99999199 4:0.99999252 5:0.99999031 6:0.99998803
|
||||
-4 1:0.99942012 2:0.58813084 3:0.99999792 4:0.99999625 5:0.99999355 6:0.99999167
|
||||
-4 1:0.99942012 2:1 3:0.99999818 4:0.99999255 5:0.99998938 6:0.99998785
|
||||
-4 1:0.99942012 2:0.18137104 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999094
|
||||
-4 1:0.99942012 2:0.055816361 3:0.99998933 4:0.99998695 5:0.99998657 6:0.99998431
|
||||
4 1:0.97198845 2:0.066982086 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98393918
|
||||
4 1:0.96579652 2:0.066982086 3:0.46988192 4:0.92383404 5:0.95757873 6:0.9709175
|
||||
4 1:0.95599835 2:0.066982086 3:0.44208135 4:0.8901289 5:0.93112702 6:0.94818323
|
||||
4 1:0.9405306 2:0.066982086 3:0.45140723 4:0.91821601 5:0.9544047 6:0.96853331
|
||||
4 1:0.93121498 2:0.066982086 3:0.42756389 4:0.88415491 5:0.92731024 6:0.94469825
|
||||
4 1:0.90839202 2:0.066982086 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95529348
|
||||
-4 1:0.89869065 2:0.066982086 3:0.40580803 4:0.85450813 5:0.90414358 6:0.924202
|
||||
-4 1:0.88405636 2:0.066982086 3:0.38181902 4:0.8098155 5:0.86047538 6:0.88067103
|
||||
-4 1:0.85590093 2:0.066982086 3:0.40304721 4:0.85597966 5:0.91737096 6:0.9416772
|
||||
-4 1:0.84589918 2:0.066982086 3:0.38405986 4:0.81919138 5:0.8810097 6:0.90639859
|
||||
-4 1:0.83060898 2:0.066982086 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85048599
|
||||
-4 1:0.73764497 2:0.066982086 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90378191
|
||||
-4 1:0.72681112 2:0.066982086 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86059284
|
||||
-4 1:0.71190691 2:0.066982086 3:0.33114525 4:0.70635463 5:0.76097853 6:0.79401042
|
||||
-4 1:0.5944414 2:0.066982086 3:0.33608994 4:0.71362303 5:0.76736581 6:0.81309735
|
||||
-4 1:0.5824424 2:0.066982086 3:0.3242142 4:0.68621629 5:0.73148001 6:0.76710537
|
||||
-4 1:0.56462003 2:0.066982086 3:0.30829451 4:0.65018018 5:0.68403685 6:0.70460904
|
||||
-4 1:0.47082734 2:0.066982086 3:0.31899854 4:0.67259186 5:0.70967941 6:0.76061188
|
||||
-4 1:0.46202769 2:0.066982086 3:0.30969518 4:0.65136495 5:0.68132238 6:0.71891505
|
||||
-4 1:0.45268705 2:0.066982086 3:0.29609478 4:0.62046105 5:0.64002486 6:0.65762463
|
||||
4 1:0.93712608 2:0.085160715 3:0.78940676 4:0.94766693 5:0.97049944 6:0.97904995
|
||||
4 1:0.91528445 2:0.085160715 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96379905
|
||||
4 1:0.8859591 2:0.085160715 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93580011
|
||||
4 1:0.91299273 2:0.085160715 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95656721
|
||||
4 1:0.88263194 2:0.085160715 3:0.69546312 4:0.87200488 5:0.90999902 6:0.9247522
|
||||
4 1:0.88572425 2:0.085160715 3:0.69789972 4:0.87983058 5:0.91913978 6:0.9341789
|
||||
-4 1:0.80397764 2:0.085160715 3:0.62943841 4:0.78442623 5:0.81961037 6:0.82747529
|
||||
-4 1:0.81615418 2:0.085160715 3:0.63895062 4:0.80166112 5:0.84609333 6:0.85794141
|
||||
-4 1:0.76649605 2:0.085160715 3:0.60539321 4:0.75077297 5:0.78607721 6:0.78686103
|
||||
-4 1:0.73481296 2:0.085160715 3:0.6111271 4:0.75016894 5:0.79398174 6:0.80364317
|
||||
-4 1:0.68784314 2:0.085160715 3:0.58060257 4:0.70437387 5:0.73465103 6:0.72167366
|
||||
-4 1:0.68707409 2:0.085160715 3:0.62006113 4:0.75287675 5:0.79557065 6:0.83396102
|
||||
-4 1:0.65307257 2:0.085160715 3:0.59379594 4:0.71425087 5:0.74517244 6:0.76334381
|
||||
-4 1:0.61073482 2:0.085160715 3:0.5636273 4:0.6689991 5:0.68518093 6:0.67492346
|
||||
-4 1:0.61059375 2:0.085160715 3:0.60324622 4:0.72279409 5:0.75399448 6:0.78980113
|
||||
-4 1:0.58134293 2:0.085160715 3:0.58086179 4:0.68984664 5:0.71004316 6:0.72270893
|
||||
-4 1:0.54414609 2:0.085160715 3:0.55139557 4:0.64656965 5:0.65206052 6:0.63420941
|
||||
4 1:0.97787595 2:0.031277503 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98918177
|
||||
4 1:0.97055878 2:0.031277503 3:0.73829188 4:0.94562107 5:0.9720532 6:0.98185671
|
||||
4 1:0.96057444 2:0.031277503 3:0.68499274 4:0.91613875 5:0.9539741 6:0.9689666
|
||||
4 1:0.96258894 2:0.031277503 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98450939
|
||||
4 1:0.95381552 2:0.031277503 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97067394
|
||||
-4 1:0.9354107 2:0.031277503 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94034452
|
||||
4 1:0.90036422 2:0.031277503 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97596393
|
||||
1.357291437280774 1:0.88810523 2:0.031277503 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95088258
|
||||
-4 1:0.86859913 2:0.031277503 3:0.47931708 4:0.7776951 5:0.86801434 6:0.90563477
|
||||
4 1:0.80707865 2:0.031277503 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96583631
|
||||
-4 1:0.79538703 2:0.031277503 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93135085
|
||||
-4 1:0.77656338 2:0.031277503 3:0.39315849 4:0.66848161 5:0.80255256 6:0.86714028
|
||||
-4 1:0.60523129 2:0.031277503 3:0.3220426 4:0.54484412 5:0.7193025 6:0.87423756
|
||||
-4 1:0.59546212 2:0.031277503 3:0.30580604 4:0.51190629 5:0.67579634 6:0.8221445
|
||||
-4 1:0.57868041 2:0.031277503 3:0.28190551 4:0.46007761 5:0.60264024 6:0.73034417
|
||||
-4 1:0.38093205 2:0.031277503 3:0.2349948 4:0.36009808 5:0.47156276 6:0.58578102
|
||||
-4 1:0.37012195 2:0.031277503 3:0.22125971 4:0.32959356 5:0.42240276 6:0.51908842
|
||||
4 1:0.22606668 2:0.031277503 3:0.19488505 4:0.27271641 5:0.33648612 6:0.45807194
|
||||
4 1:0.91539884 2:0.51305378 3:0.51488117 4:0.85936589 5:0.92126637 6:0.94844419
|
||||
4 1:0.91452884 2:0.51305378 3:0.51170081 4:0.85742154 5:0.92017755 6:0.94774225
|
||||
4 1:0.89107697 2:0.51305378 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92452581
|
||||
4 1:0.89829921 2:0.51305378 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94300488
|
||||
4 1:0.88163807 2:0.51305378 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92244162
|
||||
4 1:0.83803515 2:0.51305378 3:0.33320494 4:0.67165697 5:0.7906166 6:0.85357118
|
||||
4 1:0.81899838 2:0.51305378 3:0.3381176 4:0.76378989 5:0.88522402 6:0.92696803
|
||||
4 1:0.78375435 2:0.51305378 3:0.28271443 4:0.65320093 5:0.79807098 6:0.86293173
|
||||
4 1:0.73413388 2:0.51305378 3:0.22235436 4:0.5223276 5:0.67415206 6:0.75971164
|
||||
4 1:0.70242504 2:0.51305378 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88419211
|
||||
4 1:0.66828615 2:0.51305378 3:0.1861581 4:0.48473563 5:0.67986667 6:0.79193578
|
||||
2.950636835185708 1:0.6177179 2:0.51305378 3:0.14502789 4:0.37458805 5:0.5431471 6:0.66009305
|
||||
-4 1:0.44365677 2:0.51305378 3:0.084767542 4:0.23463647 5:0.39118915 6:0.5708814
|
||||
4 1:0.38851065 2:0.51305378 3:0.060748299 4:0.16481355 5:0.27425611 6:0.40564049
|
||||
4 1:0.26621453 2:0.51305378 3:0.048508288 4:0.13768591 5:0.24707533 6:0.37682512
|
||||
-4 1:0.11248097 2:0.51305378 3:0.018298168 4:0.05227841 5:0.098051849 6:0.19233528
|
||||
-4 1:0.085495813 2:0.51305378 3:0.010210529 4:0.028715108 5:0.053394221 6:0.10402549
|
||||
2.386539685548377 1:0.044930586 2:0.51305378 3:-1.3877788e-17 4:-2.7755576e-17
|
||||
4 1:0.92375161 2:0.21919533 3:0.28445783 4:0.76256413 5:0.878973 6:0.92787279
|
||||
-4 1:0.91409321 2:0.21919533 3:0.24323732 4:0.70234527 5:0.8362572 6:0.89685293
|
||||
4 1:0.88784186 2:0.21919533 3:0.15914187 4:0.55559405 5:0.71345251 6:0.79807756
|
||||
-4 1:0.90849746 2:0.21919533 3:0.20481669 4:0.64392636 5:0.79442969 6:0.86857525
|
||||
4 1:0.88376489 2:0.21919533 3:0.13872696 4:0.51358873 5:0.67488416 6:0.76453479
|
||||
4 1:0.85236849 2:0.21919533 3:0.10437835 4:0.43810307 5:0.59082415 6:0.67742427
|
||||
4 1:0.87205422 2:0.21919533 3:0.15113761 4:0.53857524 5:0.70165231 6:0.79165034
|
||||
4 1:0.84714523 2:0.21919533 3:0.11205502 4:0.45141136 5:0.60876051 6:0.70043813
|
||||
-4 1:0.8125917 2:0.21919533 3:0.088196383 4:0.39371713 5:0.53694408 6:0.61614718
|
||||
4 1:0.82221569 2:0.21919533 3:0.12620028 4:0.48485111 5:0.64894062 6:0.74210779
|
||||
-4 1:0.75749761 2:0.21919533 3:0.077679983 4:0.36403126 5:0.49643237 6:0.56542395
|
||||
4 1:0.68503682 2:0.21919533 3:0.10106749 4:0.42493279 5:0.58169808 6:0.67976716
|
||||
4 1:0.6579433 2:0.21919533 3:0.083254507 4:0.37713697 5:0.51413321 6:0.59165376
|
||||
4 1:0.5281633 2:0.21919533 3:0.086479478 4:0.38777983 5:0.5308163 6:0.61798689
|
||||
0.9704142083947621 1:0.5020262 2:0.21919533 3:0.072687526 4:0.34936144 5:0.47239557 6:0.53320467
|
||||
4 1:0.46368723 2:0.21919533 3:0.0580781 4:0.30930574 5:0.41085136 6:0.43988071
|
||||
4 1:0.39143833 2:0.21919533 3:0.076394495 4:0.36116467 5:0.49086262 6:0.56511363
|
||||
4 1:0.36952908 2:0.21919533 3:0.065775733 4:0.33141351 5:0.44429517 6:0.4913635
|
||||
4 1:0.33339911 2:0.21919533 3:0.052980146 4:0.29595567 5:0.38900859 6:0.40359929
|
||||
4 1:0.92401258 2:0.083566785 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97760926
|
||||
4 1:0.898117 2:0.083566785 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95382062
|
||||
4 1:0.86728715 2:0.083566785 3:0.063594449 4:0.83329523 5:0.89705938 6:0.91771942
|
||||
4 1:0.87476477 2:0.083566785 3:0.080783435 4:0.8868064 5:0.93958114 6:0.9566194
|
||||
4 1:0.84792993 2:0.083566785 3:0.064276214 4:0.83712744 5:0.90102313 6:0.92231075
|
||||
4 1:0.81216698 2:0.083566785 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87316982
|
||||
4 1:0.81934052 2:0.083566785 3:0.066615908 4:0.85255528 5:0.91699879 6:0.93847994
|
||||
4 1:0.79269825 2:0.083566785 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89328236
|
||||
-4 1:0.75435054 2:0.083566785 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83095518
|
||||
4 1:0.76462018 2:0.083566785 3:0.0553861 4:0.81573181 5:0.89228763 6:0.91968933
|
||||
4 1:0.73885186 2:0.083566785 3:0.043258869 4:0.76460435 5:0.83920864 6:0.86497684
|
||||
-4 1:0.70131753 2:0.083566785 3:0.030922104 4:0.71254668 5:0.77850594 6:0.79499845
|
||||
4 1:0.64996518 2:0.083566785 3:0.038013615 4:0.75176999 5:0.83528432 6:0.8761223
|
||||
-4 1:0.58208034 2:0.083566785 3:0.02136261 4:0.67291865 5:0.72892243 6:0.7359498
|
||||
4 1:0.50173523 2:0.083566785 3:0.022946892 4:0.68323749 5:0.74386141 6:0.76105044
|
||||
-4 1:0.46475814 2:0.083566785 3:0.015447998 4:0.64780359 5:0.69255168 6:0.68559851
|
||||
4 1:0.42842996 2:0.083566785 3:0.022697618 4:0.68415777 5:0.74445841 6:0.77043548
|
||||
4 1:0.40670967 2:0.083566785 3:0.017681529 4:0.65971271 5:0.70852034 6:0.71371845
|
||||
-4 1:0.37344018 2:0.083566785 3:0.011635393 4:0.63097298 5:0.66613358 6:0.64656877
|
||||
4 1:0.91873538 2:0.50056883 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97048694
|
||||
4 1:0.89164964 2:0.50056883 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93433985
|
||||
-3.203026450062665 1:0.863759 2:0.50056883 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88290351
|
||||
4 1:0.88460022 2:0.50056883 3:0.31836031 4:0.81090768 5:0.887565 6:0.92211076
|
||||
4 1:0.85683964 2:0.50056883 3:0.28280816 4:0.74746763 5:0.83272303 6:0.87404926
|
||||
4 1:0.85049524 2:0.50056883 3:0.29695396 4:0.76665422 5:0.85020434 6:0.88973006
|
||||
-4 1:0.82006977 2:0.50056883 3:0.26264354 4:0.69736365 5:0.7831915 6:0.82687693
|
||||
-4 1:0.78254518 2:0.50056883 3:0.22613832 4:0.61849783 5:0.69510002 6:0.73311334
|
||||
4 1:0.80733194 2:0.50056883 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86022443
|
||||
-4 1:0.77383636 2:0.50056883 3:0.24391634 4:0.65464587 5:0.73815109 6:0.78152293
|
||||
-4 1:0.73324083 2:0.50056883 3:0.20960427 4:0.57721443 5:0.64402187 6:0.67348331
|
||||
-4 1:0.66414559 2:0.50056883 3:0.21497621 4:0.58612074 5:0.65621763 6:0.69510242
|
||||
-4 1:0.62089809 2:0.50056883 3:0.18639866 4:0.5184118 5:0.56298176 6:0.56899687
|
||||
-4 1:0.58088025 2:0.50056883 3:0.211298 4:0.57777075 5:0.64729662 6:0.69413904
|
||||
-4 1:0.54971412 2:0.50056883 3:0.19342012 4:0.53427881 5:0.58548314 6:0.60667079
|
||||
-4 1:0.51561769 2:0.50056883 3:0.17138706 4:0.48192745 5:0.50981682 6:0.4934389
|
||||
-4 1:0.45656852 2:0.50056883 3:0.17890259 4:0.49936733 5:0.53431359 6:0.53329219
|
||||
-4 1:0.42312321 2:0.50056883 3:0.16109051 4:0.45685412 5:0.47167834 6:0.43417654
|
||||
4 1:0.97650458 2:0.086753771 3:0.646082 4:0.95530639 5:0.9767318 6:0.98498568
|
||||
4 1:0.96678854 2:0.086753771 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97259263
|
||||
4 1:0.92293751 2:0.086753771 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96766492
|
||||
4 1:0.90936711 2:0.086753771 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94049879
|
||||
-4 1:0.88707884 2:0.086753771 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89379299
|
||||
4 1:0.87092535 2:0.086753771 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95167099
|
||||
-4 1:0.85680158 2:0.086753771 3:0.52208828 4:0.83957283 5:0.88962492 6:0.91124431
|
||||
-4 1:0.8361157 2:0.086753771 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85140888
|
||||
4 1:0.79355684 2:0.086753771 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93484458
|
||||
-4 1:0.77836848 2:0.086753771 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88201052
|
||||
-4 1:0.75236287 2:0.086753771 3:0.44850836 4:0.72304483 5:0.77871009 6:0.80279637
|
||||
-4 1:0.63620888 2:0.086753771 3:0.44811738 4:0.71722262 5:0.77852333 6:0.82484549
|
||||
-4 1:0.61681756 2:0.086753771 3:0.41455634 4:0.65898565 5:0.7066917 6:0.73619874
|
||||
-4 1:0.48054298 2:0.086753771 3:0.43433493 4:0.68980457 5:0.74420076 6:0.79465003
|
||||
-4 1:0.44728721 2:0.086753771 3:0.41290869 4:0.6515686 5:0.69403079 6:0.72854994
|
||||
-4 1:0.42439868 2:0.086753771 3:0.38324463 4:0.59899705 5:0.62542129 6:0.63590069
|
||||
4 1:0.36897863 2:0.086753771 3:0.40196048 4:0.63234535 5:0.67000461 6:0.71994358
|
||||
-4 1:0.35543771 2:0.086753771 3:0.3843145 4:0.60046279 5:0.62750482 6:0.65698684
|
||||
2.914410059562784 1:0.33830215 2:0.086753771 3:0.36080477 4:0.55822348 5:0.57073663 6:0.57188815
|
||||
1.895213943596187 1:0.95548513 2:0.49912008 3:0.65969986 4:0.90653233 5:0.94680111 6:0.96314051
|
||||
4 1:0.93695649 2:0.49912008 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92216691
|
||||
-4 1:0.91018094 2:0.49912008 3:0.52675557 4:0.75232557 5:0.81678388 6:0.84706007
|
||||
4 1:0.87473643 2:0.49912008 3:0.54882568 4:0.79721591 5:0.86027193 6:0.8893483
|
||||
4 1:0.8442121 2:0.49912008 3:0.48353911 4:0.70508019 5:0.770587 6:0.79975503
|
||||
-4 1:0.80811746 2:0.49912008 3:0.42019162 4:0.60634089 5:0.66016059 6:0.67571971
|
||||
4 1:0.82035598 2:0.49912008 3:0.49259836 4:0.7117051 5:0.78203532 6:0.81620825
|
||||
4 1:0.72913403 2:0.49912008 3:0.36609086 4:0.5124543 5:0.55235296 6:0.54939787
|
||||
4 1:0.75981517 2:0.49912008 3:0.45030562 4:0.6405497 5:0.71098466 6:0.74265616
|
||||
-4 1:0.67348114 2:0.49912008 3:0.32785534 4:0.44278414 5:0.46803981 6:0.44514459
|
||||
4 1:0.63077044 2:0.49912008 3:0.39943043 4:0.54621466 5:0.59971792 6:0.62680576
|
||||
4 1:0.58662689 2:0.49912008 3:0.34225148 4:0.45255833 5:0.47917361 6:0.46966245
|
||||
-4 1:0.53510684 2:0.49912008 3:0.28723094 4:0.3630784 5:0.36155632 6:0.30898705
|
||||
4 1:0.48801715 2:0.49912008 3:0.36091767 4:0.47414782 5:0.50203091 6:0.50307911
|
||||
4 1:0.44501169 2:0.49912008 3:0.30897915 4:0.3896105 5:0.39059442 6:0.35056971
|
||||
-4 1:0.39090034 2:0.49912008 3:0.25797424 4:0.30816486 5:0.2829338 6:0.19961093
|
||||
4 1:0.37297308 2:0.49912008 3:0.33118399 4:0.42270482 5:0.43137066 6:0.40914975
|
||||
4 1:0.33518191 2:0.49912008 3:0.28516121 4:0.34844872 5:0.33277335 6:0.26749494
|
||||
4 1:0.28800638 2:0.49912008 3:0.239294 4:0.27618757 5:0.23743598 6:0.13120662
|
||||
4 1:1 2:0.0056646026 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99873524
|
||||
4 1:0.99931026 2:0.0056646026 3:0.97396968 4:0.99499278 5:0.99653001 6:0.9973986
|
||||
4 1:0.99816614 2:0.0056646026 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99636093
|
||||
4 1:0.9288562 2:0.0056646026 3:0.88463259 4:0.98984367 5:0.99445867 6:0.995786
|
||||
4 1:0.92597255 2:0.0056646026 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99381702
|
||||
4 1:0.91645317 2:0.0056646026 3:0.87943561 4:0.97844374 5:0.98618184 6:0.98979529
|
||||
-4 1:0.86311749 2:0.0056646026 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99358545
|
||||
-4 1:0.85670344 2:0.0056646026 3:0.86241965 4:0.95421974 5:0.98239426 6:0.98999366
|
||||
-4 1:0.83570169 2:0.0056646026 3:0.85970304 4:0.94347269 5:0.97198968 6:0.9829336
|
||||
-4 1:0.78424676 2:0.0056646026 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98258391
|
||||
-4 1:0.77472148 2:0.0056646026 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97352348
|
||||
-4 1:0.63074563 2:0.0056646026 3:0.83940428 4:0.87369959 5:0.90465003 6:0.95891922
|
||||
-4 1:0.61732456 2:0.0056646026 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95248837
|
||||
-4 1:0.60400299 2:0.0056646026 3:0.83696642 4:0.86758813 5:0.893872 6:0.94095797
|
||||
-0.9969735499373782 1:0.44666075 2:0.0056646026 3:0.82941095 4:0.83902061 5:0.84510353 6:0.86479425
|
||||
-4 1:0.42720113 2:0.0056646026 3:0.82840514 4:0.8368136 5:0.84093631 6:0.86069536
|
||||
4 1:0.32191329 2:0.0056646026 3:0.82647757 4:0.82867904 5:0.8248098 6:0.85712218
|
||||
-4 1:0.91083389 2:0.18137104 3:0.43817477 4:0.82784627 5:0.90710157 6:0.93693892
|
||||
4 1:0.90856257 2:0.18137104 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93285734
|
||||
-4 1:0.87872428 2:0.18137104 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87098551
|
||||
4 1:0.87403996 2:0.18137104 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91552417
|
||||
4 1:0.84337627 2:0.18137104 3:0.36858627 4:0.72304979 5:0.81750507 6:0.85702167
|
||||
-4 1:0.8023323 2:0.18137104 3:0.33543633 4:0.65617509 5:0.74453253 6:0.77872955
|
||||
4 1:0.83024658 2:0.18137104 3:0.37726233 4:0.73857387 5:0.83579524 6:0.87723939
|
||||
-4 1:0.79930881 2:0.18137104 3:0.34480055 4:0.67269731 5:0.7665205 6:0.80676332
|
||||
-4 1:0.75658523 2:0.18137104 3:0.31379389 4:0.60684271 5:0.68827333 6:0.71587159
|
||||
4 1:0.76244957 2:0.18137104 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84154391
|
||||
1.326557185158217 1:0.72861109 2:0.18137104 3:0.32647994 4:0.63142698 5:0.72248224 6:0.7603012
|
||||
-4 1:0.6817498 2:0.18137104 3:0.29749496 4:0.56835508 5:0.64245656 6:0.66218172
|
||||
4 1:0.63987996 2:0.18137104 3:0.32749068 4:0.63131327 5:0.72687613 6:0.77733535
|
||||
-4 1:0.60589102 2:0.18137104 3:0.30296925 4:0.57601896 5:0.65321265 6:0.68252014
|
||||
-4 1:0.56282303 2:0.18137104 3:0.27770782 4:0.51923537 5:0.57477828 6:0.57427046
|
||||
4 1:0.50326422 2:0.18137104 3:0.30820332 4:0.58503378 5:0.66456631 6:0.70302161
|
||||
4 1:0.46650558 2:0.18137104 3:0.28822665 4:0.53887566 5:0.59925188 6:0.61091164
|
||||
-4 1:0.42647605 2:0.18137104 3:0.26598279 4:0.48912153 5:0.52873127 6:0.5083352
|
||||
4 1:0.41938441 2:0.18137104 3:0.29566289 4:0.55497136 5:0.62126765 6:0.64697909
|
||||
4 1:0.39395172 2:0.18137104 3:0.2785156 4:0.5155536 5:0.56455807 6:0.56071366
|
||||
4 1:0.91802622 2:0.50462169 3:0.66450355 4:0.80596874 5:0.85234652 6:0.8753001
|
||||
4 1:0.89534709 2:0.50462169 3:0.60634987 4:0.74269284 5:0.79288453 6:0.81691098
|
||||
4 1:0.90277337 2:0.50462169 3:0.61891626 4:0.7439809 5:0.79599924 6:0.8220212
|
||||
4 1:0.86363535 2:0.50462169 3:0.52837485 4:0.63486561 5:0.68299362 6:0.70295137
|
||||
4 1:0.81077809 2:0.50462169 3:0.43717522 4:0.51607591 5:0.54885724 6:0.54816555
|
||||
4 1:0.85958022 2:0.50462169 3:0.55438694 4:0.6649763 5:0.72153594 6:0.74820122
|
||||
4 1:0.81375084 2:0.50462169 3:0.46441012 4:0.54740681 5:0.58925859 6:0.59994977
|
||||
4 1:0.67681284 2:0.50462169 3:0.37458409 4:0.41788319 5:0.43645975 6:0.43120287
|
||||
-4 1:0.61683458 2:0.50462169 3:0.30056128 4:0.31413768 5:0.30271973 6:0.25123798
|
||||
4 1:0.5227179 2:0.50462169 3:0.32347632 4:0.33923024 5:0.33162378 6:0.29245324
|
||||
-4 1:0.46465267 2:0.50462169 3:0.25628796 4:0.24620344 5:0.21006495 6:0.12205027
|
||||
4 1:0.42317708 2:0.50462169 3:0.35261394 4:0.37250653 5:0.36868 6:0.34317173
|
||||
-4 1:0.38040097 2:0.50462169 3:0.28814241 4:0.28523554 5:0.25614578 6:0.1831917
|
||||
4 1:0.32788426 2:0.50462169 3:0.22684164 4:0.20195867 5:0.14828752 6:0.029394958
|
||||
4 1:0.99083143 2:1.7347235e-18 3:0.81027062 4:0.96054762 5:0.98118348 6:0.98842521
|
||||
4 1:0.98544879 2:1.7347235e-18 3:0.75378028 4:0.93644986 5:0.96794032 6:0.97974964
|
||||
4 1:0.97474426 2:1.7347235e-18 3:0.66442178 4:0.88373114 5:0.93614568 6:0.95784876
|
||||
4 1:0.90172901 2:1.7347235e-18 3:0.47828073 4:0.85972149 5:0.95870305 6:0.97817459
|
||||
4 1:0.89371599 2:1.7347235e-18 3:0.44764422 4:0.81740587 5:0.9283697 6:0.95729239
|
||||
4 1:0.8798936 2:1.7347235e-18 3:0.4097556 4:0.75184125 5:0.87492753 6:0.9179173
|
||||
4 1:0.77500081 2:1.7347235e-18 3:0.33251373 4:0.65349215 5:0.85269534 6:0.95869531
|
||||
4 1:0.76708713 2:1.7347235e-18 3:0.31313727 4:0.61858053 5:0.81684429 6:0.92640865
|
||||
4 1:0.75331238 2:1.7347235e-18 3:0.29082402 4:0.56906534 5:0.75808327 6:0.86888068
|
||||
4 1:0.4850078 2:1.7347235e-18 3:0.18748544 4:0.35105253 5:0.52613913 6:0.77452524
|
||||
4 1:0.47853859 2:1.7347235e-18 3:0.17966628 4:0.33375583 5:0.50244671 6:0.73868305
|
||||
4 1:0.46552016 2:1.7347235e-18 3:0.16981042 4:0.30960116 5:0.46347074 6:0.67721695
|
||||
4 1:0.20027764 2:1.7347235e-18 3:0.12915484 4:0.21010799 5:0.30011475 6:0.42633025
|
||||
4 1:0.19519479 2:1.7347235e-18 3:0.12478033 4:0.19981571 5:0.28454732 6:0.40573647
|
||||
4 1:0.1861881 2:1.7347235e-18 3:0.11948551 4:0.1867495 5:0.26185955 6:0.37204965
|
||||
4 1:0.011804195 2:1.7347235e-18 3:0.098926652 4:0.13459664 5:0.16787097 6:0.29885448
|
||||
4 1:0.0081914983 2:1.7347235e-18 3:0.096454869 4:0.12879556 5:0.15846198 6:0.28006589
|
||||
4 2:1.7347235e-18 3:0.092696543 4:0.11997679 5:0.14306918 6:0.24687576
|
||||
-4 1:0.85312634 2:0.36765538 3:0.23323478 4:0.75156796 5:0.88366466 6:0.92196858
|
||||
-4 1:0.81509288 2:0.36765538 3:0.17749974 4:0.67387368 5:0.82156106 6:0.86519164
|
||||
-4 1:0.7794255 2:0.36765538 3:0.15021134 4:0.61848877 5:0.75876204 6:0.79613476
|
||||
-4 1:0.8239825 2:0.36765538 3:0.18685062 4:0.68599428 5:0.83450905 6:0.87991221
|
||||
-4 1:0.79166 2:0.36765538 3:0.15875657 4:0.63084943 5:0.77513788 6:0.81754186
|
||||
-4 1:0.75364561 2:0.36765538 3:0.13273893 4:0.57499665 5:0.70593055 6:0.73524263
|
||||
-4 1:0.79489544 2:0.36765538 3:0.1695644 4:0.65383021 5:0.80365914 6:0.84777296
|
||||
-4 1:0.76289758 2:0.36765538 3:0.14557756 4:0.60157381 5:0.74091944 6:0.77707867
|
||||
-4 1:0.71962567 2:0.36765538 3:0.12081198 4:0.54542721 5:0.6678827 6:0.68693488
|
||||
-4 1:0.71286285 2:0.36765538 3:0.14242971 4:0.59658431 5:0.73907238 6:0.78722774
|
||||
-4 1:0.67841562 2:0.36765538 3:0.12293203 4:0.54992184 5:0.67534207 6:0.70436767
|
||||
-4 1:0.63498336 2:0.36765538 3:0.1022148 4:0.50091782 5:0.60603253 6:0.60845396
|
||||
-4 1:0.60593754 2:0.36765538 3:0.1218267 4:0.54985771 5:0.67617027 6:0.71174357
|
||||
-4 1:0.57383621 2:0.36765538 3:0.10572155 4:0.51016441 5:0.61866105 6:0.63013881
|
||||
-4 1:0.53480081 2:0.36765538 3:0.08850881 4:0.46862329 5:0.5578505 6:0.54043477
|
||||
-4 1:0.50087418 2:0.36765538 3:0.10588627 4:0.51302188 5:0.62321938 6:0.64340546
|
||||
-4 1:0.47211473 2:0.36765538 3:0.092643424 4:0.47997134 5:0.57425215 6:0.5674261
|
||||
-4 1:0.43607457 2:0.36765538 3:0.07793147 4:0.44457013 5:0.52218497 6:0.48662128
|
||||
-4 1:0.88690007 2:0.25338003 3:0.56755727 4:0.82759293 5:0.86753313 6:0.88353287
|
||||
-4 1:0.85949887 2:0.25338003 3:0.48946433 4:0.76798142 5:0.80864694 6:0.82082141
|
||||
-4 1:0.82949912 2:0.25338003 3:0.41988875 4:0.70909671 5:0.7445599 6:0.74611011
|
||||
-4 1:0.7866736 2:0.25338003 3:0.42067163 4:0.79781223 5:0.83441061 6:0.84889132
|
||||
-4 1:0.76379046 2:0.25338003 3:0.38664209 4:0.74191548 5:0.77458159 6:0.78083962
|
||||
-4 1:0.73902501 2:0.25338003 3:0.3538151 4:0.68614639 5:0.7112502 6:0.70321308
|
||||
-4 1:0.77827754 2:0.25338003 3:0.40679917 4:0.76538025 5:0.8018133 6:0.81088812
|
||||
-4 1:0.75369877 2:0.25338003 3:0.37421349 4:0.70984921 5:0.73965579 6:0.73777625
|
||||
-4 1:0.7278976 2:0.25338003 3:0.34026617 4:0.65126699 5:0.67129811 6:0.65249488
|
||||
-4 1:0.75377104 2:0.25338003 3:0.39247186 4:0.7301687 5:0.75836676 6:0.76594647
|
||||
-4 1:0.73040051 2:0.25338003 3:0.36036802 4:0.67335336 5:0.69127914 6:0.68163888
|
||||
-4 1:0.70027641 2:0.25338003 3:0.32660863 4:0.61237812 5:0.61668612 6:0.5840115
|
||||
-4 1:0.70984517 2:0.25338003 3:0.37767177 4:0.70179069 5:0.71909602 6:0.71741121
|
||||
-4 1:0.6861398 2:0.25338003 3:0.34917171 4:0.64828284 5:0.65368515 6:0.63156363
|
||||
-4 1:0.65670425 2:0.25338003 3:0.3167051 4:0.58852172 5:0.57955902 6:0.53190813
|
||||
-4 1:0.65101527 2:0.25338003 3:0.35891735 4:0.67203191 5:0.68126054 6:0.67202645
|
||||
-4 1:0.6301414 2:0.25338003 3:0.33425342 4:0.62359803 5:0.62053801 6:0.58701157
|
||||
-4 1:0.59912855 2:0.25338003 3:0.30367829 4:0.56500336 5:0.54683736 6:0.48345019
|
||||
4 1:0.87249159 2:0.19903381 3:0.18110509 4:0.66627054 5:0.8370472 6:0.89100789
|
||||
-4 1:0.84302185 2:0.19903381 3:0.1214312 4:0.58061821 5:0.76873939 6:0.82962628
|
||||
-4 1:0.80840598 2:0.19903381 3:0.095484466 4:0.51547002 5:0.693639 6:0.74734168
|
||||
-4 1:0.84124536 2:0.19903381 3:0.13325045 4:0.60749049 5:0.79687222 6:0.85925065
|
||||
-4 1:0.81201345 2:0.19903381 3:0.10617429 4:0.53925437 5:0.72458235 6:0.78610697
|
||||
-4 1:0.77374542 2:0.19903381 3:0.082820831 4:0.47470197 5:0.64344905 6:0.69098973
|
||||
4 1:0.79760161 2:0.19903381 3:0.11887858 4:0.5736105 5:0.76569888 6:0.82985727
|
||||
-4 1:0.72890043 2:0.19903381 3:0.074805111 4:0.44755874 5:0.60667374 6:0.64497069
|
||||
-4 1:0.69459303 2:0.19903381 3:0.096752861 4:0.51540239 5:0.70270408 6:0.77344363
|
||||
-4 1:0.6661214 2:0.19903381 3:0.080427982 4:0.46434716 5:0.63143375 6:0.68324712
|
||||
-4 1:0.62963013 2:0.19903381 3:0.06117267 4:0.40584153 5:0.54721647 6:0.56970762
|
||||
-4 1:0.5849683 2:0.19903381 3:0.081310833 4:0.46992415 5:0.64123154 6:0.70252115
|
||||
-4 1:0.55914878 2:0.19903381 3:0.067675013 4:0.42627673 5:0.57639795 6:0.61320786
|
||||
-4 1:0.5270475 2:0.19903381 3:0.050999978 4:0.37485914 5:0.49967681 6:0.50296567
|
||||
-4 1:0.48310242 2:0.19903381 3:0.068528834 4:0.43129736 5:0.58438892 6:0.63368239
|
||||
-4 1:0.46184527 2:0.19903381 3:0.057273867 4:0.3954128 5:0.52978229 6:0.55058745
|
||||
-4 1:0.43179336 2:0.19903381 3:0.041563403 4:0.34709246 5:0.45703844 6:0.44020896
|
||||
-4 1:0.91278217 2:0.93112465 3:0.39371196 4:0.7545613 5:0.86991379 6:0.91308438
|
||||
-4 1:0.88344762 2:0.93112465 3:0.34508607 4:0.67793846 5:0.8014392 6:0.85048379
|
||||
-4 1:0.85429886 2:0.93112465 3:0.31628946 4:0.62120253 5:0.73475375 6:0.77665992
|
||||
-4 1:0.86030497 2:0.93112465 3:0.34297157 4:0.68034432 5:0.80534029 6:0.85818471
|
||||
-4 1:0.83485887 2:0.93112465 3:0.3157892 4:0.62432586 5:0.7404873 6:0.78824758
|
||||
-4 1:0.79674792 2:0.93112465 3:0.29062721 4:0.57065341 5:0.67155999 6:0.70458289
|
||||
-4 1:0.80413484 2:0.93112465 3:0.32317296 4:0.64035823 5:0.7637059 6:0.81336807
|
||||
-4 1:0.77375786 2:0.93112465 3:0.299113 4:0.58747656 5:0.69602523 6:0.7339953
|
||||
-4 1:0.73437057 2:0.93112465 3:0.27504935 4:0.53527358 5:0.62606154 6:0.64538104
|
||||
-4 1:0.6470083 2:0.93112465 3:0.27600541 4:0.53408068 5:0.62480209 6:0.64871016
|
||||
-4 1:0.60880094 2:0.93112465 3:0.25488527 4:0.48673425 5:0.5563716 6:0.55189701
|
||||
4 1:0.51970286 2:0.93112465 3:0.27485616 4:0.53152867 5:0.6208702 6:0.65397662
|
||||
-4 1:0.49261431 2:0.93112465 3:0.25832173 4:0.49272748 5:0.56330385 6:0.5696983
|
||||
-4 1:0.45750892 2:0.93112465 3:0.2392858 4:0.44945834 5:0.49964894 6:0.47516791
|
||||
4 1:0.35998146 2:0.93112465 3:0.25964586 4:0.49707985 5:0.5680592 6:0.58600977
|
||||
4 1:0.97777646 2:0.038650218 3:0.88502578 4:0.97235291 5:0.98494629 6:0.98985494
|
||||
4 1:0.96354006 2:0.038650218 3:0.83969234 4:0.95081677 5:0.97080739 6:0.97939093
|
||||
4 1:0.88800601 2:0.038650218 3:0.71489993 4:0.93202454 5:0.96892208 6:0.97962477
|
||||
4 1:0.86984899 2:0.038650218 3:0.68962456 4:0.89929255 5:0.94389585 6:0.96003642
|
||||
-4 1:0.84171907 2:0.038650218 3:0.65355091 4:0.84980065 5:0.9022834 6:0.92477323
|
||||
4 1:0.79141786 2:0.038650218 3:0.63352726 4:0.85733425 5:0.9361034 6:0.96489052
|
||||
4 1:0.77248968 2:0.038650218 3:0.6143632 4:0.82223934 5:0.90130898 6:0.93426582
|
||||
-4 1:0.74342258 2:0.038650218 3:0.58728709 4:0.77250209 5:0.84890675 6:0.88447167
|
||||
4 1:0.60173615 2:0.038650218 3:0.54248557 4:0.70583501 5:0.81281717 6:0.89935278
|
||||
-4 1:0.58110034 2:0.038650218 3:0.5296944 4:0.67796942 5:0.77377664 6:0.8511401
|
||||
4 1:0.55061903 2:0.038650218 3:0.51140717 4:0.63851335 5:0.71767063 6:0.77967082
|
||||
4 1:0.40530873 2:0.038650218 3:0.49481226 4:0.60424494 5:0.68247057 6:0.74915795
|
||||
4 1:0.38943284 2:0.038650218 3:0.48549858 4:0.58366723 5:0.65010226 6:0.70575688
|
||||
4 1:0.36011559 2:0.038650218 3:0.47155059 4:0.55321396 5:0.60209707 6:0.63919789
|
||||
4 1:0.24379329 2:0.038650218 3:0.46582256 4:0.53906 5:0.58437712 6:0.65546689
|
||||
4 1:0.22752521 2:0.038650218 3:0.45837792 4:0.52284695 5:0.55777099 6:0.60992109
|
||||
4 1:0.20527663 2:0.038650218 3:0.44727194 4:0.49924066 5:0.51962103 6:0.54459734
|
||||
4 1:0.89358977 2:0.24376664 3:0.35317719 4:0.82465143 5:0.8994225 6:0.92706789
|
||||
4 1:0.85648309 2:0.24376664 3:0.29514881 4:0.74401743 5:0.83191275 6:0.86682886
|
||||
4 1:0.80988243 2:0.24376664 3:0.24667992 4:0.66029738 5:0.74617116 6:0.77867358
|
||||
4 1:0.86022677 2:0.24376664 3:0.31314208 4:0.76967798 5:0.85596968 6:0.89032531
|
||||
4 1:0.8227529 2:0.24376664 3:0.26408953 4:0.68640792 5:0.7755904 6:0.81220373
|
||||
4 1:0.77376193 2:0.24376664 3:0.22340466 4:0.60854418 5:0.68597944 6:0.71076486
|
||||
4 1:0.82122488 2:0.24376664 3:0.28379756 4:0.72183614 5:0.81453606 6:0.85256083
|
||||
4 1:0.7836119 2:0.24376664 3:0.24308998 4:0.64366162 5:0.72839217 6:0.76145325
|
||||
4 1:0.72384748 2:0.24376664 3:0.24677447 4:0.64883302 5:0.73687753 6:0.77771342
|
||||
4 1:0.68967258 2:0.24376664 3:0.21693033 4:0.58658549 5:0.65560168 6:0.6746019
|
||||
-4 1:0.64261148 2:0.24376664 3:0.1884416 4:0.52779375 5:0.57548273 6:0.56415725
|
||||
4 1:0.61530293 2:0.24376664 3:0.22468098 4:0.60196943 5:0.67576232 6:0.70352172
|
||||
4 1:0.51432215 2:0.24376664 3:0.20974549 4:0.5703964 5:0.63154557 6:0.64391788
|
||||
4 1:0.48610214 2:0.24376664 3:0.18971519 4:0.52858301 5:0.57240397 6:0.55482667
|
||||
4 1:0.45242018 2:0.24376664 3:0.16774156 4:0.48360077 5:0.5091009 6:0.45937952
|
||||
-4 1:0.8844154 2:0.17100887 3:0.72113597 4:0.87694877 5:0.91353723 6:0.92915751
|
||||
-4 1:0.85037445 2:0.17100887 3:0.68788873 4:0.83231062 5:0.86868815 6:0.88251123
|
||||
-4 1:0.88508056 2:0.17100887 3:0.7327504 4:0.88897406 5:0.92477242 6:0.93981282
|
||||
-4 1:0.85366741 2:0.17100887 3:0.69916395 4:0.84503977 5:0.88273573 6:0.89846199
|
||||
-4 1:0.81504303 2:0.17100887 3:0.66590934 4:0.79673314 5:0.83011685 6:0.83984818
|
||||
-4 1:0.85644843 2:0.17100887 3:0.71415192 4:0.86445685 5:0.90360003 6:0.9202225
|
||||
-4 1:0.82387387 2:0.17100887 3:0.68201945 4:0.81894271 5:0.85592175 6:0.87000988
|
||||
-4 1:0.78212162 2:0.17100887 3:0.65159792 4:0.77264311 5:0.80200204 6:0.80662349
|
||||
-4 1:0.78168384 2:0.17100887 3:0.6832212 4:0.81696502 5:0.856044 6:0.87656074
|
||||
-4 1:0.7464494 2:0.17100887 3:0.65614114 4:0.77574784 5:0.80588316 6:0.81492702
|
||||
-4 1:0.70485619 2:0.17100887 3:0.63023321 4:0.73515262 5:0.75367182 6:0.7457323
|
||||
-4 1:0.69664501 2:0.17100887 3:0.65928005 4:0.7783746 5:0.80940949 6:0.82172477
|
||||
-4 1:0.66667106 2:0.17100887 3:0.63801626 4:0.74514239 5:0.7656869 6:0.76277471
|
||||
-4 1:0.62612988 2:0.17100887 3:0.61567029 4:0.71008177 5:0.71859936 6:0.69564643
|
||||
-4 1:0.61341303 2:0.17100887 3:0.6420357 4:0.75029027 5:0.77240927 6:0.77768431
|
||||
-4 1:0.5867266 2:0.17100887 3:0.62447934 4:0.72280899 5:0.7351325 6:0.72147263
|
||||
-4 1:0.55384064 2:0.17100887 3:0.60654355 4:0.69469623 5:0.69658217 6:0.66241143
|
||||
4 1:0.93137509 2:0.58813084 3:0.66970124 4:0.81799096 5:0.87191419 6:0.89975154
|
||||
4 1:0.90035959 2:0.58813084 3:0.60494337 4:0.74071302 5:0.79784291 6:0.82803786
|
||||
4 1:0.85663387 2:0.58813084 3:0.53766236 4:0.6523887 5:0.70267772 6:0.72562817
|
||||
4 1:0.90546813 2:0.58813084 3:0.61493656 4:0.7488554 5:0.81046239 6:0.84531076
|
||||
4 1:0.8656317 2:0.58813084 3:0.54726337 4:0.65956534 5:0.7155449 6:0.74631891
|
||||
4 1:0.8098934 2:0.58813084 3:0.4798766 4:0.56546743 5:0.60590635 6:0.61881885
|
||||
4 1:0.85306549 2:0.58813084 3:0.5714757 4:0.68725367 5:0.75023425 6:0.78571296
|
||||
4 1:0.80623734 2:0.58813084 3:0.50644182 4:0.59669103 5:0.64562358 6:0.66908583
|
||||
4 1:0.74311432 2:0.58813084 3:0.44350356 4:0.50581009 5:0.53327566 6:0.53149917
|
||||
4 1:0.68871211 2:0.58813084 3:0.49872371 4:0.58127904 5:0.63194766 6:0.66873179
|
||||
4 1:0.63851213 2:0.58813084 3:0.44610228 4:0.5034943 5:0.53075976 6:0.537882
|
||||
4 1:0.57033569 2:0.58813084 3:0.39475469 4:0.42714879 5:0.42904342 6:0.39886318
|
||||
4 1:0.50789515 2:0.58813084 3:0.4489223 4:0.50526222 5:0.53352166 6:0.54558454
|
||||
4 1:0.46383067 2:0.58813084 3:0.40748599 4:0.44304458 5:0.44865668 6:0.42700798
|
||||
4 1:0.40022993 2:0.58813084 3:0.36496643 4:0.37957831 5:0.3618814 6:0.30151691
|
||||
4 1:0.34919503 2:0.58813084 3:0.41077259 4:0.44710938 5:0.45418637 6:0.4427272
|
||||
4 1:0.31039486 2:0.58813084 3:0.3781102 4:0.39791713 5:0.38579731 6:0.33775626
|
||||
4 1:0.25686689 2:0.58813084 3:0.34339507 4:0.34629183 5:0.31474147 6:0.22987727
|
||||
4 1:0.88953478 2:1 3:0.4142646 4:0.77609714 5:0.86327287 6:0.90070366
|
||||
4 1:0.84762737 2:1 3:0.34831904 4:0.68202398 5:0.77495965 6:0.81792736
|
||||
4 1:0.79218545 2:1 3:0.28830223 4:0.58233545 5:0.66416214 6:0.69812459
|
||||
4 1:0.85011264 2:1 3:0.3632793 4:0.7002849 5:0.79493175 6:0.8388643
|
||||
4 1:0.80164286 2:1 3:0.30270317 4:0.60049607 5:0.68746672 6:0.72752293
|
||||
2.398936645273238 1:0.73536109 2:1 3:0.24807743 4:0.50352829 5:0.56914456 6:0.58694836
|
||||
4 1:0.7992624 2:1 3:0.32301902 4:0.63539721 5:0.73120203 6:0.77632508
|
||||
-4 1:0.67724483 2:1 3:0.22091872 4:0.44918423 5:0.49861276 6:0.49729596
|
||||
-4 1:0.63074649 2:1 3:0.22591838 4:0.45366414 5:0.50441509 6:0.5112007
|
||||
-4 1:0.56303466 2:1 3:0.18584021 4:0.37814296 5:0.39914056 6:0.36255206
|
||||
-4 1:0.56356528 2:1 3:0.23333665 4:0.46665436 5:0.52225289 6:0.54013566
|
||||
-4 1:0.51828367 2:1 3:0.19903142 4:0.40063095 5:0.42846081 6:0.40524269
|
||||
-4 1:0.45968483 2:1 3:0.16491992 4:0.33688636 5:0.33816257 6:0.27152115
|
||||
-4 1:0.45707056 2:1 3:0.20952296 4:0.42030103 5:0.45536541 6:0.44824172
|
||||
-4 1:0.41753705 2:1 3:0.17986875 4:0.36372106 5:0.37428173 6:0.32334623
|
||||
-4 1:0.3673098 2:1 3:0.14941886 4:0.30761847 5:0.29515758 6:0.20322567
|
||||
4 1:0.90008671 2:0.42903087 3:0.53021165 4:0.81488204 5:0.88078391 6:0.91034118
|
||||
4 1:0.8574737 2:0.42903087 3:0.47484284 4:0.73859546 5:0.80642948 6:0.83743278
|
||||
4 1:0.81060984 2:0.42903087 3:0.42618901 4:0.66478054 5:0.72260503 6:0.74291613
|
||||
4 1:0.84205615 2:0.42903087 3:0.47088787 4:0.74712748 5:0.81879166 6:0.85375655
|
||||
4 1:0.80068913 2:0.42903087 3:0.42342846 4:0.67231763 5:0.73539087 6:0.76248985
|
||||
4 1:0.74875184 2:0.42903087 3:0.38161879 4:0.6030831 5:0.65028454 6:0.65744785
|
||||
4 1:0.77118496 2:0.42903087 3:0.43414979 4:0.69038445 5:0.7654524 6:0.79900523
|
||||
4 1:0.72824921 2:0.42903087 3:0.39230104 4:0.62011899 5:0.68008131 6:0.69971677
|
||||
4 1:0.6745625 2:0.42903087 3:0.35559781 4:0.5569466 5:0.59765133 6:0.59325823
|
||||
4 1:0.63528964 2:0.42903087 3:0.38788187 4:0.60698864 5:0.66931291 6:0.70430754
|
||||
4 1:0.59199082 2:0.42903087 3:0.35594631 4:0.55106118 5:0.59339727 6:0.6007531
|
||||
4 1:0.53997565 2:0.42903087 3:0.3267523 4:0.49999467 5:0.52256667 6:0.49922282
|
||||
4 1:0.4892461 2:0.42903087 3:0.35717659 4:0.5489613 5:0.58809281 6:0.59673744
|
||||
4 1:0.45268705 2:0.42903087 3:0.33181164 4:0.50418622 5:0.52500729 6:0.50527993
|
||||
4 1:0.40758685 2:0.42903087 3:0.30734084 4:0.4609972 5:0.463968 6:0.4146685
|
||||
4 1:0.38282931 2:0.42903087 3:0.33760802 4:0.51300486 5:0.53535562 6:0.5280665
|
||||
4 1:0.35092797 2:0.42903087 3:0.31674612 4:0.476005 5:0.48258867 6:0.4454802
|
||||
4 1:0.31174808 2:0.42903087 3:0.29556342 4:0.43906497 5:0.43035288 6:0.36486585
|
||||
-4 1:0.89161561 2:0.055816361 3:0.66214428 4:0.93929999 5:0.96240749 6:0.9687965
|
||||
-4 1:0.86624617 2:0.055816361 3:0.64575905 4:0.91816729 5:0.9412327 6:0.94551596
|
||||
-4 1:0.83659824 2:0.055816361 3:0.63018023 4:0.89539861 5:0.91589514 6:0.91453936
|
||||
-4 1:0.86958328 2:0.055816361 3:0.654362 4:0.92863095 5:0.9525443 6:0.95890104
|
||||
-4 1:0.84452133 2:0.055816361 3:0.63750977 4:0.90478183 5:0.92705741 6:0.92925933
|
||||
-4 1:0.81057282 2:0.055816361 3:0.62046115 4:0.87886427 5:0.89666766 6:0.89022904
|
||||
-4 1:0.84885788 2:0.055816361 3:0.64782367 4:0.9206974 5:0.94520642 6:0.9511503
|
||||
-4 1:0.82294125 2:0.055816361 3:0.63102979 4:0.89575906 5:0.91738093 6:0.91772037
|
||||
-4 1:0.78644712 2:0.055816361 3:0.61481892 4:0.86971182 5:0.88549471 6:0.8752017
|
||||
-4 1:0.77992201 2:0.055816361 3:0.63544956 4:0.9024457 5:0.92684464 6:0.93284393
|
||||
-4 1:0.75432808 2:0.055816361 3:0.62101684 4:0.87932584 5:0.89804432 6:0.8941554
|
||||
-4 1:0.72169343 2:0.055816361 3:0.60551816 4:0.85361625 5:0.86461223 6:0.84637068
|
||||
-4 1:0.71382201 2:0.055816361 3:0.62537969 4:0.88632962 5:0.90778237 6:0.90952365
|
||||
-4 1:0.68888515 2:0.055816361 3:0.61291964 4:0.86584043 5:0.8807303 6:0.87032144
|
||||
-4 1:0.66366256 2:0.055816361 3:0.59794606 4:0.84074106 5:0.84697657 6:0.81961455
|
||||
-4 1:0.65479021 2:0.055816361 3:0.61697786 4:0.87231527 5:0.89005684 6:0.88634515
|
||||
-4 1:0.6355131 2:0.055816361 3:0.60556598 4:0.85358575 5:0.86463324 6:0.84685496
|
||||
-4 1:0.60908106 2:0.055816361 3:0.59241458 4:0.83143883 5:0.83428743 6:0.79949991
|
57
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.0.json
vendored
Normal file
57
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.0.json
vendored
Normal file
File diff suppressed because one or more lines are too long
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.0.pkl
vendored
Normal file
90
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.0.pkl
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'norm_type'
|
||||
p3
|
||||
S'clip_0to1'
|
||||
p4
|
||||
sS'score_clip'
|
||||
p5
|
||||
(lp6
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'C'
|
||||
p7
|
||||
F4.0
|
||||
sS'nu'
|
||||
p8
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p9
|
||||
F0.05
|
||||
ssS'model_dict'
|
||||
p10
|
||||
(dp11
|
||||
S'model'
|
||||
p12
|
||||
Nsg3
|
||||
S'linear_rescale'
|
||||
p13
|
||||
sg5
|
||||
g6
|
||||
sS'feature_names'
|
||||
p14
|
||||
(lp15
|
||||
S'VMAF_feature_adm2_score'
|
||||
p16
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p17
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p18
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p19
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p20
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p21
|
||||
asS'intercepts'
|
||||
p22
|
||||
(lp23
|
||||
F-0.2545454545454545
|
||||
aF-1.445823604286296
|
||||
aF-0.0021166363925847658
|
||||
aF-0.08203930409252254
|
||||
aF-0.28580569810409906
|
||||
aF-0.4801667335681057
|
||||
aF-0.7764750530230472
|
||||
asS'model_type'
|
||||
p24
|
||||
S'LIBSVMNUSVR'
|
||||
p25
|
||||
sS'slopes'
|
||||
p26
|
||||
(lp27
|
||||
F0.011818181818181818
|
||||
aF2.445823604286296
|
||||
aF0.05347617487103272
|
||||
aF1.0820392911303012
|
||||
aF1.2858060650284484
|
||||
aF1.480167484761588
|
||||
aF1.7764758964900356
|
||||
asS'feature_dict'
|
||||
p28
|
||||
(dp29
|
||||
S'VMAF_feature'
|
||||
p30
|
||||
(lp31
|
||||
S'vif_scale0'
|
||||
p32
|
||||
aS'vif_scale1'
|
||||
p33
|
||||
aS'vif_scale2'
|
||||
p34
|
||||
aS'vif_scale3'
|
||||
p35
|
||||
aS'adm2'
|
||||
p36
|
||||
aS'motion2'
|
||||
p37
|
||||
asss.
|
283
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.0.pkl.model
vendored
Normal file
283
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.0.pkl.model
vendored
Normal file
@ -0,0 +1,283 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.05
|
||||
nr_class 2
|
||||
total_sv 276
|
||||
rho -1.51734
|
||||
SV
|
||||
-1.42344309313914 1:1 2:0.59960677 3:0.99999923 4:0.99999016 5:0.99999026 6:0.99999075
|
||||
4 1:1 2:0.0028368665 3:0.99999967 4:0.99999935 5:0.99999874 6:0.9999986
|
||||
4 1:1 3:0.99999927 4:0.99999882 5:0.999998 6:0.99999729
|
||||
4 1:1 2:0.073757895 3:0.99999999 4:0.99998553 5:0.99998771 6:0.99998768
|
||||
4 1:1 2:0.091889032 3:0.9999973 4:0.99999764 5:0.99999638 6:0.99999498
|
||||
4 1:1 2:0.079877164 3:0.99999978 4:1 5:0.99999991 6:0.99999945
|
||||
2.279531664781124 1:1 2:0.10220351 3:0.99999876 4:0.99999779 5:0.99999696 6:0.99999673
|
||||
4 1:1 2:0.047958585 3:0.99999421 4:0.99999022 5:0.99998517 6:0.9999836
|
||||
-4 1:1 2:0.61823337 3:0.99999786 4:0.99999762 5:0.99999626 6:0.99999605
|
||||
4 1:1 2:0.027726268 3:0.99998126 4:0.99998294 5:0.99997895 6:0.99997406
|
||||
-4 1:1 2:1 3:0.99999962 4:0.99999872 5:0.99999756 6:0.99999726
|
||||
-4 1:0.56354395 2:0.56974736 3:0.28471573 4:0.65993655 5:0.74227394 6:0.79604378
|
||||
-4 1:0.68510323 2:0.56974736 3:0.32379571 4:0.7319233 5:0.80911202 6:0.8507541
|
||||
-4 1:0.69951544 2:0.56974736 3:0.34310279 4:0.77101723 5:0.84821029 6:0.88804124
|
||||
-4 1:0.77541901 2:0.56974736 3:0.37137625 4:0.81442045 5:0.88205758 6:0.91458769
|
||||
4 1:0.79620992 2:0.56974736 3:0.39967717 4:0.85595229 5:0.91574692 6:0.94250595
|
||||
4 1:0.87186246 2:0.56974736 3:0.434713 4:0.88766895 5:0.9374168 6:0.95853365
|
||||
4 1:0.92212993 2:0.56974736 3:0.46452442 4:0.91824175 5:0.95745095 6:0.97241994
|
||||
4 1:0.928553 2:0.56974736 3:0.48597439 4:0.93053309 5:0.9647571 6:0.97746046
|
||||
-4 1:0.52698693 2:0.16881121 3:0.36317685 4:0.68950884 5:0.78239856 6:0.85158746
|
||||
-4 1:0.66877973 2:0.16881121 3:0.41418217 4:0.78235658 5:0.86244982 6:0.90555851
|
||||
-4 1:0.67484006 2:0.16881121 3:0.42508825 4:0.80053547 5:0.87876294 6:0.92009097
|
||||
-4 1:0.77038887 2:0.16881121 3:0.46459592 4:0.85524887 5:0.91515324 6:0.94242931
|
||||
-4 1:0.78768692 2:0.16881121 3:0.49147499 4:0.88086917 5:0.9319899 6:0.95515785
|
||||
4 1:0.88872186 2:0.16881121 3:0.55908699 4:0.92010032 5:0.95523583 6:0.97026042
|
||||
-4 1:0.94900618 2:0.16881121 3:0.59100719 4:0.94263234 5:0.97007609 6:0.98058028
|
||||
4 1:0.95223955 2:0.16881121 3:0.60592148 4:0.94910383 5:0.97388368 6:0.98321738
|
||||
-4 1:0.53261759 2:0.59960677 3:0.1105369 4:0.53484817 5:0.64893424 6:0.70087418
|
||||
-4 1:0.63961697 2:0.59960677 3:0.12495962 4:0.58400561 5:0.70635918 6:0.76074473
|
||||
4 1:0.65647138 2:0.59960677 3:0.13451819 4:0.6213844 5:0.7495146 6:0.806062
|
||||
4 1:0.72421423 2:0.59960677 3:0.14417706 4:0.65373243 5:0.78298929 6:0.83855203
|
||||
4 1:0.74894587 2:0.59960677 3:0.15923444 4:0.70074453 5:0.82731767 6:0.87915144
|
||||
4 1:0.81077584 2:0.59960677 3:0.17191059 4:0.73024153 5:0.85253415 6:0.90082938
|
||||
4 1:0.85014334 2:0.59960677 3:0.19792999 4:0.78521928 5:0.89113094 6:0.92976276
|
||||
4 1:0.85889623 2:0.59960677 3:0.21717165 4:0.81133774 5:0.90743803 6:0.94136993
|
||||
4 1:0.2986307 2:0.0028368665 3:0.25252042 4:0.49690257 5:0.65769216 6:0.80223073
|
||||
4 1:0.49935393 2:0.0028368665 3:0.34502741 4:0.68077008 5:0.81835921 6:0.90302719
|
||||
2.118539955842333 1:0.50105025 2:0.0028368665 3:0.35280904 4:0.69186543 5:0.82773057 6:0.91068742
|
||||
-4 1:0.64362297 2:0.0028368665 3:0.42866478 4:0.81686452 5:0.91192673 6:0.95530559
|
||||
4 1:0.66144942 2:0.0028368665 3:0.45592521 4:0.84370892 5:0.92588369 6:0.96391692
|
||||
4 1:0.83527718 2:0.0028368665 3:0.60981304 4:0.95094604 5:0.97756293 6:0.9879707
|
||||
-4 1:0.99415428 2:0.0028368665 3:0.88719388 4:0.99179217 5:0.99604316 6:0.99746947
|
||||
-4 1:0.29424272 3:0.21781852 4:0.44794963 5:0.63031125 6:0.80683299
|
||||
4 1:0.50541992 3:0.30849667 4:0.64202254 5:0.80802111 6:0.90863245
|
||||
-4 1:0.5062713 3:0.31217359 4:0.64691349 5:0.81222895 6:0.91233249
|
||||
-4 1:0.6532133 3:0.3969515 4:0.78959961 5:0.9063486 6:0.95720755
|
||||
4 1:0.67033011 3:0.42163924 4:0.8166942 5:0.91935662 6:0.96453675
|
||||
4 1:0.8475234 3:0.61994617 4:0.94847901 5:0.97833679 6:0.98936321
|
||||
-4 1:0.99738873 3:0.93628861 4:0.99679023 5:0.99846792 6:0.99903247
|
||||
4 1:0.35831184 2:0.27341353 3:0.53747671 4:0.6770993 5:0.78146705 6:0.89438383
|
||||
4 1:0.53489946 2:0.27341353 3:0.57154145 4:0.78374976 5:0.88273571 6:0.95231091
|
||||
4 1:0.53571485 2:0.27341353 3:0.57217183 4:0.78570799 5:0.88458062 6:0.95371942
|
||||
4 1:0.66610901 2:0.27341353 3:0.60415235 4:0.8670849 5:0.94261136 6:0.97991607
|
||||
4 1:0.68154488 2:0.27341353 3:0.61437839 4:0.88329531 5:0.95083788 6:0.98427297
|
||||
4 1:0.84318835 2:0.27341353 3:0.70327413 4:0.96928635 5:0.99028582 6:0.99745241
|
||||
-4 1:0.9993166 2:0.27341353 3:0.98492973 4:0.9992267 5:0.99963843 6:0.99980117
|
||||
-4 1:0.51083301 2:0.17951924 3:0.1234045 4:0.54446011 5:0.67433974 6:0.75364579
|
||||
-4 1:0.62448631 2:0.17951924 3:0.14632552 4:0.63327068 5:0.75440617 6:0.81559943
|
||||
-4 1:0.63682593 2:0.17951924 3:0.15449208 4:0.67157499 5:0.79117935 6:0.84890541
|
||||
-4 1:0.7132522 2:0.17951924 3:0.17153704 4:0.72898352 5:0.83464107 6:0.88242096
|
||||
4 1:0.7343795 2:0.17951924 3:0.18694259 4:0.77677679 5:0.87086003 6:0.91093956
|
||||
4 1:0.80736476 2:0.17951924 3:0.20822784 4:0.81077441 5:0.89482972 6:0.92942639
|
||||
4 1:0.85576288 2:0.17951924 3:0.21948417 4:0.84833653 5:0.92213819 6:0.95035966
|
||||
-4 1:0.86273412 2:0.17951924 3:0.23204585 4:0.86656018 5:0.93295646 6:0.9578713
|
||||
-4 1:0.40451216 2:0.16470949 3:0.10126096 4:0.56047331 5:0.68925022 6:0.78221221
|
||||
-4 1:0.55859696 2:0.16470949 3:0.13445214 4:0.67918988 5:0.7942022 6:0.85404375
|
||||
-4 1:0.565808 2:0.16470949 3:0.13997561 4:0.70414907 5:0.81793357 6:0.87534627
|
||||
4 1:0.67637525 2:0.16470949 3:0.16320592 4:0.77304901 5:0.86505004 6:0.90628023
|
||||
4 1:0.69939234 2:0.16470949 3:0.17651218 4:0.80764196 5:0.88905114 6:0.92412782
|
||||
4 1:0.82599524 2:0.16470949 3:0.2080322 4:0.8476471 5:0.91409665 6:0.94167274
|
||||
4 1:0.91701838 2:0.16470949 3:0.22166069 4:0.87279849 5:0.93343786 6:0.95689295
|
||||
4 1:0.9208224 2:0.16470949 3:0.23011491 4:0.88286668 5:0.93993964 6:0.96170244
|
||||
-4 1:0.56940447 2:0.19613664 3:0.14383366 4:0.73829184 5:0.8160364 6:0.85595914
|
||||
-4 1:0.68063651 2:0.19613664 3:0.15679668 4:0.78772483 5:0.86304259 6:0.89601329
|
||||
4 1:0.68669506 2:0.19613664 3:0.16041449 4:0.80542845 5:0.87953654 6:0.91128151
|
||||
4 1:0.75702121 2:0.19613664 3:0.16788882 4:0.8312799 5:0.90072928 6:0.92855259
|
||||
4 1:0.77279781 2:0.19613664 3:0.17570565 4:0.85519748 5:0.91900385 6:0.94337976
|
||||
4 1:0.84394722 2:0.19613664 3:0.18525968 4:0.87114896 5:0.93120873 6:0.95345917
|
||||
-4 1:0.89313478 2:0.19613664 3:0.19310103 4:0.88843028 5:0.94366176 6:0.96310806
|
||||
-4 1:0.89703541 2:0.19613664 3:0.20141253 4:0.89806736 5:0.94947858 6:0.96737576
|
||||
-4 1:0.57367828 2:0.073757895 3:0.035254694 4:0.77763857 5:0.87719172 6:0.91955806
|
||||
-4 1:0.68305717 2:0.073757895 3:0.050516057 4:0.83305095 5:0.91281069 6:0.94141928
|
||||
-4 1:0.68417626 2:0.073757895 3:0.052078806 4:0.83907742 5:0.91704514 6:0.94460753
|
||||
-4 1:0.7573362 2:0.073757895 3:0.062531836 4:0.8668896 5:0.93227937 6:0.9544546
|
||||
-4 1:0.76697749 2:0.073757895 3:0.069071169 4:0.87789693 5:0.93833453 6:0.95877774
|
||||
-0.2655870193917652 1:0.84121848 2:0.073757895 3:0.082595597 4:0.89034116 5:0.94600755 6:0.96449435
|
||||
4 1:0.89018005 2:0.073757895 3:0.090055337 4:0.90364079 5:0.95512657 6:0.97183566
|
||||
-4 1:0.89321278 2:0.073757895 3:0.098042004 4:0.90878155 5:0.95787061 6:0.97379306
|
||||
-4 1:0.33382055 2:0.091889032 3:0.13527448 4:0.48344352 5:0.67518514 6:0.80684485
|
||||
4 1:0.50841182 2:0.091889032 3:0.18654363 4:0.6396905 5:0.80095526 6:0.87875497
|
||||
4 1:0.51222216 2:0.091889032 3:0.19402399 4:0.66197456 5:0.81858026 6:0.89165323
|
||||
4 1:0.63757409 2:0.091889032 3:0.24077526 4:0.76540809 5:0.87719765 6:0.92301145
|
||||
0.2292444223441352 1:0.65608915 2:0.091889032 3:0.26326812 4:0.80213136 5:0.89678762 6:0.93550312
|
||||
4 1:0.81624317 2:0.091889032 3:0.36006726 4:0.87566017 5:0.93315759 6:0.95814009
|
||||
-4 1:0.93870695 2:0.091889032 3:0.42783119 4:0.90982655 5:0.95510913 6:0.97350113
|
||||
4 1:0.94171003 2:0.091889032 3:0.44090385 4:0.91717073 5:0.95885496 6:0.97572234
|
||||
4 1:0.40364491 2:0.25069964 3:0.37828612 4:0.59284036 5:0.69868148 6:0.76721939
|
||||
4 1:0.57607865 2:0.25069964 3:0.43405915 4:0.69545604 5:0.78844501 6:0.83548475
|
||||
-4 1:0.5886616 2:0.25069964 3:0.45332828 4:0.73365531 5:0.82834212 6:0.87437599
|
||||
4 1:0.69250168 2:0.25069964 3:0.50368118 4:0.80877379 5:0.88125471 6:0.91311767
|
||||
4 1:0.71631885 2:0.25069964 3:0.53928926 4:0.85927657 5:0.92157623 6:0.94661491
|
||||
4 1:0.85253484 2:0.25069964 3:0.6434251 4:0.92235419 5:0.95594319 6:0.97022011
|
||||
4 1:0.9720213 2:0.25069964 3:0.74867075 4:0.96174733 5:0.97865801 6:0.98559036
|
||||
-4 1:0.9758873 2:0.25069964 3:0.76761237 4:0.96943718 5:0.9833156 6:0.98886
|
||||
4 1:0.14137043 2:0.33757366 3:0.1134503 4:0.1714045 5:0.21015647 6:0.24593954
|
||||
4 1:0.31217051 2:0.33757366 3:0.14082878 4:0.24538979 5:0.29907459 6:0.3385096
|
||||
4 1:0.35568924 2:0.33757366 3:0.16006934 4:0.30349422 5:0.37958673 6:0.43704115
|
||||
4 1:0.5514191 2:0.33757366 3:0.23713623 4:0.4972889 5:0.59955115 6:0.66639856
|
||||
4 1:0.70825651 2:0.33757366 3:0.31211644 4:0.59455293 5:0.6841248 6:0.74174343
|
||||
4 1:0.86199179 2:0.33757366 3:0.41179721 4:0.7179897 5:0.79723695 6:0.8428619
|
||||
4 1:0.88890508 2:0.33757366 3:0.45966186 4:0.7801768 5:0.85110739 6:0.8888845
|
||||
4 1:0.35065149 2:0.27409825 3:0.30484095 4:0.50062635 5:0.60759014 6:0.69163162
|
||||
-4 1:0.51570728 2:0.27409825 3:0.35108889 4:0.61349554 5:0.71796189 6:0.7818208
|
||||
4 1:0.536388 2:0.27409825 3:0.37319598 4:0.66423905 5:0.77332724 6:0.8353456
|
||||
4 1:0.64900996 2:0.27409825 3:0.42426794 4:0.75235249 5:0.83955009 6:0.88310793
|
||||
4 1:0.68158288 2:0.27409825 3:0.47070908 4:0.82687556 5:0.90020643 6:0.93312078
|
||||
4 1:0.82731663 2:0.27409825 3:0.58573506 4:0.90352623 5:0.94326403 6:0.96180206
|
||||
-4 1:0.9649022 2:0.27409825 3:0.73526574 4:0.95321237 5:0.97343123 6:0.98210984
|
||||
-4 1:0.97257383 2:0.27409825 3:0.76806325 4:0.96602848 5:0.98108503 6:0.98732571
|
||||
-4 1:0.21747372 2:0.49415051 3:0.16876021 4:0.25114925 5:0.28759183 6:0.31490194
|
||||
-4 1:0.39379464 2:0.49415051 3:0.20391515 4:0.34120457 5:0.39310314 6:0.42440033
|
||||
-4 1:0.4457678 2:0.49415051 3:0.2304878 4:0.41232147 5:0.48952147 6:0.54289823
|
||||
-4 1:0.56875708 2:0.49415051 3:0.27237048 4:0.50153006 5:0.58096463 6:0.6325802
|
||||
-4 1:0.63356436 2:0.49415051 3:0.32696611 4:0.62757118 5:0.72294854 6:0.77900221
|
||||
4 1:0.78316682 2:0.49415051 3:0.42294943 4:0.73414383 5:0.80712397 6:0.84916188
|
||||
-4 1:0.93595151 2:0.49415051 3:0.5738338 4:0.84897864 5:0.90027001 6:0.92623902
|
||||
-4 1:0.95321184 2:0.49415051 3:0.62991004 4:0.89534764 5:0.93503889 6:0.95375123
|
||||
4 1:0.15040707 2:0.079877164 3:0.19874936 4:0.40337995 5:0.61274391 6:0.81059895
|
||||
4 1:0.38962654 2:0.079877164 3:0.27738977 4:0.60155269 5:0.79900627 6:0.91107838
|
||||
4 1:0.39107484 2:0.079877164 3:0.278877 4:0.60612185 5:0.8042709 6:0.91644293
|
||||
4 1:0.5727972 2:0.079877164 3:0.36218234 4:0.7572776 5:0.90334009 6:0.95976167
|
||||
4 1:0.60051985 2:0.079877164 3:0.38762592 4:0.78874114 5:0.91736413 6:0.96694311
|
||||
4 1:0.8334303 2:0.079877164 3:0.64450421 4:0.94508079 5:0.97969306 6:0.99102226
|
||||
-4 1:0.9989864 2:0.079877164 3:0.97746724 4:0.99901252 5:0.99947599 6:0.99963053
|
||||
-4 1:0.32540403 2:0.47699273 3:0.13789336 4:0.20301342 5:0.27524646 6:0.35544665
|
||||
-4 1:0.51187082 2:0.47699273 3:0.20219955 4:0.32497899 5:0.41564775 6:0.49611213
|
||||
-4 1:0.54304589 2:0.47699273 3:0.23196377 4:0.38746822 5:0.49536812 6:0.58549072
|
||||
-4 1:0.6673868 2:0.47699273 3:0.28654519 4:0.48528846 5:0.59504433 6:0.67712596
|
||||
4 1:0.71702009 2:0.47699273 3:0.35909861 4:0.60832297 5:0.72010513 6:0.79414792
|
||||
4 1:0.84015331 2:0.47699273 3:0.44536772 4:0.71497426 5:0.80801875 6:0.86447729
|
||||
4 1:0.91813708 2:0.47699273 3:0.51887607 4:0.80652673 5:0.88255078 6:0.92186412
|
||||
4 1:0.92872688 2:0.47699273 3:0.54907429 4:0.83914553 5:0.90645933 6:0.93960647
|
||||
-4 1:0.39783083 2:0.23038811 3:0.293288 4:0.47360828 5:0.59075671 6:0.68128029
|
||||
-4 1:0.55747672 2:0.23038811 3:0.3703296 4:0.60851369 5:0.71604819 6:0.78016604
|
||||
-4 1:0.57939548 2:0.23038811 3:0.39823994 4:0.65939648 5:0.76826168 6:0.82978862
|
||||
-4 1:0.69096815 2:0.23038811 3:0.4657005 4:0.75225267 5:0.83717389 6:0.88159509
|
||||
4 1:0.85304191 2:0.23038811 3:0.63112462 4:0.89800536 5:0.9391266 6:0.95853003
|
||||
4 1:0.94327274 2:0.23038811 3:0.7013779 4:0.94440841 5:0.96878535 6:0.97882596
|
||||
4 1:0.95119765 2:0.23038811 3:0.72446627 4:0.9556569 5:0.97557126 6:0.9835939
|
||||
-4 1:0.50695212 2:0.10220351 3:0.35138595 4:0.56659317 5:0.67483977 6:0.76663313
|
||||
-4 1:0.64734345 2:0.10220351 3:0.4428228 4:0.71260188 5:0.80516453 6:0.86128419
|
||||
-4 1:0.65982783 2:0.10220351 3:0.46673779 4:0.7511693 5:0.83945647 6:0.89013655
|
||||
-4 1:0.75452857 2:0.10220351 3:0.5294623 4:0.83293198 5:0.89618351 6:0.92784053
|
||||
-4 1:0.7793573 2:0.10220351 3:0.57507879 4:0.87741496 5:0.92642724 6:0.95034457
|
||||
4 1:0.88735118 2:0.10220351 3:0.66615697 4:0.9301667 5:0.95852518 6:0.97195912
|
||||
4 1:0.95621867 2:0.10220351 3:0.70483064 4:0.95506206 5:0.97471333 6:0.98274369
|
||||
4 1:0.95961653 2:0.10220351 3:0.71883836 4:0.9607098 5:0.97811933 6:0.98511993
|
||||
-4 1:0.5401291 2:0.31811472 3:0.46739179 4:0.61522165 5:0.66393953 6:0.69033574
|
||||
-4 1:0.66517998 2:0.31811472 3:0.49669683 4:0.67097365 5:0.72838437 6:0.75985141
|
||||
-4 1:0.68354243 2:0.31811472 3:0.5209952 4:0.71662996 5:0.78064968 6:0.81645496
|
||||
-4 1:0.76451379 2:0.31811472 3:0.54613649 4:0.75910465 5:0.82175868 6:0.85532683
|
||||
0.201702498742579 1:0.79728561 2:0.31811472 3:0.59886932 4:0.83808519 5:0.89334928 6:0.91997068
|
||||
4 1:0.88499397 2:0.31811472 3:0.64493763 4:0.885911 5:0.92952703 6:0.94932703
|
||||
-4 1:0.95168992 2:0.31811472 3:0.6894327 4:0.93381579 5:0.96303278 6:0.97470928
|
||||
-4 1:0.95986115 2:0.31811472 3:0.71440685 4:0.95040249 5:0.9731617 6:0.98194036
|
||||
-4 1:0.61818644 2:0.26190694 3:0.69194262 4:0.78256981 5:0.81220811 6:0.82634374
|
||||
-4 1:0.71827767 2:0.26190694 3:0.72638853 4:0.83182998 5:0.8631147 6:0.87753519
|
||||
-4 1:0.73615442 2:0.26190694 3:0.74777264 4:0.86204285 5:0.89428834 6:0.90965496
|
||||
2.509718956998376 1:0.80542099 2:0.26190694 3:0.77508325 4:0.89690231 5:0.92487887 6:0.93740711
|
||||
4 1:0.83262045 2:0.26190694 3:0.81167047 4:0.93470592 5:0.95598769 6:0.96484229
|
||||
4 1:0.90508782 2:0.26190694 3:0.84360425 4:0.95907219 5:0.97354245 6:0.97941481
|
||||
4 1:0.96324699 2:0.26190694 3:0.8667116 4:0.97955328 5:0.98803326 6:0.99122772
|
||||
4 1:0.97029536 2:0.26190694 3:0.87923993 4:0.9851486 5:0.99149034 6:0.99380933
|
||||
-4 1:0.63070102 2:0.047958585 3:0.51468613 4:0.79483202 5:0.88321841 6:0.92630594
|
||||
-4 1:0.73072134 2:0.047958585 3:0.57292054 4:0.86925517 5:0.9306127 6:0.95516447
|
||||
-4 1:0.73380959 2:0.047958585 3:0.58011542 4:0.8771701 5:0.93607325 6:0.95944637
|
||||
-4 1:0.80661883 2:0.047958585 3:0.62296902 4:0.91969545 5:0.95796187 6:0.9726877
|
||||
-4 1:0.82037912 2:0.047958585 3:0.64608341 4:0.93262656 5:0.96479774 6:0.97786515
|
||||
4 1:0.90476609 2:0.047958585 3:0.7139631 4:0.96316844 5:0.98069466 6:0.98772078
|
||||
-4 1:0.96128877 2:0.047958585 3:0.74812803 4:0.98152163 5:0.99071402 6:0.99378997
|
||||
-4 1:0.96324937 2:0.047958585 3:0.75624709 4:0.98314585 5:0.99163327 6:0.99445767
|
||||
-4 1:0.49409907 2:0.61823337 3:0.28650746 4:0.44032898 5:0.49893985 6:0.5361672
|
||||
-4 1:0.6279408 2:0.61823337 3:0.34170268 4:0.53406375 5:0.59898701 6:0.63557048
|
||||
-4 1:0.6575009 2:0.61823337 3:0.37674746 4:0.60057964 5:0.67619992 6:0.7201709
|
||||
-4 1:0.74760416 2:0.61823337 3:0.42815937 4:0.67827668 5:0.74901015 6:0.78847355
|
||||
-4 1:0.87657128 2:0.61823337 3:0.55938162 4:0.84103577 5:0.89259055 6:0.91839592
|
||||
-4 1:0.94480746 2:0.61823337 3:0.60300938 4:0.90236362 5:0.94024613 6:0.95680314
|
||||
-4 1:0.95383732 2:0.61823337 3:0.62988181 4:0.9253857 5:0.95620869 6:0.96919136
|
||||
-4 1:0.68009584 2:0.027726268 3:0.56829088 4:0.86215031 5:0.9161246 6:0.93851942
|
||||
-4 1:0.75541972 2:0.027726268 3:0.61048799 4:0.912055 5:0.94943256 6:0.96141601
|
||||
-4 1:0.75909525 2:0.027726268 3:0.6165352 4:0.91721785 5:0.95283708 6:0.96443744
|
||||
-4 1:0.8175272 2:0.027726268 3:0.65088428 4:0.94571519 5:0.96911236 6:0.97600015
|
||||
-4 1:0.83128608 2:0.027726268 3:0.66893175 4:0.95471377 5:0.97396015 6:0.97998475
|
||||
-2.310969887469093 1:0.90495134 2:0.027726268 3:0.72620753 4:0.97495671 5:0.98604069 6:0.98960254
|
||||
4 1:0.95680547 2:0.027726268 3:0.75061457 4:0.98615288 5:0.99340895 6:0.99571298
|
||||
-4 1:0.95878036 2:0.027726268 3:0.75899387 4:0.9874388 5:0.99407867 6:0.99620562
|
||||
0.6612625012914517 1:0.177577 2:1 3:0.11725755 4:0.13109206 5:0.11805876 6:0.087061255
|
||||
-4 1:0.33449684 2:1 3:0.14636402 4:0.19587094 5:0.20760047 6:0.20244647
|
||||
-4 1:0.39755026 2:1 3:0.1767599 4:0.26323657 5:0.30259857 6:0.32806389
|
||||
-4 1:0.51551729 2:1 3:0.21026336 4:0.33537274 5:0.39177938 6:0.43265356
|
||||
-4 1:0.61042517 2:1 3:0.28200994 4:0.47995257 5:0.56625686 6:0.62858662
|
||||
-4 1:0.74554944 2:1 3:0.35302778 4:0.59254138 5:0.68185162 6:0.74324237
|
||||
-4 1:0.86272237 2:1 3:0.43214221 4:0.73912136 5:0.82217945 6:0.86885821
|
||||
4 1:0.89290215 2:1 3:0.48241309 4:0.80699066 5:0.87796617 6:0.91439679
|
||||
4 1:1 2:0.04992231 3:0.99999941 4:0.99999581 5:0.99999494 6:0.99999588
|
||||
-4 1:1 2:0.60261294 3:1 4:0.99999955 5:0.99999919 6:0.99999875
|
||||
-4 1:1 2:0.76662422 3:0.99999938 4:0.99999806 5:0.99999695 6:0.99999628
|
||||
-4 1:1 2:0.81168101 3:1 4:0.99999954 5:0.99999896 6:0.99999866
|
||||
-4 1:0.26571885 2:0.30151635 3:0.14880922 4:0.39723987 5:0.55093375 6:0.66454564
|
||||
-4 1:0.43140192 2:0.30151635 3:0.19722083 4:0.5371279 5:0.68388178 6:0.76682209
|
||||
-4 1:0.44996027 2:0.30151635 3:0.22024381 4:0.59921561 5:0.74853041 6:0.82643946
|
||||
-4 1:0.59529214 2:0.30151635 3:0.27642234 4:0.71410973 5:0.82265451 6:0.87404576
|
||||
4 1:0.61530686 2:0.30151635 3:0.31893108 4:0.79653791 5:0.88902566 6:0.92720972
|
||||
4 1:0.7921927 2:0.30151635 3:0.44247428 4:0.89218388 5:0.93823652 6:0.958095
|
||||
4 1:0.80104056 2:0.30151635 3:0.47413286 4:0.9209548 5:0.95660608 6:0.97126882
|
||||
-4 1:0.93774196 2:0.30151635 3:0.58448631 4:0.90977534 5:0.94729792 6:0.96305619
|
||||
4 1:0.94473061 2:0.30151635 3:0.61289723 4:0.92353134 5:0.95596799 6:0.96933369
|
||||
-4 1:0.95867541 2:0.30151635 3:0.67730289 4:0.94858746 5:0.971182 6:0.98014637
|
||||
-4 1:0.48909822 2:0.04992231 3:0.38836432 4:0.75826367 5:0.84406611 6:0.8950845
|
||||
-4 1:0.49435983 2:0.04992231 3:0.40192594 4:0.78307203 5:0.86525376 6:0.91252592
|
||||
-4 1:0.63024772 2:0.04992231 3:0.42522248 4:0.83309072 5:0.9015331 6:0.93405056
|
||||
-4 1:0.633917 2:0.04992231 3:0.43752203 4:0.85257102 5:0.91574692 6:0.94460468
|
||||
-4 1:0.7438749 2:0.04992231 3:0.45461108 4:0.88191736 5:0.93215883 6:0.95417317
|
||||
4 1:0.94570239 2:0.04992231 3:0.49883369 4:0.92306074 5:0.95785569 6:0.97233837
|
||||
-4 1:0.95405034 2:0.04992231 3:0.52021385 4:0.94257662 5:0.9705313 6:0.98157251
|
||||
4 2:0.60261294 3:-1.3877788e-17 6:1.110223e-16
|
||||
-4 1:0.50191053 2:0.60261294 3:0.12857962 4:0.40136245 5:0.52639576 6:0.61154432
|
||||
-4 1:0.73339953 2:0.60261294 3:0.18413984 4:0.49865911 5:0.61041915 6:0.68222308
|
||||
-4 1:0.79121935 2:0.60261294 3:0.23733669 4:0.60531342 5:0.71438892 6:0.7783016
|
||||
4 1:0.83106087 2:0.60261294 3:0.28558255 4:0.68675237 5:0.78660751 6:0.84081149
|
||||
4 1:0.86689531 2:0.60261294 3:0.34090583 4:0.76416994 5:0.84941538 6:0.89195688
|
||||
-4 1:0.90586248 2:0.60261294 3:0.42007767 4:0.84854376 5:0.91085624 6:0.93875611
|
||||
4 1:0.22352705 2:0.76662422 3:0.10791328 4:0.14680166 5:0.16845246 6:0.17979277
|
||||
-4 1:0.43677606 2:0.76662422 3:0.16953354 4:0.29339262 5:0.37053249 6:0.42928884
|
||||
4 1:0.64493414 2:0.76662422 3:0.28650909 4:0.54325111 5:0.6530361 6:0.72252556
|
||||
4 1:0.74371952 2:0.76662422 3:0.31990597 4:0.58267573 5:0.68446817 6:0.74947403
|
||||
4 1:0.85379321 2:0.76662422 3:0.40217349 4:0.72326261 5:0.81343083 6:0.86237362
|
||||
4 1:0.88940761 2:0.76662422 3:0.46813321 4:0.80366202 5:0.87757181 6:0.91422945
|
||||
4 1:0.91385319 2:0.76662422 3:0.5258381 4:0.85994289 5:0.91777986 6:0.94444254
|
||||
4 1:0.16598287 2:0.54421538 3:0.088546002 4:0.084891185 5:0.0637098 6:0.018499328
|
||||
4 1:0.47200473 2:0.54421538 3:0.16931434 4:0.27746261 5:0.32957915 6:0.36452615
|
||||
4 1:0.58223568 2:0.54421538 3:0.20775123 4:0.35490074 5:0.42421162 6:0.47398092
|
||||
4 1:0.63475529 2:0.54421538 3:0.21359362 4:0.3882347 5:0.46552185 6:0.51658228
|
||||
4 1:0.63527981 2:0.54421538 3:0.24532274 4:0.43370746 5:0.51906029 6:0.58093829
|
||||
4 1:0.69031853 2:0.54421538 3:0.25117123 4:0.46847962 5:0.55943079 6:0.61867507
|
||||
4 1:0.78114222 2:0.54421538 3:0.33630575 4:0.62989232 5:0.72893565 6:0.7864562
|
||||
4 1:0.84299656 2:0.54421538 3:0.41612161 4:0.75124892 5:0.83579143 6:0.87875657
|
||||
4 1:0.88004553 2:0.54421538 3:0.48012003 4:0.82547847 5:0.89218414 6:0.92303987
|
||||
4 1:0.25667469 2:0.48281641 3:0.25388284 4:0.42468318 5:0.52818092 6:0.61044487
|
||||
4 1:0.48389298 2:0.48281641 3:0.33757357 4:0.61717325 5:0.73687091 6:0.80630622
|
||||
4 1:0.61895635 2:0.48281641 3:0.35302049 4:0.63336843 5:0.735275 6:0.79288116
|
||||
4 1:0.67487599 2:0.48281641 3:0.4646298 4:0.82460708 5:0.90086296 6:0.93411735
|
||||
4 1:0.91740352 2:0.48281641 3:0.55750657 4:0.87351756 5:0.92517595 6:0.94832034
|
||||
-4 1:0.97257991 2:0.48281641 3:0.76920071 4:0.97447945 5:0.98666074 6:0.99114204
|
||||
4 1:0.2284467 2:0.24508299 3:0.044665086 4:0.39766706 5:0.56732679 6:0.70652029
|
||||
-4 1:0.43577592 2:0.24508299 3:0.096622258 4:0.59717884 5:0.75893397 6:0.84265881
|
||||
-4 1:0.58167667 2:0.24508299 3:0.13297748 4:0.68083636 5:0.80204177 6:0.86083389
|
||||
-4 1:0.60737743 2:0.24508299 3:0.1618655 4:0.7793692 5:0.88146282 6:0.92299096
|
||||
4 1:0.78981151 2:0.24508299 3:0.25145788 4:0.86353425 5:0.92242849 6:0.94817193
|
||||
4 1:0.7936679 2:0.24508299 3:0.26005162 4:0.87688414 5:0.93121025 6:0.95449859
|
||||
4 1:0.92335834 2:0.24508299 3:0.31261694 4:0.90736466 5:0.95137802 6:0.96852605
|
||||
4 1:0.041232312 2:0.81168101 3:0.0034208962 4:0.06559568 5:0.088072241 6:0.10111808
|
||||
4 1:0.40670099 2:0.81168101 3:0.061536675 4:0.2856579 5:0.37684597 6:0.44080203
|
||||
4 1:0.48942069 2:0.81168101 3:0.10166236 4:0.43889631 5:0.55930901 6:0.63557233
|
||||
4 1:0.61800395 2:0.81168101 3:0.1278093 4:0.46795261 5:0.5773817 6:0.64923091
|
||||
4 1:0.6604642 2:0.81168101 3:0.15711012 4:0.55134414 5:0.66305242 6:0.7318613
|
||||
4 1:0.8178368 2:0.81168101 3:0.22057656 4:0.68154537 5:0.78312763 6:0.83712647
|
||||
4 1:0.85105521 2:0.81168101 3:0.25845159 4:0.75095697 5:0.84062673 6:0.8848643
|
||||
-4 1:0.9084925 2:0.81168101 3:0.34967307 4:0.87263675 5:0.92874272 6:0.95245031
|
||||
-4 1:0.92329691 2:0.81168101 3:0.38363164 4:0.90195366 5:0.94721311 6:0.96546564
|
||||
-4 1:0.57344979 2:0.48181144 3:0.30613855 4:0.5501884 5:0.63507418 6:0.69921871
|
||||
-4 1:0.71142938 2:0.48181144 3:0.39213386 4:0.69127321 5:0.77191106 6:0.82345762
|
||||
-4 1:0.78886067 2:0.48181144 3:0.43249652 4:0.7471404 5:0.81818547 6:0.86246211
|
||||
-4 1:0.81787116 2:0.48181144 3:0.49339103 4:0.82858559 5:0.8857902 6:0.91928407
|
||||
-4 1:0.88449615 2:0.48181144 3:0.54288529 4:0.87835745 5:0.92321476 6:0.94810517
|
||||
-4 1:0.92772314 2:0.48181144 3:0.55310907 4:0.90350893 5:0.94336083 6:0.96265482
|
79
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.1mfz.json
vendored
Normal file
79
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/other_models/vmaf_v0.6.1mfz.json
vendored
Normal file
File diff suppressed because one or more lines are too long
1162
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.json
vendored
Normal file
1162
third-party/ffmpeg/ffmpeg-git-20240213-amd64-static/model/vmaf_4k_rb_v0.6.2/vmaf_4k_rb_v0.6.2.json
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,269 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 262
|
||||
rho -1.60479
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
-4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
-4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
-4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
-4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
-4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
-4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
-4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
-4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
2.930935739331961 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
1.060413684270374 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
-4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
-4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
-4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
0.436749952238512 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
-4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
-4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
-4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-0.8246469269751572 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
-3.451447082810732 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
-4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
-4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
-2.523905990214181 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
-4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
-4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
-4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
-4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
-4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
0.5087599596887084 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
-4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
1.863140664470512 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,268 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 261
|
||||
rho -1.57405
|
||||
SV
|
||||
-4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
2.899206114195092 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
-4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
-4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
0.09625028690961654 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
-4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
-4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
-4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
-4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
-4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-3.782540565151316 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
-4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
-4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
-4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
-4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
-4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
-4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
-4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-3.313081238101319 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-1.839047553100057 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
-4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
-3.1836686505206 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
-4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
-4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
-4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
-4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-1.263085668851894 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
-4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
-4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
3.804543598895357 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-2.405549469112207 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
-4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
-3.013026855162674 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,268 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 261
|
||||
rho -1.65319
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
-4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
-3.891618205083055 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
-4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
-4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
-0.4243654261820624 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
-4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
-4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-0.6357510480030849 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
-4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
-4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
-4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
-4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
-4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
-4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
-4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
-4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
-4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
-4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
-2.479830355558609 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
-4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
-4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
-4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
0.9650268433096254 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
-4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
-4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
-4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
-4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
-4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-3.368434965173255 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
-4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
-4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
-4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
1.834973156690444 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
-4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,268 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 261
|
||||
rho -1.60079
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
-4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
-4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
-4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
-4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-2.800000000000069 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
1.07296557495766 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
-4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
-4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
-4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
-4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
-4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
-4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
-4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
1.905112078998649 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
-4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
-4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
-4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
-4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
-4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
-4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
2.964601102989109 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
-4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
-4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
-4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
-4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
1.922063381554468 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
-4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
-4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
-4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
-4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
1.046651551352389 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
-4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
-4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
-4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
1.888606310147793 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
-4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,269 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 262
|
||||
rho -1.54645
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
-4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
3.822497082978936 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
-4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
-4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-2.376475485780836 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
-4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
-4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
-4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
-4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
-4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
-4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-1.082210781690216 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
-4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
0.1903112384760878 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
-4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-0.8055997832080108 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
-4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
-4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
-4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
-4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
-3.645145659549673 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
-4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
-4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
-4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
-4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
-4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
2.868209900110193 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
-4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
-4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
3.432912247380821 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
-4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
-4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
-4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
-4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
-4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
-4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
-4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
-4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-2.915399859006364 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
-4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
-4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
0.4860695310540324 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-3.97516843076497 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
-4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
-4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
-4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
-4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,268 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 261
|
||||
rho -1.41442
|
||||
SV
|
||||
-4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
-4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
-4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
-4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
-4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
-4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
-4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
2.575922962280785 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
-4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
-0.8636775403155356 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
-4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
3.696688302487471 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
-4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
-4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
-4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
-4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
1.32764570282425 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
-4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
0.8089824558377077 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
-4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
-4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
-4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
3.206721381239696 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-1.936322459684535 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
-4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
3.283522463811468 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
-4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
-4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
-4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
-4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
-4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
-4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
-4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
-4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
-4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
3.900516731518689 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
-4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
-4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
-4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,269 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 262
|
||||
rho -1.73978
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
-4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
-4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
-4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
-4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
-4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
2.972142533806863 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
-4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
-4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-1.925711744302468 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
2.357463191604671 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
-4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
-4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
-4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
-4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
3.635213891296596 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
-4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-1.254681319375196 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
-4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-2.888318609956385 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
-4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
-4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
-4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
-4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-0.5012543835768943 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
-4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
-4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-0.3649170993560709 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
3.086357441187037 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
-4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
-4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
-4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
-4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-3.865116843433056 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
-4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
-4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
2.748822942104902 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
-4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,270 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 263
|
||||
rho -1.81631
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
1.51967913599102 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
-4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
-2.639922798618748 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
-4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
0.9079653007391202 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
-4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
-4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
-4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
-4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
-4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
-4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
-4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
-4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
-4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
-0.4999544844070694 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
-4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
-4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
2.511784171630497 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
-4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
1.286485519755123 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
-4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
-4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-1.902139452793502 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
-4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
-2.493172310170158 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
-3.644747102741488 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
-4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
0.5740858718843057 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
-3.862954228835321 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
-4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
-4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
-4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-3.757109622433784 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
-4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
-4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,269 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 262
|
||||
rho -1.63385
|
||||
SV
|
||||
-4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-3.387724242887229 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
2.682769020573291 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
-4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
-4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
1.642083192653687 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-1.293833823376142 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
-4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
-4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
-4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
-4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
-4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
-4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
-4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
-4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
-1.870276134396227 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
-4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
-4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
-4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
-4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
-4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-0.2481657993404727 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
-4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
-4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
-4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
-4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
-4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
-4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
1.676104509014743 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
-4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
-4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
-4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
-4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
-4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
-4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
-4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
-4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
0.7990432777583498 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,267 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 260
|
||||
rho -1.37531
|
||||
SV
|
||||
-4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
2.026750270593967 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
-4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
-4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
-4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
3.5763258845334 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
-4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
-4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
-4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
-4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
-4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
-4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
-4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
-4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
-4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
-4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
-4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
-4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
1.57245434935135 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
-4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
-4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-2.883954071819275 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
-4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
-4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
-4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
-4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
1.23280026995639 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
-4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
-4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
-4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
-4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
-4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
-4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
-3.916045928180794 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
-4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
-4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
2.391669225564962 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
-4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,269 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 262
|
||||
rho -1.49819
|
||||
SV
|
||||
-4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
-4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
0.9277999132442707 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
-4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
-4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
-4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
-4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
-4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-1.166534269639357 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
-4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
2.11930173902674 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
-4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
-4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
2.717992056703441 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
-4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
-4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
-4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
-4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
2.264724261431847 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
-4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
0.7262892026484469 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
2.246819768971275 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
-4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
-4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
-4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
-4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
-4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
-4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
-4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-1.633465730360713 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
-4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
-4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
-4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
-4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
3.797073057974048 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
-4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
-4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,267 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 260
|
||||
rho -1.99103
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
-4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
-4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
3.42298643530285 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
-3.025428510398043 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
-4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
-4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
-4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
-4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
-4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
-4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
-4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
1.131938512797615 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
-4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
-4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
-4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
2.938837291849785 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
-4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
-4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
-4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
-4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
-4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
-3.774571489602023 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
1.06748037879123 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
-4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
-4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
-4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
-4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
-4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
2.715858940228034 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
-4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
-4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
-4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
-4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
-4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
-4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
-4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
-4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
-4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
-4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
-4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
3.522898441030553 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
-4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,269 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 262
|
||||
rho -1.81613
|
||||
SV
|
||||
-4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
-4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
-4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
-4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
0.5252683486244938 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
-4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
-4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
-4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
-4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
-4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
-4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
-4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
-4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
-4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
-4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
-4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
1.597700689789539 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
-4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
-4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
2.763923467652942 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
-4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
-4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
-4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
0.7059835552753501 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
-4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
2.434805653237424 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
-4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
-4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-3.05657652479641 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
-4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-0.6433975216964775 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
-4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
-4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
-4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
-4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
-3.100025953507183 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
2.772318285420321 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
-4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,268 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 261
|
||||
rho -1.55808
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
-4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
-4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
-4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
-0.1401081292847937 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
-4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
-4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
-4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
-4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
-4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
-4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
-4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
-2.161005935997721 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
-4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
-4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
-4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
-4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
-4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
-4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
-1.590044029224329 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
-4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
-3.850446948881626 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
-4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
-4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
-4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
-4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
-4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
-4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
-4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
-4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
1.998615007348781 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
-4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
-4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
-4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
-4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-3.058394956611598 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
2.077715359534371 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
-4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
2.723669633116917 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,268 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 261
|
||||
rho -1.64949
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
0.9033649579937357 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-3.025443165569094 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
-4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
-4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
-4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
3.793512455237836 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
-4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
-4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
-4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
-4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
-4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
3.437055635373653 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
-4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-3.192510349565712 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
-4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
-4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
-4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
-4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
-4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
-4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
-4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
-4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
-4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
-4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
-4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
-4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
-4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
-4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
-3.180170569273433 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
2.276821629131246 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
-4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
-4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
-4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
-4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
-4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
0.3892453222635974 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
-4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
-1.40187591559183 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
-4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
-4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
-4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
-4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,272 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 265
|
||||
rho -1.83597
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-2.009622932423556 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
-4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
-4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
-4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
-4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
-4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
-4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
-4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
-4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
-4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
-2.498523727849802 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
-4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
-4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
-4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
-4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
-4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
-4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
-4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-0.2748005317337564 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
-4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
-4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-2.229335562892128 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
-4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
-4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
-4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
-4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
-4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
0.7491908062068346 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
-4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-0.2004315294184066 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
-4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
-4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
-4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
-4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
-4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
-4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
-4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
-4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-1.120458347797265 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
-4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
-4 1:0.87917131 2:0.41153394 3:0.31836031 4:0.81090768 5:0.887565 6:0.92590615
|
||||
-4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
1.901436410589831 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
-4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-1.595135245311153 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
-4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
-4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
-4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
-4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
-3.060087989903068 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
-4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
-4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
-4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
-4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
-4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
0.1493727832034025 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
-4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:0.25451112 2:0.41032924 3:0.239294 4:0.27618757 5:0.23743598 6:0.17354124
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
-4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
-4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
-4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-1.811604132670931 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
-4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
-4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
-4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,268 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 261
|
||||
rho -1.46959
|
||||
SV
|
||||
4 1:0.99939284 2:0.050988098 3:0.99999956 4:0.99999701 5:0.9999947 6:0.99999444
|
||||
4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
-4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
-4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
-4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
-4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
-4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
4 1:0.83864962 2:0.050988098 3:0.38405986 4:0.81919138 5:0.8810097 6:0.9109596
|
||||
-4 1:0.82264009 2:0.050988098 3:0.35981237 4:0.77013967 5:0.82806852 6:0.85777151
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
-4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
4 1:0.43671916 2:0.050988098 3:0.30969518 4:0.65136495 5:0.68132238 6:0.73261178
|
||||
-4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
-4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
-4 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
-4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.66873968 2:0.71982347 3:0.26759387 4:0.43612997 5:0.51903634 6:0.59741799
|
||||
4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
-4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
-4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
-4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.33784752 2:0.71982347 3:0.13817483 4:0.20458733 5:0.2516001 6:0.34154118
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
-4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
-4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
-4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
-4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
-4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
-4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
-4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
4 1:0.72233742 2:0.066104402 3:0.6111271 4:0.75016894 5:0.79398174 6:0.81321126
|
||||
4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.6723527 2:0.066104402 3:0.62006113 4:0.75287675 5:0.79557065 6:0.84205178
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
-4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
-4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
-4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
-4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
-4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
-4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
1.267400409345164 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
-4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
4 1:0.87606982 2:0.4219157 3:0.42043726 4:0.79317785 5:0.88213449 6:0.92622089
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
-4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
-4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
4 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
1.685461736685947 1:0.042473589 2:0.4219157 3:0.010210529 4:0.028715108 5:0.053394221 6:0.14768459
|
||||
-4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
-3.597056151126136 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
-4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
-4 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
2.832130598662727 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
-4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
-4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
-4 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
-4 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
-2.908609654857298 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.62670365 2:1 3:0.25937901 4:0.31277626 5:0.33204715 6:0.34952226
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
4 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
-4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
-4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
-4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
-4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
-4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
-4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
-4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
2.61831846502076 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
-4 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
-4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85734964 2:0.41153394 3:0.28689298 4:0.75950394 5:0.84227294 6:0.88860939
|
||||
4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
-4 1:0.84346189 2:0.41153394 3:0.29695396 4:0.76665422 5:0.85020434 6:0.8951033
|
||||
4 1:0.77231516 2:0.41153394 3:0.22613832 4:0.61849783 5:0.69510002 6:0.74611821
|
||||
-4 1:0.79826801 2:0.41153394 3:0.27610067 4:0.72574042 5:0.81561441 6:0.86703542
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
-4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.56116305 2:0.41153394 3:0.211298 4:0.57777075 5:0.64729662 6:0.70904305
|
||||
-4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
-4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
-4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
-4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
-4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
-4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
4 1:0.86884349 2:0.41032924 3:0.54882568 4:0.79721591 5:0.86027193 6:0.89474014
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
-4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
2.396688790285471 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
-4 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
-4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
-4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
-4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
-4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
-4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
-4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
-4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
-4 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-0.2943341940166318 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
-4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
-4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
-4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
-4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.78986743 2:0.14610739 3:0.34480055 4:0.67269731 5:0.7665205 6:0.81617937
|
||||
4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.71584379 2:0.14610739 3:0.32647994 4:0.63142698 5:0.72248224 6:0.77198126
|
||||
4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
-4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
-4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
-4 1:0.39949501 2:0.14610739 3:0.26598279 4:0.48912153 5:0.52873127 6:0.53229307
|
||||
4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
-4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
@ -0,0 +1,93 @@
|
||||
(dp0
|
||||
S'param_dict'
|
||||
p1
|
||||
(dp2
|
||||
S'C'
|
||||
p3
|
||||
F4.0
|
||||
sS'norm_type'
|
||||
p4
|
||||
S'clip_0to1'
|
||||
p5
|
||||
sS'score_clip'
|
||||
p6
|
||||
(lp7
|
||||
F0.0
|
||||
aF100.0
|
||||
asS'num_models'
|
||||
p8
|
||||
I20
|
||||
sS'nu'
|
||||
p9
|
||||
F0.9
|
||||
sS'gamma'
|
||||
p10
|
||||
F0.04
|
||||
ssS'model_dict'
|
||||
p11
|
||||
(dp12
|
||||
S'feature_dict'
|
||||
p13
|
||||
(dp14
|
||||
S'VMAF_feature'
|
||||
p15
|
||||
(lp16
|
||||
S'vif_scale0'
|
||||
p17
|
||||
aS'vif_scale1'
|
||||
p18
|
||||
aS'vif_scale2'
|
||||
p19
|
||||
aS'vif_scale3'
|
||||
p20
|
||||
aS'adm2'
|
||||
p21
|
||||
aS'motion2'
|
||||
p22
|
||||
assg4
|
||||
S'linear_rescale'
|
||||
p23
|
||||
sg6
|
||||
g7
|
||||
sS'feature_names'
|
||||
p24
|
||||
(lp25
|
||||
S'VMAF_feature_adm2_score'
|
||||
p26
|
||||
aS'VMAF_feature_motion2_score'
|
||||
p27
|
||||
aS'VMAF_feature_vif_scale0_score'
|
||||
p28
|
||||
aS'VMAF_feature_vif_scale1_score'
|
||||
p29
|
||||
aS'VMAF_feature_vif_scale2_score'
|
||||
p30
|
||||
aS'VMAF_feature_vif_scale3_score'
|
||||
p31
|
||||
asS'intercepts'
|
||||
p32
|
||||
(lp33
|
||||
F-0.31191973282964003
|
||||
aF-0.8536192302086182
|
||||
aF-0.01336836451078975
|
||||
aF-0.09603743694887917
|
||||
aF-0.21890356649141152
|
||||
aF-0.35835059999617175
|
||||
aF-0.5373563330683786
|
||||
asS'model_type'
|
||||
p34
|
||||
S'RESIDUEBOOTSTRAP_LIBSVMNUSVR'
|
||||
p35
|
||||
sS'model'
|
||||
p36
|
||||
NsS'slopes'
|
||||
p37
|
||||
(lp38
|
||||
F0.012388059998472608
|
||||
aF1.853012066458466
|
||||
aF0.05141551931924402
|
||||
aF1.0960374437054892
|
||||
aF1.2189036205165853
|
||||
aF1.3583508615652835
|
||||
aF1.5373567703674345
|
||||
ass.
|
@ -0,0 +1,271 @@
|
||||
svm_type nu_svr
|
||||
kernel_type rbf
|
||||
gamma 0.04
|
||||
nr_class 2
|
||||
total_sv 264
|
||||
rho -1.49795
|
||||
SV
|
||||
-4 1:0.99939284 2:0.71982347 3:0.99999932 4:0.99999929 5:0.99999902 6:0.9999986
|
||||
-4 1:0.99939284 2:0.066104402 3:0.99999363 4:0.99999023 5:0.9999835 6:0.99998197
|
||||
-4 1:0.99939284 2:0.021298217 3:0.99999905 4:0.99999854 5:0.99999742 6:0.9999955
|
||||
4 1:0.99939284 2:0.4219157 3:1 4:1 5:1 6:1
|
||||
-4 1:0.99939284 2:0.41153394 3:0.99999809 4:0.99999407 5:0.999992 6:0.99999118
|
||||
4 1:0.99939284 2:0.17755989 3:0.99999975 4:0.99999351 5:0.99998797 6:0.99998744
|
||||
4 1:0.99939284 2:1 3:0.99999853 4:0.99999797 5:0.99999707 6:0.99999697
|
||||
4 1:0.99939284 2:0.067429096 3:0.99999826 4:0.99999612 5:0.99999354 6:0.99999337
|
||||
4 1:0.99939284 2:0.41032924 3:0.99999923 4:0.99999861 5:0.99999718 6:0.99999652
|
||||
4 1:0.99939284 2:0.064778982 3:0.99999965 4:0.99999001 5:0.99998599 6:0.99998452
|
||||
-4 1:0.99939284 3:0.99999976 4:0.99999986 5:0.99999981 6:0.99999912
|
||||
-4 1:0.99939284 2:0.14610739 3:0.99999926 4:0.99999442 5:0.99999157 6:0.99999139
|
||||
4 1:0.97067067 2:0.050988098 3:0.49543962 4:0.9490745 5:0.97475171 6:0.98472179
|
||||
4 1:0.96418744 2:0.050988098 3:0.46988192 4:0.92383404 5:0.95757873 6:0.97233463
|
||||
-4 1:0.95392833 2:0.050988098 3:0.44208135 4:0.8901289 5:0.93112702 6:0.95070816
|
||||
-4 1:0.9377329 2:0.050988098 3:0.45140723 4:0.91821601 5:0.9544047 6:0.97006662
|
||||
4 1:0.92797904 2:0.050988098 3:0.42756389 4:0.88415491 5:0.92731024 6:0.947393
|
||||
-4 1:0.9116005 2:0.050988098 3:0.4013622 4:0.8417096 5:0.88934565 6:0.91268991
|
||||
4 1:0.90408239 2:0.050988098 3:0.42837654 4:0.89330043 5:0.9381379 6:0.95747194
|
||||
4 1:0.89392463 2:0.050988098 3:0.40580803 4:0.85450813 5:0.90414358 6:0.92789549
|
||||
4 1:0.87860187 2:0.050988098 3:0.38181902 4:0.8098155 5:0.86047538 6:0.8864857
|
||||
4 1:0.84912189 2:0.050988098 3:0.40304721 4:0.85597966 5:0.91737096 6:0.94451916
|
||||
4 1:0.72530266 2:0.050988098 3:0.36509103 4:0.7803563 5:0.85121225 6:0.90847043
|
||||
4 1:0.71395913 2:0.050988098 3:0.35076533 4:0.74960971 5:0.81479928 6:0.86738588
|
||||
-4 1:0.69835377 2:0.050988098 3:0.33114525 4:0.70635463 5:0.76097853 6:0.8040479
|
||||
-4 1:0.57536217 2:0.050988098 3:0.33608994 4:0.71362303 5:0.76736581 6:0.82220476
|
||||
-4 1:0.56279868 2:0.050988098 3:0.3242142 4:0.68621629 5:0.73148001 6:0.77845387
|
||||
4 1:0.54413788 2:0.050988098 3:0.30829451 4:0.65018018 5:0.68403685 6:0.71900287
|
||||
-4 1:0.44593277 2:0.050988098 3:0.31899854 4:0.67259186 5:0.70967941 6:0.7722768
|
||||
4 1:0.42693909 2:0.050988098 3:0.29609478 4:0.62046105 5:0.64002486 6:0.67430791
|
||||
-2.6764477977318 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.86629362 2:0.71982347 3:0.48704318 4:0.79897775 5:0.87428887 6:0.91698512
|
||||
-4 1:0.81132964 2:0.71982347 3:0.40069978 4:0.68226748 5:0.77591641 6:0.83959232
|
||||
4 1:0.83930799 2:0.71982347 3:0.43685332 4:0.73078798 5:0.82569797 6:0.88313372
|
||||
-4 1:0.82104472 2:0.71982347 3:0.40784454 4:0.6870597 5:0.78745308 6:0.85289277
|
||||
-4 1:0.74699836 2:0.71982347 3:0.31844762 4:0.53709426 5:0.6345148 6:0.71373411
|
||||
3.907254450579291 1:0.81333039 2:0.71982347 3:0.43098515 4:0.72394543 5:0.82486183 6:0.88337434
|
||||
4 1:0.7567244 2:0.71982347 3:0.34895637 4:0.58582297 5:0.69322753 6:0.77472255
|
||||
-4 1:0.73878903 2:0.71982347 3:0.36112988 4:0.62230674 5:0.75026901 6:0.8339499
|
||||
4 1:0.6832086 2:0.71982347 3:0.29503172 4:0.49646552 5:0.60960086 6:0.70454744
|
||||
4 1:0.60246526 2:0.71982347 3:0.22993127 4:0.37032595 5:0.45049262 6:0.53353221
|
||||
4 1:0.56179559 2:0.71982347 3:0.24308411 4:0.41261968 5:0.54180311 6:0.69179288
|
||||
4 1:0.5113668 2:0.71982347 3:0.2024429 4:0.32849939 5:0.42162036 6:0.54644452
|
||||
4 1:0.43448252 2:0.71982347 3:0.15539012 4:0.23356514 5:0.28327683 6:0.36722447
|
||||
4 1:0.3778537 2:0.71982347 3:0.16549547 4:0.2611707 5:0.3403477 6:0.46036189
|
||||
-4 1:0.27170374 2:0.71982347 3:0.10540751 4:0.13933699 5:0.15095506 6:0.19817438
|
||||
-4 1:0.2331476 2:0.71982347 3:0.11204632 4:0.15703824 5:0.18727069 6:0.28587565
|
||||
4 1:0.19847267 2:0.71982347 3:0.092940166 4:0.11828028 5:0.1248167 6:0.18078381
|
||||
-4 1:0.13919934 2:0.71982347 3:0.067437816 4:0.068775313 5:0.047314055 6:0.053241443
|
||||
4 1:0.93416822 2:0.066104402 3:0.78940676 4:0.94766693 5:0.97049944 6:0.98007081
|
||||
-4 1:0.91129907 2:0.066104402 3:0.75598257 4:0.92233159 5:0.95186961 6:0.96556305
|
||||
4 1:0.88059412 2:0.066104402 3:0.71656123 4:0.88582657 5:0.92135563 6:0.93892845
|
||||
-4 1:0.90889954 2:0.066104402 3:0.73107539 4:0.91167914 5:0.94403922 6:0.95868361
|
||||
-4 1:0.87711044 2:0.066104402 3:0.69546312 4:0.87200488 5:0.90999902 6:0.92841888
|
||||
-4 1:0.83240726 2:0.066104402 3:0.66019449 4:0.82511815 5:0.86349566 6:0.88275353
|
||||
4 1:0.88034823 2:0.066104402 3:0.69789972 4:0.87983058 5:0.91913978 6:0.93738624
|
||||
4 1:0.84332172 2:0.066104402 3:0.66221738 4:0.8330874 5:0.87381425 6:0.89425692
|
||||
4 1:0.7947559 2:0.066104402 3:0.62943841 4:0.78442623 5:0.81961037 6:0.83588208
|
||||
-4 1:0.8445286 2:0.066104402 3:0.67301388 4:0.84900234 5:0.8977087 6:0.91841756
|
||||
4 1:0.80750528 2:0.066104402 3:0.63895062 4:0.80166112 5:0.84609333 6:0.86486365
|
||||
-4 1:0.75551102 2:0.066104402 3:0.60539321 4:0.75077297 5:0.78607721 6:0.79724688
|
||||
-4 1:0.76045302 2:0.066104402 3:0.64179152 4:0.79440383 5:0.84810636 6:0.88090735
|
||||
-4 1:0.67315793 2:0.066104402 3:0.58060257 4:0.70437387 5:0.73465103 6:0.73523596
|
||||
-4 1:0.63675161 2:0.066104402 3:0.59379594 4:0.71425087 5:0.74517244 6:0.77487561
|
||||
-4 1:0.59242211 2:0.066104402 3:0.5636273 4:0.6689991 5:0.68518093 6:0.69076381
|
||||
-4 1:0.5922744 2:0.066104402 3:0.60324622 4:0.72279409 5:0.75399448 6:0.80004372
|
||||
4 1:0.56164749 2:0.066104402 3:0.58086179 4:0.68984664 5:0.71004316 6:0.73622079
|
||||
-4 1:0.52270076 2:0.066104402 3:0.55139557 4:0.64656965 5:0.65206052 6:0.65203367
|
||||
-4 1:0.97683514 2:0.021298217 3:0.79006309 4:0.96543498 5:0.98286137 6:0.98970893
|
||||
4 1:0.96917374 2:0.021298217 3:0.73829188 4:0.94562107 5:0.9720532 6:0.9827408
|
||||
4 1:0.95871969 2:0.021298217 3:0.68499274 4:0.91613875 5:0.9539741 6:0.97047879
|
||||
4 1:0.96082897 2:0.021298217 3:0.71750756 4:0.95076843 5:0.97548069 6:0.98526422
|
||||
4 1:0.95164281 2:0.021298217 3:0.6658229 4:0.91863413 5:0.95575768 6:0.97210294
|
||||
-4 1:0.93237214 2:0.021298217 3:0.58347155 4:0.85481826 5:0.91374583 6:0.94325142
|
||||
4 1:0.89567693 2:0.021298217 3:0.58219473 4:0.90663122 5:0.96182464 6:0.97713516
|
||||
4 1:0.88284122 2:0.021298217 3:0.53628784 4:0.85469318 5:0.92703739 6:0.95327598
|
||||
-4 1:0.86241747 2:0.021298217 3:0.47931708 4:0.7776951 5:0.86801434 6:0.910233
|
||||
4 1:0.7980028 2:0.021298217 3:0.46673975 4:0.79695862 5:0.92218079 6:0.96750104
|
||||
-4 1:0.78576115 2:0.021298217 3:0.43553076 4:0.7460098 5:0.87803168 6:0.93469599
|
||||
-4 1:0.76605196 2:0.021298217 3:0.39315849 4:0.66848161 5:0.80255256 6:0.87361428
|
||||
4 1:0.58665967 2:0.021298217 3:0.3220426 4:0.54484412 5:0.7193025 6:0.88036572
|
||||
4 1:0.57643091 2:0.021298217 3:0.30580604 4:0.51190629 5:0.67579634 6:0.83081105
|
||||
4 1:0.55885972 2:0.021298217 3:0.28190551 4:0.46007761 5:0.60264024 6:0.74348398
|
||||
-4 1:0.35873577 2:0.021298217 3:0.24431536 4:0.37994438 5:0.50206362 6:0.64244093
|
||||
4 1:0.35180843 2:0.021298217 3:0.2349948 4:0.36009808 5:0.47156276 6:0.60596511
|
||||
4 1:0.34048976 2:0.021298217 3:0.22125971 4:0.32959356 5:0.42240276 6:0.54252231
|
||||
-4 1:0.19466612 2:0.021298217 3:0.2006595 4:0.28475881 5:0.35586074 6:0.51761911
|
||||
-4 1:0.18965751 2:0.021298217 3:0.19488505 4:0.27271641 5:0.33648612 6:0.48447905
|
||||
4 1:0.1814951 2:0.021298217 3:0.18573864 4:0.25287656 5:0.30301198 6:0.42421488
|
||||
4 1:0.91141884 2:0.4219157 3:0.51488117 4:0.85936589 5:0.92126637 6:0.9509564
|
||||
4 1:0.91050791 2:0.4219157 3:0.51170081 4:0.85742154 5:0.92017755 6:0.95028867
|
||||
4 1:0.88595276 2:0.4219157 3:0.44052173 4:0.80179187 5:0.88580681 6:0.92820352
|
||||
4 1:0.89351476 2:0.4219157 3:0.46719499 4:0.84064804 5:0.91220882 6:0.94578215
|
||||
-4 1:0.83041563 2:0.4219157 3:0.33320494 4:0.67165697 5:0.7906166 6:0.86070638
|
||||
-4 1:0.81048328 2:0.4219157 3:0.3381176 4:0.76378989 5:0.88522402 6:0.93052674
|
||||
-4 1:0.77358122 2:0.4219157 3:0.28271443 4:0.65320093 5:0.79807098 6:0.8696108
|
||||
4 1:0.72162639 2:0.4219157 3:0.22235436 4:0.5223276 5:0.67415206 6:0.77142043
|
||||
4 1:0.68842583 2:0.4219157 3:0.22275829 4:0.58336434 5:0.78879637 6:0.88983521
|
||||
-4 1:0.6526809 2:0.4219157 3:0.1861581 4:0.48473563 5:0.67986667 6:0.80207435
|
||||
-4 1:0.5997337 2:0.4219157 3:0.14502789 4:0.37458805 5:0.5431471 6:0.67665606
|
||||
4 1:0.45510711 2:0.4219157 3:0.10494997 4:0.29538479 5:0.49160337 6:0.71662671
|
||||
4 1:0.41748398 2:0.4219157 3:0.084767542 4:0.23463647 5:0.39118915 6:0.59179152
|
||||
2.489155431952107 1:0.35974355 2:0.4219157 3:0.060748299 4:0.16481355 5:0.27425611 6:0.43460248
|
||||
-4 1:0.23169409 2:0.4219157 3:0.048508288 4:0.13768591 5:0.24707533 6:0.40719122
|
||||
-4 1:0.20260612 2:0.4219157 3:0.036631159 4:0.102091 5:0.18145932 6:0.31803017
|
||||
-4 1:0.15560078 2:0.4219157 3:0.022332774 4:0.060770097 5:0.10624488 6:0.20706242
|
||||
4 1:0.07072824 2:0.4219157 3:0.018298168 4:0.05227841 5:0.098051849 6:0.23169122
|
||||
4 1:1.110223e-16 2:0.4219157 3:-1.3877788e-17 4:-2.7755576e-17 6:0.048728064
|
||||
4 1:0.92016456 2:0.17755989 3:0.28445783 4:0.76256413 5:0.878973 6:0.93138741
|
||||
4 1:0.91005179 2:0.17755989 3:0.24323732 4:0.70234527 5:0.8362572 6:0.90187908
|
||||
4 1:0.88256545 2:0.17755989 3:0.15914187 4:0.55559405 5:0.71345251 6:0.80791685
|
||||
4 1:0.90419278 2:0.17755989 3:0.20481669 4:0.64392636 5:0.79442969 6:0.87497932
|
||||
0.4410074373697621 1:0.87829669 2:0.17755989 3:0.13872696 4:0.51358873 5:0.67488416 6:0.77600855
|
||||
4 1:0.84542326 2:0.17755989 3:0.10437835 4:0.43810307 5:0.59082415 6:0.69314276
|
||||
-4 1:0.86603509 2:0.17755989 3:0.15113761 4:0.53857524 5:0.70165231 6:0.80180281
|
||||
4 1:0.83995428 2:0.17755989 3:0.11205502 4:0.45141136 5:0.60876051 6:0.7150352
|
||||
4 1:0.80377521 2:0.17755989 3:0.088196383 4:0.39371713 5:0.53694408 6:0.63485159
|
||||
4 1:0.81385195 2:0.17755989 3:0.12620028 4:0.48485111 5:0.64894062 6:0.75467438
|
||||
-4 1:0.78603394 2:0.17755989 3:0.099154008 4:0.41891421 5:0.57038625 6:0.67485233
|
||||
4 1:0.74608925 2:0.17755989 3:0.077679983 4:0.36403126 5:0.49643237 6:0.5866
|
||||
-4 1:0.67021959 2:0.17755989 3:0.10106749 4:0.42493279 5:0.58169808 6:0.69537149
|
||||
-4 1:0.64185148 2:0.17755989 3:0.083254507 4:0.37713697 5:0.51413321 6:0.61155168
|
||||
-4 1:0.60166239 2:0.17755989 3:0.066162412 4:0.33103444 5:0.44584 6:0.5191942
|
||||
-0.1235522022682687 1:0.50596606 2:0.17755989 3:0.086479478 4:0.38777983 5:0.5308163 6:0.63660165
|
||||
-4 1:0.47859936 2:0.17755989 3:0.072687526 4:0.34936144 5:0.47239557 6:0.5559507
|
||||
4 1:0.43845677 2:0.17755989 3:0.0580781 4:0.30930574 5:0.41085136 6:0.46717424
|
||||
0.06749296251421208 1:0.36280896 2:0.17755989 3:0.076394495 4:0.36116467 5:0.49086262 6:0.5863048
|
||||
4 1:0.339869 2:0.17755989 3:0.065775733 4:0.33141351 5:0.44429517 6:0.51614837
|
||||
4 1:0.30203933 2:0.17755989 3:0.052980146 4:0.29595567 5:0.38900859 6:0.43266074
|
||||
4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
-4 1:0.83817724 2:1 3:0.48211034 4:0.67164548 5:0.74684182 6:0.80144501
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
4 1:0.79858942 2:1 3:0.39646188 4:0.55093503 5:0.61923565 6:0.67384768
|
||||
-4 1:0.77639062 2:1 3:0.37265093 4:0.513471 5:0.5756435 6:0.626731
|
||||
-4 1:0.82802592 2:1 3:0.42881008 4:0.59830169 5:0.68302926 6:0.74685623
|
||||
-4 1:0.79291704 2:1 3:0.38339409 4:0.52713136 5:0.60213678 6:0.6647626
|
||||
-4 1:0.70376868 2:1 3:0.3003252 4:0.39047192 5:0.43165029 6:0.47109673
|
||||
4 1:0.79827724 2:1 3:0.42095183 4:0.57898312 5:0.67201591 6:0.73979589
|
||||
4 1:0.72627998 2:1 3:0.33468753 4:0.43786041 5:0.49854834 6:0.55141858
|
||||
-4 1:0.64522624 2:1 3:0.33533743 4:0.42400651 5:0.4895503 6:0.572323
|
||||
4 1:0.57474363 2:1 3:0.26878017 4:0.31350754 5:0.33529491 6:0.37251888
|
||||
-4 1:0.47520203 2:1 3:0.20793711 4:0.21420053 5:0.19540816 6:0.18220079
|
||||
1.968385226497403 1:0.47142758 2:1 3:0.27819932 4:0.32101893 5:0.34502997 6:0.38578806
|
||||
-4 1:0.41439087 2:1 3:0.22773128 4:0.23958278 5:0.22857617 6:0.22693578
|
||||
4 1:0.32605309 2:1 3:0.17816529 4:0.16093999 5:0.11686383 6:0.06853313
|
||||
-4 1:0.31129079 2:1 3:0.24354672 4:0.25922218 5:0.25276742 6:0.27267936
|
||||
4 1:0.26050571 2:1 3:0.20191772 4:0.19422711 5:0.16030609 6:0.13256762
|
||||
4 1:0.1875636 2:1 3:0.16020164 4:0.13034576 5:0.070806091
|
||||
4 1:0.92043781 2:0.064778982 3:0.10731312 4:0.92865048 5:0.96616172 6:0.97870032
|
||||
-4 1:0.89332398 2:0.064778982 3:0.081553072 4:0.88356542 5:0.93679165 6:0.95607085
|
||||
-4 1:0.86104377 2:0.064778982 3:0.063594449 4:0.83329523 5:0.89705938 6:0.92172879
|
||||
4 1:0.86887317 2:0.064778982 3:0.080783435 4:0.8868064 5:0.93958114 6:0.95873325
|
||||
-4 1:0.8407759 2:0.064778982 3:0.064276214 4:0.83712744 5:0.90102313 6:0.9260964
|
||||
-4 1:0.8033305 2:0.064778982 3:0.048493857 4:0.78247464 5:0.8514111 6:0.87935001
|
||||
4 1:0.81084152 2:0.064778982 3:0.066615908 4:0.85255528 5:0.91699879 6:0.94147769
|
||||
4 1:0.78294588 2:0.064778982 3:0.052801797 4:0.79905896 5:0.86924403 6:0.89848251
|
||||
-4 1:0.74279413 2:0.064778982 3:0.038810404 4:0.7430212 5:0.81108068 6:0.83919241
|
||||
-4 1:0.7535469 2:0.064778982 3:0.0553861 4:0.81573181 5:0.89228763 6:0.92360272
|
||||
4 1:0.72656633 2:0.064778982 3:0.043258869 4:0.76460435 5:0.83920864 6:0.87155626
|
||||
-4 1:0.68726622 2:0.064778982 3:0.030922104 4:0.71254668 5:0.77850594 6:0.80498778
|
||||
-4 1:0.63349803 2:0.064778982 3:0.038013615 4:0.75176999 5:0.83528432 6:0.88215862
|
||||
-4 1:0.60394824 2:0.064778982 3:0.03004494 4:0.71400524 5:0.78578757 6:0.82308143
|
||||
-4 1:0.56241959 2:0.064778982 3:0.02136261 4:0.67291865 5:0.72892243 6:0.74881646
|
||||
-4 1:0.50818128 2:0.064778982 3:0.028808053 4:0.71172156 5:0.78465896 6:0.82722602
|
||||
4 1:0.47829471 2:0.064778982 3:0.022946892 4:0.68323749 5:0.74386141 6:0.77269399
|
||||
-4 1:0.43957805 2:0.064778982 3:0.015447998 4:0.64780359 5:0.69255168 6:0.70091868
|
||||
3.674816028526956 1:0.40154084 2:0.064778982 3:0.022697618 4:0.68415777 5:0.74445841 6:0.78162172
|
||||
-4 1:0.37879873 2:0.064778982 3:0.017681529 4:0.65971271 5:0.70852034 6:0.72766839
|
||||
4 1:0.3439641 2:0.064778982 3:0.011635393 4:0.63097298 5:0.66613358 6:0.66379079
|
||||
4 1:0.91491234 2:0.41153394 3:0.38096487 4:0.89889761 5:0.95038406 6:0.97192506
|
||||
-4 1:0.88655237 2:0.41153394 3:0.32747681 4:0.82957396 5:0.90234555 6:0.93753935
|
||||
-4 1:0.85010476 2:0.41153394 3:0.28280816 4:0.74746763 5:0.83272303 6:0.8801866
|
||||
4 1:0.81463536 2:0.41153394 3:0.24667002 4:0.67362352 5:0.75792704 6:0.81078305
|
||||
-4 1:0.81160508 2:0.41153394 3:0.26264354 4:0.69736365 5:0.7831915 6:0.83531288
|
||||
4 1:0.76319665 2:0.41153394 3:0.24391634 4:0.65464587 5:0.73815109 6:0.79216889
|
||||
-4 1:0.72069133 2:0.41153394 3:0.20960427 4:0.57721443 5:0.64402187 6:0.68939383
|
||||
-4 1:0.68179043 2:0.41153394 3:0.23792453 4:0.64146311 5:0.729184 6:0.79705189
|
||||
-4 1:0.64834555 2:0.41153394 3:0.21497621 4:0.58612074 5:0.65621763 6:0.70995949
|
||||
4 1:0.6030635 2:0.41153394 3:0.18639866 4:0.5184118 5:0.56298176 6:0.58999882
|
||||
4 1:0.52853073 2:0.41153394 3:0.19342012 4:0.53427881 5:0.58548314 6:0.62583696
|
||||
-4 1:0.49283025 2:0.41153394 3:0.17138706 4:0.48192745 5:0.50981682 6:0.51812264
|
||||
-4 1:0.45849528 2:0.41153394 3:0.1933288 4:0.53432693 5:0.58602965 6:0.63438973
|
||||
4 1:0.43100316 2:0.41153394 3:0.17890259 4:0.49936733 5:0.53431359 6:0.55603396
|
||||
4 1:0.39598444 2:0.41153394 3:0.16109051 4:0.45685412 5:0.47167834 6:0.46174802
|
||||
-4 1:0.97539925 2:0.067429096 3:0.646082 4:0.95530639 5:0.9767318 6:0.9857173
|
||||
4 1:0.96522613 2:0.067429096 3:0.61691633 4:0.93120782 5:0.96017845 6:0.97392814
|
||||
4 1:0.95031972 2:0.067429096 3:0.57888699 4:0.89204371 5:0.92938039 6:0.94906265
|
||||
4 1:0.91931216 2:0.067429096 3:0.59158726 4:0.92239172 5:0.95405147 6:0.96924055
|
||||
4 1:0.90510334 2:0.067429096 3:0.5543729 4:0.88103934 5:0.92151244 6:0.94339816
|
||||
-4 1:0.88176654 2:0.067429096 3:0.51021121 4:0.82348961 5:0.87083012 6:0.89896825
|
||||
-4 1:0.86485312 2:0.067429096 3:0.5609934 4:0.89174108 5:0.93509159 6:0.95402597
|
||||
4 1:0.85006491 2:0.067429096 3:0.52208828 4:0.83957283 5:0.88962492 6:0.9155692
|
||||
4 1:0.82840588 2:0.067429096 3:0.47898696 4:0.77590082 5:0.82767172 6:0.85864944
|
||||
-4 1:0.78384486 2:0.067429096 3:0.52761112 4:0.84813033 5:0.90853934 6:0.93801948
|
||||
4 1:0.76794198 2:0.067429096 3:0.49155575 4:0.79297779 5:0.85408909 6:0.88775992
|
||||
-4 1:0.74071295 2:0.067429096 3:0.44850836 4:0.72304483 5:0.77871009 6:0.81240572
|
||||
-4 1:0.63682623 2:0.067429096 3:0.47643242 4:0.76493774 5:0.83497363 6:0.89569946
|
||||
-4 1:0.61909458 2:0.067429096 3:0.44811738 4:0.71722262 5:0.77852333 6:0.83338043
|
||||
-4 1:0.598791 2:0.067429096 3:0.41455634 4:0.65898565 5:0.7066917 6:0.74905326
|
||||
4 1:0.45610548 2:0.067429096 3:0.43433493 4:0.68980457 5:0.74420076 6:0.80465634
|
||||
-4 1:0.42128521 2:0.067429096 3:0.41290869 4:0.6515686 5:0.69403079 6:0.74177718
|
||||
4 1:0.3973199 2:0.067429096 3:0.38324463 4:0.59899705 5:0.62542129 6:0.65364255
|
||||
-4 1:0.33929266 2:0.067429096 3:0.40196048 4:0.63234535 5:0.67000461 6:0.73359019
|
||||
4 1:0.32511472 2:0.067429096 3:0.3843145 4:0.60046279 5:0.62750482 6:0.67370121
|
||||
-4 1:0.30717303 2:0.067429096 3:0.36080477 4:0.55822348 5:0.57073663 6:0.59274921
|
||||
-4 1:0.95339095 2:0.41032924 3:0.65969986 4:0.90653233 5:0.94680111 6:0.9649366
|
||||
4 1:0.93399065 2:0.41032924 3:0.59783417 4:0.84190929 5:0.89750138 6:0.92595957
|
||||
4 1:0.90595546 2:0.41032924 3:0.52675557 4:0.75232557 5:0.81678388 6:0.85451254
|
||||
-4 1:0.83688316 2:0.41032924 3:0.48353911 4:0.70508019 5:0.770587 6:0.80951258
|
||||
-4 1:0.79909048 2:0.41032924 3:0.42019162 4:0.60634089 5:0.66016059 6:0.69152126
|
||||
4 1:0.81190475 2:0.41032924 3:0.49259836 4:0.7117051 5:0.78203532 6:0.82516406
|
||||
-4 1:0.76894895 2:0.41032924 3:0.42716599 4:0.61149887 5:0.67231881 6:0.71093465
|
||||
-4 1:0.71639132 2:0.41032924 3:0.36609086 4:0.5124543 5:0.55235296 6:0.57135484
|
||||
-4 1:0.74851584 2:0.41032924 3:0.45030562 4:0.6405497 5:0.71098466 6:0.75519602
|
||||
-4 1:0.70811815 2:0.41032924 3:0.38732716 4:0.54017845 5:0.59142454 6:0.62173185
|
||||
-4 1:0.65812028 2:0.41032924 3:0.32785534 4:0.44278414 5:0.46803981 6:0.47218162
|
||||
-4 1:0.61340029 2:0.41032924 3:0.39943043 4:0.54621466 5:0.59971792 6:0.64499079
|
||||
4 1:0.56718004 2:0.41032924 3:0.34225148 4:0.45255833 5:0.47917361 6:0.49550478
|
||||
4 1:0.51323626 2:0.41032924 3:0.28723094 4:0.3630784 5:0.36155632 6:0.34265877
|
||||
4 1:0.46393127 2:0.41032924 3:0.36091767 4:0.47414782 5:0.50203091 6:0.5272931
|
||||
-4 1:0.41890265 2:0.41032924 3:0.30897915 4:0.3896105 5:0.39059442 6:0.38221519
|
||||
0.80399396574828 1:0.36224567 2:0.41032924 3:0.25797424 4:0.30816486 5:0.2829338 6:0.23861234
|
||||
-4 1:0.34347502 2:0.41032924 3:0.33118399 4:0.42270482 5:0.43137066 6:0.43794074
|
||||
4 1:0.303906 2:0.41032924 3:0.28516121 4:0.34844872 5:0.33277335 6:0.30318849
|
||||
4 1:1 3:0.98241836 4:0.99754447 5:0.99837843 6:0.99879687
|
||||
-4 1:0.99927781 3:0.97396968 4:0.99499278 5:0.99653001 6:0.99752536
|
||||
0.7133394046886395 1:0.99807987 3:0.96785094 4:0.99313412 5:0.99514902 6:0.99653825
|
||||
4 1:0.92550928 3:0.88463259 4:0.98984367 5:0.99445867 6:0.99599134
|
||||
-4 1:0.92248998 3:0.88269439 4:0.98579001 5:0.9917863 6:0.99411831
|
||||
4 1:0.91252277 3:0.87943561 4:0.97844374 5:0.98618184 6:0.99029255
|
||||
-4 1:0.85667795 3:0.86407181 4:0.96026885 5:0.98853248 6:0.99389802
|
||||
-4 1:0.84996215 3:0.86241965 4:0.95421974 5:0.98239426 6:0.99048125
|
||||
4 1:0.82797239 3:0.85970304 4:0.94347269 5:0.97198968 6:0.98376521
|
||||
4 1:0.78359349 3:0.85232352 4:0.9205106 5:0.9639259 6:0.98760506
|
||||
4 1:0.7740968 3:0.85087015 4:0.91651049 5:0.95906687 6:0.98343256
|
||||
-4 1:0.76412341 3:0.84902131 4:0.91055943 5:0.94944204 6:0.97481363
|
||||
-4 1:0.61337431 3:0.83940428 4:0.87369959 5:0.90465003 6:0.96092101
|
||||
4 1:0.59932186 3:0.83841839 4:0.8712363 5:0.90033732 6:0.95480352
|
||||
4 1:0.58537358 3:0.83696642 4:0.86758813 5:0.893872 6:0.94383497
|
||||
-4 1:0.44048862 3:0.83035835 4:0.84129164 5:0.84910545 6:0.8720666
|
||||
-4 1:0.42062928 3:0.82941095 4:0.83902061 5:0.84510353 6:0.87138257
|
||||
0.7345550921234197 1:0.4002542 3:0.82840514 4:0.8368136 5:0.84093631 6:0.8674834
|
||||
-4 1:0.3094628 3:0.82716541 4:0.83024299 5:0.82796719 6:0.86356706
|
||||
-4 1:0.29001316 3:0.82647757 4:0.82867904 5:0.8248098 6:0.86408434
|
||||
4 1:0.27710266 3:0.8257051 4:0.82728426 5:0.82235905 6:0.85969923
|
||||
4 1:0.90663913 2:0.14610739 3:0.43817477 4:0.82784627 5:0.90710157 6:0.94001176
|
||||
4 1:0.90426096 2:0.14610739 3:0.43326406 4:0.82123487 5:0.9021133 6:0.93612907
|
||||
-4 1:0.87301894 2:0.14610739 3:0.38374963 4:0.74222319 5:0.83336461 6:0.87727214
|
||||
4 1:0.86811426 2:0.14610739 3:0.40559067 4:0.79104253 5:0.88029881 6:0.91964051
|
||||
-4 1:0.83600801 2:0.14610739 3:0.36858627 4:0.72304979 5:0.81750507 6:0.86398873
|
||||
4 1:0.79303316 2:0.14610739 3:0.33543633 4:0.65617509 5:0.74453253 6:0.78951163
|
||||
-4 1:0.82226065 2:0.14610739 3:0.37726233 4:0.73857387 5:0.83579524 6:0.88322128
|
||||
4 1:0.74513395 2:0.14610739 3:0.31379389 4:0.60684271 5:0.68827333 6:0.72971662
|
||||
-4 1:0.75127417 2:0.14610739 3:0.35645593 4:0.69561666 5:0.79695173 6:0.84926516
|
||||
-4 1:0.66677794 2:0.14610739 3:0.29749496 4:0.56835508 5:0.64245656 6:0.67864295
|
||||
-4 1:0.62293836 2:0.14610739 3:0.32749068 4:0.63131327 5:0.72687613 6:0.78818537
|
||||
4 1:0.58735044 2:0.14610739 3:0.30296925 4:0.57601896 5:0.65321265 6:0.69799032
|
||||
-4 1:0.54225634 2:0.14610739 3:0.27770782 4:0.51923537 5:0.57477828 6:0.59501544
|
||||
-4 1:0.47989563 2:0.14610739 3:0.30820332 4:0.58503378 5:0.66456631 6:0.7174928
|
||||
4 1:0.4414077 2:0.14610739 3:0.28822665 4:0.53887566 5:0.59925188 6:0.62987117
|
||||
-4 1:0.39206975 2:0.14610739 3:0.29566289 4:0.55497136 5:0.62126765 6:0.66418112
|
||||
4 1:0.36544059 2:0.14610739 3:0.2785156 4:0.5155536 5:0.56455807 6:0.58211923
|
||||
-4 1:0.33205057 2:0.14610739 3:0.25833111 4:0.47074192 5:0.50054535 6:0.48956625
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user