Ludovic PLATON

Update new version

Showing 115 changed files with 932 additions and 218 deletions
......@@ -44,6 +44,7 @@ namespace import {
*/
class Fasta : public multithread::Buffer_producer<data::Data_basic*>{
std::string file;
unsigned int length_min;
protected:
void work_out(){
std::cout << "Start fasta reader : " << this->file << std::endl;
......@@ -59,7 +60,7 @@ namespace import {
int idx(1);
while(std::getline(input,line).good()){
if(line.empty() || line[0] == '>'){
if(!id.empty()){
if(!id.empty() && sequence.size() > this->length_min){
this->push(new entry::Sequence(id,sequence));
idx ++;
}
......@@ -80,7 +81,7 @@ namespace import {
}
}
}
if( !id.empty() ){
if(!id.empty() && sequence.size() > this->length_min){
this->push(new entry::Sequence(id,sequence));
}
std::cout << "End fasta reader" << std::endl;
......@@ -94,7 +95,7 @@ namespace import {
* @param buffer_size a int, the size of the internal buffer
*/
Fasta(multithread::Buffer<data::Data_basic*> *out,std::string file):
multithread::Buffer_producer<data::Data_basic*>(out),file(file){}
multithread::Buffer_producer<data::Data_basic*>(out),file(file),length_min(5){}
};
}
......
......@@ -4,8 +4,7 @@
#include <chrono>
const int THREAD_NB = 4;
const std::chrono::milliseconds THREAD_SLEEP(2);
const int BUFFER_SIZE = 500;
const int NB_ELT_BUF = 100;
const std::chrono::milliseconds THREAD_SLEEP(1);
const int BUFFER_SIZE = 100;
#endif // CONSTANT_H
......
......@@ -7,6 +7,7 @@
#include "feature.h"
#include "feature_callable.h"
#include "util.h"
namespace feature {
const std::vector<std::string> ORF::START{"AUG","ATG","TTG","UUG","CTG","CUG"};
......@@ -125,7 +126,17 @@ std::string ORF::to_dict(){
}
std::string ORF::to_csv(){
return this->name+","+std::to_string(this->length) + ","+ std::to_string(this->coverage) + "," + std::to_string(this->start_mean) + "," + std::to_string(this->start_std) + "," + std::to_string(this->end_mean) + "," + std::to_string(this->end_std);
return this->name+"," +
std::to_string(this->length) + "," +
std::to_string(this->coverage) + "," +
std::to_string(this->coverage_all_mean) + "," +
std::to_string(this->coverage_all_std) + "," +
std::to_string(this->frame_biases) + "," +
std::to_string(this->frequency) + "," +
std::to_string(this->start_mean) + "," +
std::to_string(this->start_std) + "," +
std::to_string(this->end_mean) + "," +
std::to_string(this->end_std);
}
std::string CodonBiases::to_dict(){
......@@ -149,7 +160,8 @@ std::string CodonBiases::to_csv(){
std::to_string(this->composition[0]) + ","+
std::to_string(this->composition[1]) + ","+
std::to_string(this->composition[2]) + ","+
std::to_string(this->composition[3]);
std::to_string(this->composition[3])+ ","+
std::to_string(this->gc_content);
}
// Constructor
......@@ -157,7 +169,7 @@ std::string CodonBiases::to_csv(){
// Kmer
Kmer::Kmer(entry::Sequence &s, const unsigned int &k):Feature(s.getName()),k(k){
std::string seq = s.getSeq();
for(unsigned int i(0); i < s.getLength() - this->k - 1; i++){
for(unsigned int i(0); i < s.getLength() - this->k + 1; i++){
std::string kmer = seq.substr(i,this->k);
std::transform(kmer.begin(),kmer.end(),kmer.begin(),::toupper);
std::replace(kmer.begin(),kmer.end(),'U','T');
......@@ -180,7 +192,7 @@ ORF::ORF(const entry::Sequence &s):Feature(s.getName()),length(0){
std::transform(seq.begin(),seq.end(),seq.begin(),toupper);
std::vector<unsigned int> start_codon;
std::vector<unsigned int> end_codon;
std::pair<unsigned int, unsigned int> orf_pair;
std::vector<std::tuple<unsigned int, unsigned int, unsigned int, unsigned int>> orfs;
//find position codon start and stop
for(unsigned int i(0); i < seq.length(); i++){
std::string tmp = seq.substr(i,3);
......@@ -200,9 +212,10 @@ ORF::ORF(const entry::Sequence &s):Feature(s.getName()),length(0){
for(auto const &end_pos: end_codon){
if(start_pos < end_pos){
unsigned int length = end_pos - start_pos;
unsigned int frame = start_pos % 3;
if((length%3 == 0)){
orfs.push_back(std::tuple<unsigned int, unsigned int, unsigned int, unsigned int>(frame,length,start_pos,end_pos));
if(length > this->length){
orf_pair = std::pair<unsigned int, unsigned int>(start_pos,end_pos);
this->length = length;
}
break;
......@@ -211,33 +224,38 @@ ORF::ORF(const entry::Sequence &s):Feature(s.getName()),length(0){
}
}
}
this->coverage = static_cast<float>(this->length) / s.getLength();
this->length = log10(this->length);
this->start_mean = 0;
for(auto const &start_pos: start_codon){
this->start_mean += start_pos;
}
this->start_mean /= start_codon.size();
this->start_std = 0;
for(auto const &start_pos: start_codon){
this->start_std += pow(start_pos - this->start_mean,2.0);
}
this->start_std = sqrt(this->start_mean)/start_codon.size() / s.getLength();
this->start_mean /= s.getLength();
this->end_mean = 0;
for(auto const &end_pos: end_codon){
this->end_mean += end_pos;
}
this->end_mean /= end_codon.size();
if(orfs.size() > 0){
int orf_per_frame[3] = {0,0,0};
for(auto const &orf: orfs){
this->coverage_all_mean += static_cast<float>(std::get<1>(orf))/s.getLength();
orf_per_frame[std::get<0>(orf)] += 1;
this->start_mean += std::get<2>(orf);
this->end_mean += std::get<3>(orf);
}
this->start_mean = this->start_mean / orfs.size() / s.getLength();
this->end_mean = this->end_mean / orfs.size() /s.getLength();
this->coverage_all_mean = this->coverage_all_mean / orfs.size();
this->frequency = static_cast<float>(orfs.size())/start_codon.size();
auto mm = std::minmax_element(std::begin(orf_per_frame),std::end(orf_per_frame));
this->frame_biases = 1.0 - static_cast<float>(*mm.first)/
static_cast<float>(*mm.second);
for(auto const &orf: orfs){
this->coverage_all_std += pow(static_cast<float>(std::get<1>(orf))/s.getLength() - this->coverage_all_mean,2.0);
this->start_std += pow(static_cast<float>(std::get<2>(orf))/s.getLength() - this->start_mean,2.0);
this->end_std += pow(static_cast<float>(std::get<3>(orf))/s.getLength() - this->end_mean,2.0);
}
this->coverage_all_std =sqrt(this->coverage_all_std / orfs.size());
this->start_std = sqrt(this->start_std / orfs.size());
this->end_std = sqrt(this->end_std / orfs.size());
this->end_std = 0;
for(auto const &end_pos: end_codon){
this->end_std += pow(end_pos - this->end_mean,2.0);
this->coverage = static_cast<float>(this->length) / s.getLength();
//this->length = exp(-static_cast<float>(this->length)/200.0);
this->length = log10(static_cast<float>(this->length));
}
this->end_std = sqrt(this->end_mean)/end_codon.size() / s.getLength();
this->end_mean /= s.getLength();
}
// Codon position
......@@ -257,6 +275,7 @@ CodonBiases::CodonBiases(const entry::Sequence &seq):Feature(seq.getName()){
case 'c':
mat[3+(i%3)] += 1;
this->composition[1] += 1;
this->gc_content += 1;
break;
case 'T':
case 't':
......@@ -269,16 +288,18 @@ CodonBiases::CodonBiases(const entry::Sequence &seq):Feature(seq.getName()){
case 'g':
mat[9+(i%3)] += 1;
this->composition[3] += 1;
this->gc_content += 1;
break;
}
}
for(int i(0); i < 4; i++){
std::valarray<int> tmp(mat[std::slice(i*3,3,1)]);
auto mm = std::minmax_element(begin(tmp),end(tmp));
auto mm = std::minmax_element(std::begin(tmp),std::end(tmp));
this->position[i] = static_cast<float>(*mm.first)/
(static_cast<float>(*mm.second) + 1.0);
this->composition[i] /= seq.getLength();
}
this->gc_content /= seq.getLength();
}
// Dist
......
......@@ -98,12 +98,17 @@ protected:
static const std::vector<std::string> END;
static bool in_start(const std::string &c);
static bool in_end(const std::string &c);
unsigned int length;
float coverage;
float start_mean;
float start_std;
float end_mean;
float end_std;
float length=0;
float coverage=0;
float coverage_all_mean=0;
float coverage_all_std=0;
float frame_biases=0;
float frequency=0;
float start_mean=0;
float start_std=0;
float end_mean=0;
float end_std=0;
/*
float start_center, start_std;
......@@ -144,6 +149,7 @@ public:
class CodonBiases: public feature::Feature{
protected:
float position[4] = {0,0,0,0};
float gc_content = 0;
float composition[4] = {0,0,0,0};
void init(const Data_basic *db);
public:
......
......@@ -55,7 +55,17 @@ int main(int argc, char* argv[])
feature::Feature_callable *kmer = static_cast<feature::Feature_callable*>(feature::Kmer::get_callable(3));
tmp_ds = new data::Data_Store_Map(output+"KMER3.txt");
ds["KMER3"] = tmp_ds;
create_feature_maker(kmer,feature::Kmer::TYPE+std::to_string(6),tmp_ds,&re);
create_feature_maker(kmer,feature::Kmer::TYPE+std::to_string(3),tmp_ds,&re);
kmer = static_cast<feature::Feature_callable*>(feature::Kmer::get_callable(4));
tmp_ds = new data::Data_Store_Map(output+"KMER4.txt");
ds["KMER4"] = tmp_ds;
create_feature_maker(kmer,feature::Kmer::TYPE+std::to_string(4),tmp_ds,&re);
kmer = static_cast<feature::Feature_callable*>(feature::Kmer::get_callable(5));
tmp_ds = new data::Data_Store_Map(output+"KMER5.txt");
ds["KMER5"] = tmp_ds;
create_feature_maker(kmer,feature::Kmer::TYPE+std::to_string(5),tmp_ds,&re);
// kmer = static_cast<feature::Feature_callable*>(feature::Kmer::get_callable(6));
// tmp_ds = new data::Data_Store_Map(output+"KMER6.txt");
......
......@@ -28,4 +28,15 @@ void tokenize(const std::string& str, ContainerT& tokens,
}
}
template <class T>
std::pair<T,T> minmax(T tab[],unsigned int size){
T min = tab[0];
T max = tab[0];
for(unsigned int i=0; i < size; i++){
min = (min > tab[i]) ? tab[i] : min;
max = (max < tab[i]) ? tab[i] : max;
}
return std::pair<T,T>(min,max);
}
#endif // UTIL_H
......
No preview for this file type
1.984570588223544485e+00 -1.952737297703042829e+00
1.774149608263766220e+00 -2.077425117764972740e+00
-1.796766294253583085e-01 -4.313306443543813914e-03
1.428676610906795208e+00 -1.731478714424572685e+00
1.433729758866031379e+00 -1.420659661802653462e+00
2.181104524756568297e-01 -1.468106835733535565e-01
-1.738711435514443293e+00 1.493139282756335673e+00
-1.784778007759598939e+00 1.839502577357342128e+00
-1.087720778747320871e+00 9.695425106035429064e-01
-7.823954466377507355e-01 1.758610312279721644e+00
-5.312403122381126330e-01 4.184234436232182053e-01
8.399327166604406703e-01 -7.000761187943018715e-01
-1.939753060347286784e+00 -5.791090073473343924e-01
-9.625247053542576037e-01 1.631037196907302089e+00
-1.458039677258911704e+00 -4.890695672382004422e-01
1.121869058141873543e+00 4.975141466460748091e-02
-5.918849912178264505e-01 7.924218704878657205e-01
3.665191049019017600e-01 -3.656267920978125696e-01
7.263957366062160359e-01 -4.689241974619325348e-01
-8.605489791327931848e-02 1.637968286995129974e+00
1.786177873971172669e+00 1.273054769035741662e+00
-5.955378946465741258e-02 -4.009637948098050964e-01
-5.417802872761269262e-01 1.184550824808189157e-01
-9.037794695752866536e-01 5.676716479939497573e-01
1.297731417627865369e-01 1.555654615706899335e+00
-1.593041987349425870e-01 -1.605457997600512332e-01
-7.230323524291395465e-01 -1.019889843268294793e+00
-8.299877483928708166e-01 1.856213755539437571e+00
1.476953518783209240e+00 -1.132759455664710702e+00
-5.632476301547526543e-01 1.180227950828089956e+00
-3.658429001854305862e-01 2.799832378344149220e-01
-9.459833419736710658e-01 9.965849028804589782e-01
-1.284446720820988652e+00 1.371474264751034511e+00
-5.328345645611551329e-02 -1.522161125651892155e-01
-1.029069222690339069e+00 -1.209084452288122502e-01
-1.146025504051904287e+00 1.320862723716864362e-01
1.050217570370829689e-01 4.945938493445145578e-02
3.283447026581985395e-01 -9.343400423195440396e-01
1.439874899128376295e+00 -1.094266760190627741e+00
-2.101108507302599238e-01 4.369382169680571248e-01
1.368803982408707709e+00 1.072813569505477321e-01
2.144028850151701304e-01 6.472327452403894288e-01
7.323932189006194804e-01 -5.328193177645460521e-01
-1.824247784120163196e-01 7.207286375760252328e-01
3.219891756785852044e-01 1.148431544461899101e+00
-1.701638675611786555e-01 -3.866467322158495534e-01
1.464629796042067778e+00 2.307405632527817219e-01
-1.974564658181146570e-01 -4.727493317676786933e-01
-8.839203400144520772e-01 6.979343961267759910e-01
-1.219208396744529965e+00 8.787887041436157065e-02
1.027773001257310082e+00 -7.451059276568856582e-01
-3.234125646683135291e-01 2.566450206351374441e-01
-2.785154253528648316e-01 -4.755668006676349591e-01
-4.361032949790705771e-01 5.379537913786544556e-02
9.303046318602040676e-01 7.727901172874050983e-01
-1.568507639940734721e+00 1.457463726942855198e+00
-1.443546987023842432e+00 -4.131995031821161790e-01
-1.211263712573193319e+00 -6.725585891102411340e-01
1.594807787255637654e+00 6.747743889523480365e-02
2.522104882079150706e-02 -3.200889117443093679e-01
-7.183980726146065310e-01 5.763073226570312180e-01
4.358015857116513958e-01 -2.383202097372515843e-02
4.841552989658456374e-01 -2.583100695584520379e-01
-1.330172543849520217e+00 2.786403624162502313e-01
-5.854313140523306203e-01 -1.331861051857751756e-02
5.780715334041411912e-01 1.575162622969237536e-01
1.615858089291672073e+00 -1.175555448147367121e+00
7.518759715722391768e-01 -9.525781747488849538e-01
1.987033703942173712e-01 -6.244020424372809241e-01
-3.495934990102382289e-01 -1.488038503797260548e+00
-1.144022210111367732e+00 -3.671571087370187891e-01
-6.111290697571083452e-01 -4.052426645683254725e-01
-3.330277501293821829e-01 2.112617147402816364e+00
-1.170739240599080050e-01 -1.631946996561390861e+00
2.409586582772409863e-02 -4.624220156729751396e-01
6.300610486055921999e-01 -8.173982372143302477e-01
3.508377726946246278e-01 -9.232562635296207576e-01
-2.930180999429042310e-01 -6.787852518484175368e-01
4.547365451393504676e-01 -2.169988348599609096e-01
6.576232089231835998e-01 2.696569675412140432e-01
9.196468220386458947e-01 1.313101581823365727e-01
6.158196245766763832e-01 1.335172002496546551e+00
-4.951141954062630579e-01 -5.796761303883674055e-01
4.360085465130348337e-01 -2.313511827685591771e-01
1.734366059800318771e+00 -1.251991503468955713e+00
2.162322959357212415e+00 -5.306526839948594310e-01
1.463853063993172166e+00 -8.385912411756830664e-01
5.665810945566429613e-01 -8.419541758682795862e-01
9.244304340452071944e-01 4.633799416312470720e-01
-9.033057672652682335e-01 1.908439533844991098e+00
-2.394176145024577429e-01 7.737883105951671725e-01
2.811796526109678895e-01 5.176851935818477246e-01
8.407491330676201136e-01 -8.168655753776591366e-01
-1.891029106211150890e-01 -1.689729540336910585e-01
7.940361077729523043e-01 -1.776513736186512649e+00
-1.600829674234509892e-01 -8.826725557488113161e-01
2.329682404637005710e+00 4.653797701993092617e-01
1.247142903518822399e+00 -4.192690225604721599e-01
-3.155677090413311903e-01 6.511568862673166036e-01
-1.152548159727133203e+00 2.630048719797458689e-01
6.135095759628153012e-01 2.688164781112571955e-01
-2.146574504795265015e-01 -2.131517085859129246e-01
-1.097728389482812261e+00 -5.946115568114588301e-01
-1.198455344380663590e+00 -1.009031008242660121e+00
6.124173240864786427e-01 5.417588734889525748e-01
-7.878391259018608928e-01 7.926015845418952210e-01
4.210519181277341261e-01 5.753198228023946870e-01
6.665650385078970563e-01 1.380696884241979339e+00
5.595525305993325205e-01 -1.815220639562298066e+00
......
1.600989655594713124e-01
3.240191576791741357e-02
-1.363067688748602402e+00
-3.684389677822703657e-01
......
nb_label 2
loss_type cross_entropy
......
m 3
n 3
unit_width 4166
m 10
n 10
unit_width 1363
......
This diff could not be displayed because it is too large.
Specificity 0.9844095532950022
F1 0.9611334002006018
MCC 0.944033825472
FN 169.0
TP 3833.0
Precision 0.9645193759436336
Accuracy 0.9762379273340488
TN 8903.0
Sensitivity 0.9577711144427786
FP 141.0
1.991131481787595581e+00 -1.669413583310414229e+00
1.575212374269813420e+00 -2.115257298974933420e+00
-3.526941660809183587e-01 9.512226899943738712e-01
-2.001329314857394071e+00 1.269124437760136503e+00
1.335419566890904131e+00 -1.254056421393686005e+00
1.202077719777308262e+00 -1.281780351720747113e+00
6.748591395881198274e-01 -4.901986111976451288e-01
-1.349090723232583500e+00 1.724841614254009281e+00
1.505849894973256164e+00 -1.072836276619357543e+00
-8.464715763421062356e-01 2.431673278978379038e-01
-1.304016640317460896e+00 1.265850002724441925e+00
1.928878802533359638e+00 1.170402546889686812e+00
5.537821169755098305e-01 5.866353929157733793e-01
1.782580800636592189e+00 -5.348892736713642959e-01
-4.460038655023391696e-01 9.383273621820377164e-01
6.609783602990683127e-01 -1.022918511369260486e+00
1.644779158311946432e+00 -7.198804588677677474e-01
1.579666074732682279e+00 -9.030301173728371156e-01
2.348463041477875934e-01 -1.101290521502576558e+00
-1.532877450241514616e-01 1.376105074128181893e-01
7.227613729815147714e-01 -2.216609943469524668e-01
-7.661022715129804928e-01 -1.762403057888187297e+00
-4.727705369493652166e-01 -6.037413430935382186e-01
1.094318573066778377e+00 4.100299623126764104e-01
3.797054114990522922e-01 -7.737508392767614707e-01
1.532894316493120135e+00 -2.163859343556218395e-01
8.265758688685267419e-01 -7.616325177820620906e-01
3.221604696700463011e-01 -4.850693409562757408e-01
5.705658683983259039e-01 1.876902798042076270e+00
3.798528902623476977e-01 -1.522941937368518683e+00
2.917007016924511587e-01 -3.419981695401692612e-01
1.191872136662141424e+00 -1.096063543327804757e+00
-1.060950829225394410e+00 -3.459134452320307695e-01
-1.304289172412528730e+00 -7.161218609645834121e-01
-1.613779533060107629e-01 1.915708705731678785e-01
4.687239748604729028e-01 1.217297455427548136e-01
3.074670635432850130e-01 -1.697067070913338138e-01
-1.480137547203887183e-01 -1.424862678370622804e-01
1.174585077510305053e+00 5.896061068556147644e-01
-3.212136126166894590e-01 -7.642321826041336141e-01
-7.983070920522864489e-01 -6.215104694359349091e-01
8.014582481301750772e-01 -9.708390201831570421e-01
1.973707343290694416e+00 3.192918062554631065e-01
-1.138550300567124918e+00 -2.668030335599390068e-01
-5.746867329147635761e-01 2.411992240815672428e-01
4.201381372400943004e-01 2.366479836908200532e-02
7.553219617468116820e-02 -1.303625805765495693e+00
-1.130144078907531435e+00 -1.480788796876731261e+00
-7.546628362260765499e-01 -1.406688466009972771e+00
6.360860255741848102e-01 4.370942534575903982e-01
2.124910265791345676e+00 -4.125921142219828308e-01
1.686344892651164606e+00 -1.286714889188687483e+00
1.737112381034971662e-02 3.168361514279495195e-01
7.929332425692471320e-01 6.577985443097781326e-01
9.186425366067857423e-01 -3.740763693374221099e-01
-3.461560762166105976e-01 3.096603000111389781e-01
-9.108597342159474586e-01 8.160458115212055885e-01
2.694630016227171285e-02 1.077475154371402066e+00
-5.627766416544324191e-01 7.883763200834461582e-01
-1.080283800046040188e+00 1.017244430579151038e+00
3.119092425924459011e-01 -6.074142687014797426e-01
-1.889460333325193586e+00 6.900010883498618464e-01
-6.005874875809781299e-01 1.081874488704636511e-01
3.210111178994128345e-01 -4.606021802773069829e-01
-1.200216955722405165e+00 4.193902740778991944e-01
-1.945060578831100118e-01 7.901767470098386426e-01
-1.418891790165518196e-01 6.658295013784296112e-02
1.176733018774530182e+00 -8.207419404283842201e-01
9.593775842438959089e-02 -7.121531459776946349e-01
-1.087654532152345865e+00 -1.129280882257196916e+00
6.699162773488259726e-01 -1.952798989124166384e+00
1.630454144420317719e-01 -6.307834829015805667e-03
-6.224886337763525512e-01 -9.911594412997127845e-01
6.440877119262550243e-01 -1.175867367088964777e+00
-1.144271624271726351e+00 6.574715288536802094e-01
5.113359284772761582e-01 6.689094401598331130e-01
-1.806112174316096552e-01 -8.823664246509735354e-02
-1.564678096800782292e-01 5.608334978418353378e-01
-1.730129698073152034e-01 -5.759584834814177601e-01
6.015766666794053474e-01 -5.203640093755722562e-01
1.513184346362571819e+00 5.522540578984996840e-01
2.467871021637510764e-01 1.260507114115472400e-02
-2.126178218909108991e-02 1.842937545676939681e+00
-9.517156079699751192e-01 1.221197177633619013e+00
-4.123680017766778172e-01 2.918629347813724850e-01
-8.726574243070629455e-01 6.663451112041096636e-01
-6.501087013828668049e-01 8.711794432699773161e-01
-1.396948724557759425e+00 9.855873193153693590e-01
4.933939291048851650e-01 -4.455571696973646967e-01
1.618935161608975992e+00 2.001154846032388579e-01
1.958133122307303617e-02 7.535668284704187814e-01
-1.442462361850047392e+00 7.688939976938201637e-01
-1.209218343137487439e+00 5.517022519798350233e-01
-7.336741390453244138e-01 1.074444167373892922e+00
-1.507765556642475691e+00 2.716398282791015473e-01
4.473052461261157187e-01 1.000338821945409684e+00
1.959174940182551172e-01 1.935964679512782172e-01
1.005270551349941810e+00 3.767467949594108245e-01
-8.633305199878679170e-01 -4.895270056539319792e-01
-4.433625624700650580e-01 1.827641484517810722e-01
-5.009350156405772969e-01 2.008651502960773910e-02
-9.858981688765274809e-01 1.651343498746389971e+00
-2.618751719876572515e-01 -5.873423700510792544e-01
4.153176438346196653e-01 1.798299849474031542e-01
8.742709622883643172e-01 -7.049288043221917377e-01
-5.538876394817845439e-01 1.577342694666931333e+00
-1.608619232292676005e+00 -6.584630925002878943e-01
4.873280016149015292e-01 6.694727112180518525e-01
7.987867793041688591e-01 -6.433324385349901142e-01
......
2.249257451916716055e-01
5.547206499749741671e-01
-8.626537977345083430e-01
-1.504836695637897237e-01
......
nb_label 2
loss_type cross_entropy
......
m 3
n 3
unit_width 4166
m 10
n 10
unit_width 1363
......
This diff could not be displayed because it is too large.
Sensitivity 0.8494791666666667
MCC 0.831362314807
F1 0.8936986301369862
TP 1631.0
TN 2765.0
FP 99.0
Specificity 0.9654329608938548
FN 289.0
Accuracy 0.9188963210702341
Precision 0.9427745664739884
9.925017139467363636e-01 -4.235737547421493665e-01
-1.006265400325674575e+00 5.573599899679235747e-01
-8.102051349888936826e-01 1.440104334803385955e+00
3.219518946540677051e-01 -4.860861211329681741e-01
-4.877325169237007318e-01 1.294549669665212843e-01
-2.212858133154817164e+00 1.332302489298551551e+00
1.535940370576427627e+00 -2.271866323076402239e+00
1.271572358414998272e+00 -2.044620436634697391e+00
-2.168349432030507895e+00 1.961392694844583895e+00
-2.683721592063894046e-01 3.828004245398958783e-01
6.523362569571150571e-01 -7.689430490393891482e-01
3.908590491385495191e-01 -1.116846767234372512e-01
-1.494156009611670999e-01 7.101951390038423462e-01
-4.812004194414333802e-01 4.976901150277630026e-01
-1.330637685907388290e+00 8.990615826898396001e-01
-8.296082105949738050e-01 1.018634441808081714e+00
-4.967395976905277233e-01 2.182958341506708422e+00
-1.411241104525762902e+00 3.811236025191283572e-01
-8.291582286855284645e-01 1.283442462435253173e+00
4.060391640998922136e-01 -1.164757843634284029e+00
1.763039782705732028e+00 -1.626578632456545659e+00
1.037044365287830144e-01 1.719329976359383005e+00
1.064356721029263042e+00 -3.367767755655859396e-01
-3.809492043908562220e-01 5.224191328487926000e-01
-5.566491967795442752e-01 -7.539504424573273411e-02
-4.522670573326884047e-01 -7.889473094055735602e-01
-1.733110020915963556e+00 1.391332745738314447e+00
1.245259572467254383e+00 8.950882245099674173e-02
7.302145169941073322e-01 3.167638392596066055e-01
1.531198787978541309e-01 7.858040305631464051e-02
5.656635348157438292e-01 9.057413444588763296e-01
9.754356745238269566e-01 -1.065042267671529430e+00
-9.568685925226413369e-01 -9.563190472748583915e-01
-5.999365782695761373e-01 6.834672602848724798e-01
8.988505506275002999e-01 -5.121481011683621798e-01
-3.420364810204493677e-01 -1.534170236612206473e-01
3.056565539854596766e-02 -5.401074973720905170e-01
-1.315988646044430888e-01 -4.971996460916894983e-02
-7.392005892275552714e-01 4.793323706141737750e-01
-2.360566886690944055e-01 -2.760757226572355116e-01
3.469061733075388121e-01 6.999547559427209409e-01
2.448785041257961134e-02 -1.356499778042216942e-01
7.484743374827265150e-01 -1.197210195873848582e+00
-1.237578152858657354e+00 6.822436120181003538e-01
-2.850975904384177584e-01 6.726628192542045692e-01
-1.190558075334352095e+00 4.106150851207432395e-01
-9.471079371507097333e-01 1.246993473643753569e+00
-1.103908587641320382e+00 -2.164891378133937394e-01
-4.206494300515631890e-01 1.904865799104431823e-01
-1.523971280668862810e-02 -3.088043120971460942e-01
-9.711711011398741489e-01 -5.382862254400161417e-01
-4.021030332961247344e-01 -5.481023504198279800e-02
6.944679278422930535e-01 7.938387188862263688e-01
9.029845357350522184e-01 -3.462580743975574027e-01
1.372657432073110251e-01 9.352883732701050556e-01
1.465519444908931490e+00 4.985099002516029665e-01
8.351117009981063877e-01 2.035420461471218190e-01
-1.792082817148602236e-01 1.883271073758504999e+00
-2.104105417597895489e+00 4.583613153104413862e-01
1.054966215051117207e+00 -1.479806482190066053e+00
3.338861084433425996e-01 2.275136407426016361e-01
6.094855690910611079e-01 4.946775857477664351e-01
1.677925180555277285e+00 3.198743213663293172e-01
2.034215775103971335e+00 -1.650617849996511843e-01
-3.312120965294861885e-01 8.077057288569045512e-04
-4.605765017084789137e-01 -4.059415386600589426e-01
-9.414356520915684312e-01 8.844853095507383689e-02
-6.202704347982421901e-02 -9.034226881812666976e-01
-1.594854987112061639e+00 1.308008140593050150e+00
9.970327117221778890e-01 2.496808758971204648e-02
-2.046682727877172925e-01 -1.440562949528109982e-01
1.139553419235802778e+00 -1.263175716176431651e+00
1.805418766654081353e-01 -9.337484713638035672e-01
-2.705082346423714479e-01 -3.171218034943305009e-01
3.541755588720060799e-01 -1.513116229003200752e+00
9.808298451857516698e-01 -1.131715492363949069e-02
1.765461172359918063e+00 7.563016304167168302e-01
-6.553498095238402543e-01 -4.752833857269558870e-01
1.339246918713030143e-01 -1.160408288791796361e+00
-3.171984602195829228e-01 -1.580297901381157333e+00
-6.992089937136132249e-01 1.605323595259463276e-01
4.274433190399244964e-01 -5.572238456523609385e-01
1.162607757954445153e+00 2.059522933534461586e+00
-1.130490268631944711e-01 -3.874266884904398883e-02
-8.941001967478917623e-01 -2.026965204553904387e-01
-1.540507236290115378e-01 7.595505281359654637e-01
1.662052344300469775e+00 2.544249304542489210e+00
-3.927295479411754831e-02 6.649035494523357348e-04
-3.760996643658000294e-02 -6.444848838649314127e-01
-1.107349362338788890e+00 -8.711432849589256788e-01
-1.284035789791998949e+00 -1.929420332297850371e-01
-1.246626943887675643e-01 -6.355756890219566024e-01
-1.777251937231001319e-02 -2.040644037313351866e+00
4.557442024297084227e-02 2.896296055166762140e-01
7.130200835274130844e-01 -7.646178885941244674e-02
5.921941668938440761e-02 -8.159842845047654558e-01
-6.036421705068987231e-01 9.665322117661370172e-01
9.687643486984951480e-01 3.263175834360613203e-01
6.226795975012862361e-02 -4.628702883097922660e-01
-9.528268054798962883e-01 2.382124834452663611e-02
4.114477117964686070e-01 3.475879705798927133e-01
4.900597051166077356e-01 -9.012172083867029393e-01
-2.873225643652452366e+00 -1.107905553701905799e+00
1.279740078662674918e+00 7.726304895485317514e-01
2.060979445149804246e-01 -1.754300223354979593e+00
-5.355385749389711680e-01 5.114872542426136537e-01
3.300455206230233918e-01 -1.291903682693599897e+00
-4.836902884417429438e-01 1.154069691242510354e+00
1.931613123516934261e-01 -3.300488658765982075e-01
......
3.488341025364146142e-01
-2.610571990355459171e-01
-1.102162135254800113e+00
1.175950923592500447e-01
......
m 3
n 3
unit_width 4166
m 10
n 10
unit_width 1363
......
This diff could not be displayed because it is too large.
MCC 0.978693695598
Specificity 0.9941234084231146
F1 0.9830827067669173
TP 523.0
FN 6.0
TN 2030.0
Sensitivity 0.9886578449905482
Accuracy 0.9929988331388565
Precision 0.9775700934579439
FP 12.0
-1.789264948550795653e+00 1.785919467086960477e+00
-1.854983766116266919e+00 1.840690911064560620e+00
3.467389625977024270e-01 -3.428515659817765737e-01
-1.752278275370835248e+00 1.742824882928021513e+00
5.280293101764091945e-01 -5.318123183359586559e-01
2.258033687372943188e+00 -2.243178239910379901e+00
3.181126345903775299e-01 -3.153140073146011857e-01
2.193615380360437239e+00 -2.193757865031672694e+00
3.008960168670676253e-04 8.466010389446429474e-03
-2.782997327766801310e-01 -3.666426815967308572e-01
-1.795279788783247232e-01 -1.101069794760613840e+00
-5.595930027924276434e-02 6.966198213712623388e-04
1.757521627843645073e-01 6.553413503132882179e-01
7.738343027003390107e-02 1.126219542928335482e+00
-7.266870444869558687e-01 8.892828964899116007e-02
-7.250044709551672906e-01 4.641831794356748864e-01
-1.135233701544373419e+00 5.614892969624192265e-01
-2.373895214886353744e-01 2.006285629417602134e+00
-4.563596475152097431e-01 6.643551247406307425e-01
9.435608159122149674e-01 1.990551481620950747e-01
5.310695734890494291e-02 4.728489837585163058e-01
4.796086965415696235e-01 -5.141941764889013111e-01
3.768382132543002805e-01 -8.854054169997744861e-01
1.504792168118417872e-01 3.830742634620519227e-01
-6.507806896930294904e-01 -1.240017401877419490e+00
-8.707317792795498113e-01 -1.382387637504071787e+00
1.055814596385254545e+00 9.541121650566714019e-01
3.097170807263284753e-01 8.991849584326423450e-01
-8.988336864282807648e-01 1.751520671912737692e-01
-4.226096136116034609e-03 8.808559045404777965e-01
4.078986300444896740e-01 -4.081431573462425688e-01
1.793268470262045500e-01 -3.052903920868348386e-01
4.537756217334200093e-01 3.829974400865828188e-01
1.308409509983780028e+00 -6.529283766712226100e-01
-2.231783505714582394e-01 -1.221464289221019794e-01
-1.717895806856052587e+00 -1.945293694144742402e-01
1.432608007297186070e+00 3.084411802778725398e-01
-8.544357801351577519e-01 1.288612935035714280e+00
-8.070216018965474802e-01 -1.986970753196589945e-01
1.194897156244384417e+00 -1.002539897157499249e+00
1.442604225549219299e+00 -7.484161393800096151e-01
-9.442605597145468099e-01 -2.422799429599928889e-01
-1.428483495840590312e+00 -3.961402818673742665e-01
8.672594645708781025e-01 6.031214649270951744e-01
-1.607691660002670497e+00 3.566054283014760129e-01
9.125453577491627818e-03 -9.996335266173808631e-02
-6.714719287958625937e-01 -5.970909874479535251e-01
1.004983179036125884e+00 -1.131292634985206075e-01
-1.116472187401500449e+00 9.443413822949118241e-01
-7.784986005136994291e-02 -8.503845269450900357e-01
3.132290760423198095e-01 -5.623198762735934775e-01
1.195579801885553906e+00 5.738609473565583485e-01
-1.171006263463199026e+00 -9.473355396353202451e-01
-1.045942062786064664e-01 -5.513761178837308652e-01
-1.155147822619642772e+00 -2.867358851988683344e-01
1.070368380582568113e+00 1.325970075311030838e+00
-9.715572462671733245e-01 4.913780164338307777e-01
-4.426880177528940141e-01 1.722058518653361903e+00
-1.039029615530636941e-01 6.652497796777602224e-01
-2.200878295185910161e-01 -1.287985291692992806e+00
9.066065521498581914e-01 3.162351729585564653e-01
-1.874626867469035174e+00 3.167723751999502180e-01
6.217334138437825564e-01 1.262726749361757328e+00
-5.717568521169409390e-01 -6.527352156256813753e-01
-3.665108047782972278e-01 1.202115881512003881e+00
6.366553617442168855e-01 -3.261790152863246472e-01
1.376737010956551988e+00 -4.085160574903406450e-01
-4.485895310366934119e-01 -4.355280348834927318e-01
-1.262524142849050346e+00 1.087403564566330916e+00
-6.929860199250207353e-01 -8.577877224271257539e-01
4.221061208936841558e-01 -4.307730744457102245e-01
3.294296719013216634e-01 -8.111513741222111662e-01
-8.681321310768571609e-01 1.118599473654553256e+00
1.015304470393886493e+00 -5.614299430009594971e-02
3.481191373829274627e-02 1.136887948084711830e+00
7.354097842993194689e-01 1.513312709501728248e+00
-6.985433787629501401e-01 -8.747517367868715144e-02
8.013466310474098853e-01 3.417109422021930576e-01
-4.946873211731838138e-01 -1.146861003401043133e+00
-5.113958137970261442e-01 -9.214469289486091341e-01
5.440958592686081507e-01 2.262763954128711674e+00
1.459056943402482931e+00 1.737407603970620162e-01
-8.159006176882334094e-01 -2.168421739832041839e-01
1.001190265880035346e+00 -2.131687122410543256e-01
-1.112575713113745035e+00 -1.475393845831749484e+00
-4.699636422510352074e-01 -7.014547932722893508e-02
4.861936368476479919e-01 4.561991560731704087e-02
-2.047061935857946435e-01 3.328449803135660745e-01
-5.086890917003110690e-01 -1.212032416781978261e+00
1.288767777952072091e+00 -7.572543609180493185e-01
9.702022400833473226e-01 -1.090369762370796858e+00
-2.056180000309777711e-02 3.387662701625588357e-01
-4.164300104269815228e-01 6.387976462526886445e-01
-1.141670791698934651e-01 -5.649238352763649162e-01
1.968697777075961275e+00 2.024615148504315953e-01
1.648411465079682392e+00 -7.883998462762283888e-01
-8.729521707117254836e-01 -6.975608435977580513e-01
-2.141207413315209529e-01 1.467537089565355668e+00
-1.167956334989559863e+00 5.902871410620550430e-01
2.156671427232920712e-01 -7.109048603315313297e-01
1.503415042705917637e+00 -1.330468343736427084e+00
1.088842137990710723e+00 -2.104376333063993521e+00
3.381362326107392735e-02 6.768438754637438048e-01
-9.277175134599949802e-01 -1.361518126059652278e+00
2.085687493486640953e+00 -6.600063749786969636e-01
-7.958582252156062298e-01 9.029631544023095091e-02
2.903505999485510025e-01 1.193604730272024961e+00
-5.063633853576871013e-01 -1.340085494318690174e+00
-3.082058348782654722e-01 -4.761790462853653372e-01
......
1.813991934493389968e-01
4.318772347011389234e-01
3.625049492617088420e-01
1.066936572262705107e+00
......
nb_label 2
loss_type cross_entropy
......
m 3
n 3
unit_width 4166
m 10
n 10
unit_width 1363
......
This diff could not be displayed because it is too large.
Sensitivity 0.981283861434904
Precision 0.989569536423841
MCC 0.977393223778
FP 126.0
TP 11954.0
Specificity 0.9942654287274714
FN 228.0
Accuracy 0.9896351818235053
TN 21846.0
F1 0.9854092820047812
1.206086754954771356e+00 -1.268582618308017107e+00
1.381618091459506648e+00 -1.418291406559953449e+00
1.385573595040262340e+00 -1.433908040540037288e+00
-1.868474933583930575e+00 1.945987172443173874e+00
9.712072400775115799e-01 -8.949719283709047790e-01
1.076559973643419044e+00 -1.049784057357147526e+00
-2.017695560515868625e+00 1.900788123210905178e+00
9.256484226230613510e-01 -8.360808065482019380e-01
8.254822594809750891e-01 -7.789788328044683352e-01
-2.732193665845988884e-01 1.715312845175744005e+00
-6.881805640496843068e-01 -4.059489089883758228e-02
5.917488998342667061e-01 -6.474225136049555074e-01
9.404687965300187469e-02 -1.160327824204113956e+00
3.431800513336384639e-02 8.599637413394772834e-01
-1.467390459185716534e+00 -5.572346746877298029e-01
-5.888913996607040291e-01 -6.381267099896902328e-01
-9.205991270977252894e-01 6.449896959598967472e-01
1.550162542173238178e-01 7.487795459279339427e-01
3.895579488543673419e-01 1.297523568345747780e+00
-5.049772146826923824e-02 1.232214827301499227e+00
-7.163830094869448883e-01 8.229067831049357018e-01
2.817394780157386151e-03 -1.433527704357310695e+00
9.606503789635022494e-01 2.400488582964982243e+00
-3.135714646628778857e-01 -3.255438765594792505e-01
-3.879306474248258030e-01 -5.140096956091562141e-01
-7.975608217556068302e-01 -9.248909697572542665e-01
1.040623616717163857e+00 1.205203170449299505e-01
-3.450771915719992866e-01 9.616991880454762720e-01
-6.164113910809632113e-01 2.914695796929051008e-01
5.643859794842197575e-01 1.214706645452142408e-01
1.052744650693935080e+00 9.670574912353273600e-01
-1.121690175398795564e+00 1.045690665307110051e-01
-1.812568076947076445e+00 -1.750332619926963318e+00
-1.446094323707820095e+00 -4.353025793210417715e-01
-5.962088308304176465e-01 5.574501175751697124e-01
4.962635041089805132e-01 7.718202638803549620e-01
-6.544378733331002174e-01 9.857820331418919446e-01
3.921718922976098753e-02 1.681320198700075430e+00
-1.875928022341669221e+00 1.564594958731415630e+00
-6.443239259116514406e-01 -2.096330040871578759e-01
8.288018026771959423e-01 -3.946362974361687925e-01
3.347454815708491571e-01 -2.772607598870157064e-01
2.595314717035251614e-02 7.505780561179595800e-01
8.854009613442613558e-02 -9.680597798411397226e-02
-7.576433718832666919e-01 -9.001243660809815639e-02
1.533973773630063417e-02 -2.703481634981470122e-02
-8.088200520734595278e-01 1.069251898522921795e+00
-9.346103287221747546e-01 9.188448220726691540e-01
8.524366686260571591e-01 -4.114043474195606120e-01
-1.420171500145096244e-01 1.524688395431087251e+00
1.019180578659642400e+00 -2.683350063085672144e-01
7.458104944670262276e-03 -6.870840995115524708e-01
-1.486425642529046964e+00 -1.072388051504320927e+00
-1.748702274078662633e+00 2.174584834099130282e-02
-1.357986302080571139e+00 1.214125403924545488e+00
-1.381110302028721870e+00 1.740987558592999918e+00
-7.872453699561924312e-01 8.292689461226938619e-01
2.540562481604615175e-01 1.884034658455949529e+00
-8.794918235846288512e-02 -1.842953684933271274e+00
-3.935752379509660503e-02 -6.021200690343174733e-01
3.718108228939162596e-01 1.555423510338353799e+00
-2.165435388465850042e-01 -2.001352723307267212e+00
1.481507566644128859e+00 1.381817206330155479e+00
-1.559334793396634777e-01 3.303813032327140159e-02
9.803004794160039559e-01 1.457245761498688008e+00
-1.258764893021562914e+00 -6.406786818511648329e-01
-8.057433059577394641e-01 4.191224745668385987e-01
2.614829166133545435e-01 -2.321115848536765280e-01
1.501599209589350226e+00 -1.497889302257773059e+00
-8.008398053090540758e-01 1.042182651579608876e+00
1.071723718883843546e+00 -9.680694878044857621e-01
2.313497952920107181e+00 1.564075490363988408e+00
1.189745998545655548e+00 -4.285470752717697729e-01
6.145516969193779433e-01 4.678495041880102456e-01
-5.401741178375312202e-01 -2.123732324773704161e-01
1.313544166666359529e-02 1.015608822872635875e+00
7.584018877436915496e-01 7.239770106470392319e-01
1.435553100163435181e+00 -2.605672525976325260e-01
1.694797144228687102e+00 -1.269511153481174270e+00
7.786260038085672797e-01 -1.089564718739631566e+00
1.157208444512013573e-01 -1.058111114963460553e+00
1.327781991046510512e-01 -7.906095135459247913e-01
5.875554394537509939e-01 -7.534418450152465807e-01
-1.376834321892886459e+00 -1.997513001057316329e+00
1.805646559893572811e-02 -4.176280869088790093e-02
1.157626330161628081e+00 -6.776180512955662927e-01
8.121860437735163307e-01 5.643374933752104416e-01
-1.424359865969147210e+00 -6.599077805968282806e-02
9.171436587962278342e-02 -1.283192765675914337e+00
3.289277714904481620e-01 -2.133368877865763569e+00
-3.187823227044830898e-01 -1.952505653267152086e+00
-9.872261958593464559e-01 -7.415126923458879860e-02
8.803900685900981626e-01 -4.763464225042344791e-01
-1.505267902154564241e-01 -6.138556282883457227e-01
-4.821154268376602325e-01 9.316394352086246888e-01
3.463361403459196408e-01 -7.238909838285429998e-01
6.151932611429861142e-01 -6.652666620883668225e-01
-1.615621284575439742e-01 -7.519706297733870504e-02
5.766158235556686495e-01 3.439348538236462471e-01
1.603812333620400210e+00 5.825366314512232524e-01
2.246873954598107126e+00 -5.706297828298555475e-01
1.058511143910821239e+00 -4.833299569893245162e-01
-2.053779715784037896e-01 -1.579466515122615877e-01
6.818587143336022338e-01 -1.113474362030890008e+00
-1.344444085283145185e+00 5.090819279877578651e-02
-4.802130683381201637e-01 4.760908560448927629e-01
-6.781294261558062919e-01 -5.491930579214525654e-01
5.403533000581890455e-01 -1.941989901096574433e+00
5.543736747356454719e-01 1.514458684362044449e+00
......
8.410616424345644937e-01
5.005365756289289481e-01
7.856486873024293160e-01
1.387656654922742261e+00
......
nb_label 2
loss_type cross_entropy
......
m 3
n 3
unit_width 4166
m 10
n 10
unit_width 1363
......
This diff could not be displayed because it is too large.
Accuracy 0.9359705333266057
Precision 0.9487975174553918
F1 0.9204139228598307
TP 7338.0
FN 873.0
FP 396.0
Sensitivity 0.8936792108147606
TN 11212.0
Specificity 0.9658855961405927
MCC 0.86802041696
2.921966810171500173e-01 -1.267490109282287003e+00
-7.745653089646113987e-01 4.176319383401234098e-01
8.882332045673715371e-01 4.391474249024669430e-01
6.229871573434978549e-01 4.816418957272814438e-01
-6.089077971504743836e-01 4.408642807015484277e-01
-1.892320544758463105e-02 -7.216459928053169381e-01
7.666388427447032861e-01 4.582594484643434107e-01
-5.600370298548896786e-01 -6.593302195708198310e-01
1.152383566051666142e+00 -6.523468570080928619e-02
7.008272685494530696e-02 4.188229850982895797e-01
2.125210505451045506e+00 -1.010436080131618120e+00
-6.711708027872388405e-01 -1.086626004301889242e-01
-1.244730116684614751e+00 -8.857213622605075720e-01
-3.666401256533951547e-01 -8.171285644749906041e-01
-5.155819227942086691e-01 -5.402974092059273925e-01
3.079346023735943794e-01 -6.814500316928971957e-01
-8.599935954338953914e-02 -1.246132833071990520e+00
-9.310211798875607236e-01 1.641667210256444021e+00
7.569525500950194941e-01 8.151093617274921543e-01
5.562280983538836487e-01 -1.501634560603994029e+00
1.804762840958709758e+00 -1.720236554582118993e+00
1.107864930660945380e+00 5.512319824160860637e-01
-6.266198640534831332e-01 5.758951556321907361e-01
8.813904961165925922e-01 -7.162847230629513229e-01
-6.696788586585074032e-01 -2.382867352295126862e-01
6.589224167685456823e-01 2.028575822880285540e-01
-5.608661279790326804e-01 -1.184751842788046572e+00
-7.741759648711099562e-01 1.028884833629246875e+00
2.346275928722772353e+00 -1.218900893835366928e+00
-1.964004868878279353e-01 5.749474577687366805e-01
4.768429555906629758e-01 6.193644753301229544e-01
1.019178157245534289e+00 -5.749751055967226021e-01
-8.215195086982195471e-01 -1.217417858446171897e+00
6.194380074324739027e-01 2.793559019080366426e-02
-1.780900939893888257e-01 2.155800939272853045e-01
1.796090341944533320e+00 -2.209651681961250613e+00
6.044406944025340067e-01 6.837640071290592703e-01
9.481630700428680392e-01 -8.211885187676902509e-02
-1.519804996203218683e-01 1.683918661321745225e-01
-5.862988513060889417e-01 -7.497947762210217283e-04
-7.550782889061065095e-01 -1.557647760859130204e-01
1.428580869724888514e+00 1.662656672243261857e+00
-6.059532075183102773e-01 -4.918264497036812788e-01
6.866014238340313325e-01 -3.002784586995146943e-01
7.115369923161177224e-02 -4.716116919281546638e-01
4.443625683918039221e-02 -2.225057928652024231e+00
3.609527832435070471e-01 -1.250705258769310602e+00
-1.487776483519038351e+00 8.626617087274378315e-02
1.139681643374873099e+00 -1.754702883144673153e+00
-1.187306294694074216e-03 7.753433236579214682e-01
5.551535560679858872e-01 4.983536485822545048e-01
-1.188483911891164146e-01 6.860890954003004971e-01
2.917083300431069226e+00 -2.870239632291176624e-01
1.079287720396337136e+00 -9.705452264219017744e-01
1.282701421619049896e-02 -9.610571282337776466e-01
1.068169359302845733e-01 1.266754876957243647e+00
4.698006423787831620e-01 1.394314765257409050e+00
-4.044782857243543472e-01 -7.399907790317031830e-01
-1.643794614790330400e-01 1.358268482713944181e+00
6.581772955597176011e-02 -1.538447755326985411e-01
1.218313450295845035e+00 -9.537154284905022816e-01
-8.682173373366082469e-02 -9.628699221460507163e-01
2.028093448257541898e-01 3.306803815400591318e-01
-8.134316832650052564e-01 -1.598231120400771754e+00
-1.042808101673687177e-01 6.713336914955229107e-01
-4.399757990412867525e-01 8.942916421454492892e-02
-1.050623516154075121e+00 -8.455373311971918771e-01
5.134092585236135417e-03 1.034307420545174105e+00
-1.151847320893752080e+00 1.995674511809043983e+00
-2.249568262804571894e+00 7.025946381370729021e-01
4.940325737393911898e-01 -7.144341185305081998e-01
1.218354809380729042e+00 -6.729197564811747467e-01
9.902732343170052021e-01 -1.609090701596029016e-01
7.251534034469986345e-01 9.472466464241111606e-01
8.319123278666804566e-01 -1.219291712170402553e+00
-1.067510955103705639e+00 4.952698563944539223e-01
-1.551502537942923143e-01 -8.902712404560284565e-01
-6.215323134962840168e-01 1.323486018618174498e+00
-6.021802389350671136e-01 2.385142561855568000e-01
1.257136409921820519e+00 1.544636517162237821e+00
7.314534220677552101e-01 -9.929626696412907627e-01
7.233709911796486203e-02 6.059313990849112264e-01
-1.228955650447682846e+00 1.136524341857619719e-01
-5.874427088357199178e-01 -5.284952108444603835e-01
5.199937610975163133e-02 1.858477089328328891e+00
1.596238598702696132e-01 1.999482705417672534e-01
-1.386355600353201233e-02 6.537592505855264191e-01
2.592755323685619340e-01 7.060030676631608992e-01
-2.302778736359006206e+00 4.157183417554226601e-01
-1.449685645871392925e+00 6.524921093518448734e-01
-1.942128261706939085e+00 6.739548320715177399e-01
-1.035055023526199935e+00 -5.214694097772506476e-01
8.923772715806764788e-01 3.170955265815682267e-02
2.191543464510866457e+00 1.080910448239292970e-01
-1.125715534391530159e+00 2.773450107035286827e-01
-2.636259732752861407e+00 -1.718095176177313610e-01
-7.420752084724716036e-02 6.461542029021098976e-01
-1.029113882314791395e+00 1.867357812000162820e+00
-3.999822086518114994e-01 -1.486546333142605703e-01
2.593030050319120594e-01 2.105705199969115426e+00
-9.709856336180953118e-01
7.890619234678260263e-02
m 10
n 10
unit_width 1363
This diff could not be displayed because it is too large.
-3.823909937191129482e-01 -1.129769666330014272e-01
1.706157058975769081e+00 -7.395105676840593167e-01
-4.885239905668425225e-02 3.998917985131483777e-01
-1.617888192529082003e+00 1.943281535393965864e+00
-3.042496974412836619e-01 4.872727847001193102e-01
2.759262039064330096e+00 -2.913815207657406425e+00
-1.458501847357029479e+00 2.107276012851273972e+00
-1.029452187027219967e+00 1.757424547616641464e+00
2.139994539230710702e-01 1.425689509911570452e-01
7.357600690657697395e-01 4.701211314389758256e-01
4.989337725512703603e-01 -4.991704028719965436e-01
1.369792390775633750e+00 -5.700714031338010024e-01
-5.149767795775258561e-01 1.322090200601785392e+00
2.921150110171684133e-01 -3.203500704227628115e-01
-1.286739759393799171e-02 -9.453784004632780347e-01
9.631908327637797029e-01 -5.587718519992165289e-01
-5.579367463083011458e-01 1.604067511777478861e-01
7.753118666422931238e-01 -1.016229714962057384e+00
3.400812524371641943e-01 3.968282953021680104e-01
-4.604018088520597796e-01 -4.235912397128768214e-01
1.199547303621410155e+00 5.557097768125572879e-01
2.723039969318988840e-01 5.751146177887032085e-01
2.654208804249737153e+00 8.883856367119269404e-02
-4.167766591704636370e-01 -1.077852030487839619e+00
5.238146243765094967e-01 1.088367365584113955e+00
-1.623715581190716684e+00 7.678186188169568507e-03
7.775578715317222889e-01 -1.826291730667552139e-03
7.446065039766809335e-01 2.319403841939367550e-01
1.222876109243231368e-01 5.928234648884228575e-01
2.407725028672839593e-02 -4.685897184561543249e-01
3.998085759896018998e-01 -1.111189491317358391e-01
6.538785556597366266e-01 -9.010870599104825462e-02
1.549000810441963361e-01 1.319873744984323138e-01
-6.866686384182667524e-01 -7.454529002832859241e-01
-3.417601209674805962e-02 2.164517285348016351e+00
-6.242952880805803240e-01 8.714820616374863160e-02
-6.050605253367704606e-01 -9.367343247213251178e-01
-2.233541228048537830e-01 -1.725369295846234996e+00
-5.095563102768273511e-01 -1.338186413627857618e-01
7.073409524547352722e-01 1.148849069432601039e-01
4.442755309392243390e-01 -7.146665763183389364e-02
1.665302900337767844e-01 -5.010924844107098597e-01
-2.708156333941060812e-01 -7.075702629497669927e-01
1.367143118761629528e-01 6.678204573026852442e-01
1.590377606672546795e+00 -1.148372667549015347e+00
-3.674576038753464557e-02 7.508964740614525180e-02
7.262020684172019180e-01 -6.657677963972207236e-01
3.649554947208868971e-01 -2.262505763170731543e-01
1.257565353273071063e+00 4.519037503632053476e-01
-1.143282000176901736e-01 5.980751089745752758e-01
-9.519227298923089997e-02 -8.027846000562707252e-01
1.295370843671161398e-01 1.360800949014057126e-01
4.663685883503811969e-01 -2.050939682311481438e-01
9.847227486632098570e-01 -5.853348058995394565e-01
-9.198669980166638283e-01 -1.265391784554197541e+00
-7.596681400423070940e-01 1.047869629564530114e-01
4.870196927338018011e-01 3.814319392699084266e-01
3.846235493341090828e-01 -1.858100788606746323e-01
-7.657534520855588944e-01 -1.943613457000787470e+00
1.337838279406278197e+00 -9.101036755372761411e-02
9.811929647998502979e-01 4.998920732119462862e-01
-5.356697941845248861e-02 -1.318912893713656720e+00
4.557976764133568337e-01 -2.139156586209071953e-01
9.444528411078508823e-01 -1.174581709863368628e+00
8.447899241865213238e-01 -9.563151116054675605e-01
-6.050959884114046616e-01 -1.510206384481721509e+00
-3.850575332531258610e-01 6.293328216123835750e-01
4.101436503036761660e-01 4.365595038006077622e-01
-9.351699738996742395e-02 1.614943563616749733e+00
6.215675782847305264e-01 1.220234789634386363e+00
5.889713608479555385e-01 -1.688306376831372191e-01
-1.936195192523442465e-01 -1.250674944002606814e+00
-1.581210289888026699e+00 -7.554269097315561288e-01
-8.576670427721829956e-03 7.066346822696500940e-01
-1.772726899593409788e-01 5.564519419317000004e-01
-1.206889132069063120e+00 -4.660242355330977970e-01
-1.550452689273581264e+00 1.417091392432634933e+00
1.019505347320634803e+00 -1.036700895752186380e+00
-6.368135142714405061e-01 -1.105739632402684025e+00
8.096222601449679646e-01 -7.701953880865034519e-01
-7.919832456665768516e-01 -8.881638702254056605e-01
-1.640466192674606694e-01 -1.524084401508043474e-01
-8.338451068554023071e-02 2.315133282701433981e-01
7.946153130389765895e-02 5.600938356866161927e-01
-7.619649192082540434e-01 7.372845453799363735e-01
-6.929289980840562350e-03 1.062579720354669188e+00
-3.094460742569162814e-01 1.952556970842180550e-01
-9.101148493034509623e-02 2.681233382660247244e+00
-3.529799458334586526e-01 1.868155222308287011e-01
2.493254257367573778e+00 7.447775203791892618e-02
-1.219891912638750853e+00 3.520083115485906911e-01
2.286482762692647885e-01 -6.815906078001401358e-01
-7.520650632128281776e-01 5.491365953808025058e-01
5.591516570241533701e-01 1.179497425163741786e+00
-9.530343825859615148e-01 1.168859850272259804e+00
-1.172022528287498533e+00 4.771272734913724056e-01
-5.547817936419026097e-01 -1.100088298232407835e-01
-1.561093058361496588e+00 1.731582677101525025e+00
-2.831014965933719707e-01 5.750061508363098900e-02
-1.439747491521601308e+00 4.836202895318762740e-02
-7.103367585662654360e-01 -2.762447660764363877e-01
6.492326356890215644e-01 -2.897920485352264985e-01
1.109102967487712421e+00 -3.040762332247263777e-01
8.417331691234702928e-01 9.306787146294941415e-01
-4.978931596125399373e-02 1.002379557403799915e+00
-8.690031376919613582e-01 -1.118841909714985761e+00
-3.528012042114383462e-01 9.232916390613780944e-02
-6.886148639967885066e-01 7.085484897620657474e-01
2.784696540815985721e-01 1.029396887843844421e+00
......
-1.012806165243406165e+00
-5.757068417609306765e-02
-2.100259864975614121e+00
1.392038476727114560e+00
......
m 3
n 3
unit_width 4166
m 10
n 10
unit_width 1363
......
This diff could not be displayed because it is too large.
FP 12.0
TP 3403.0
Specificity 0.9964093357271095
Sensitivity 0.9994126284875183
TN 3330.0
Accuracy 0.9979250037053505
FN 2.0
Precision 0.9964860907759883
MCC 0.995853906935
F1 0.9979472140762463
-1.203691734322560158e+00 1.308718823877404125e+00
-1.577665373482643352e+00 8.008574946213006251e-01
-8.506648358755916628e-02 2.705888410872995253e-01
1.731911069186025998e+00 -1.303775899533903493e+00
1.530591667967251768e+00 -1.568391233101171123e+00
-1.978118764069454860e+00 1.223671993251873369e+00
-1.084181617488288341e+00 1.041958522159743383e+00
3.722423161538214731e-01 -1.824854976140406204e-01
1.634838201602649255e+00 -1.472844503954589657e+00
-1.339619174999461537e-01 -7.427370378135738083e-01
-3.578068484813904937e-01 -2.499425310432194236e-01
-3.147465166997161501e-01 6.795122044393681060e-01
1.228278693112197367e-01 1.363183636542249499e-01
-1.177267265192073697e+00 1.464976227480941695e+00
1.117023743435855421e+00 7.340515290780343927e-01
-6.997473323270145817e-01 -7.100430805053462580e-01
-6.537063458260526927e-01 1.529490704334930617e+00
3.575433678246392466e-01 1.618343504146044221e-01
1.336997950921125389e+00 -8.279960054956452264e-01
1.747734630511029175e-01 1.621605292416427313e-01
-7.776845410771039413e-01 -3.744343496130695392e-01
5.604571467480200520e-01 -1.970136799475145084e+00
-7.228970284133697799e-01 -1.521088090492300759e+00
1.248059333049481578e+00 5.509781445764772023e-01
5.765670938777647248e-01 1.034301073787588843e+00
3.326704866178254449e-01 -4.052245100349156637e-01
6.811071945421712237e-02 2.076659327765849883e-01
2.983741789067117511e-01 2.854383615509571426e-01
1.407466390128169875e+00 -1.364608288351209509e-01
6.373811349437713547e-02 3.076139712975129448e-01
3.518776657905606231e-01 8.506001833387893951e-01
1.863323166207802029e+00 -9.924767252954507235e-01
5.745373746520117120e-01 1.670930813149915928e-01
-8.383133215991293505e-03 7.945387457697391520e-01
5.528006782351193582e-01 3.610455234926860935e-01
1.362322235658345627e-02 -2.945337481588312101e-01
-3.009971375867522281e-01 -1.484521819911575891e-01
6.119044772228552365e-01 -4.101327354027635708e-01
7.146941561644809537e-01 -1.151184973059705685e+00
9.105241394454375303e-01 -1.215590727127861204e+00
-5.547277249398162580e-01 1.325549055285202726e+00
-9.393640424322106941e-02 1.230915042757845024e+00
6.277659763179487262e-01 -1.136313942950739397e+00
-3.996618791130803205e-01 -1.727341109013160458e-01
2.599204643855324015e+00 9.945451168161344446e-01
1.516877416203078921e+00 3.738606810131345215e-01
1.280177920915096967e+00 -1.660635782244281600e-01
1.729827062963608775e+00 -4.248304312101500724e-01
1.423870962689172570e+00 -7.630589836793151282e-01
-1.386296925019990356e+00 9.326750225784420367e-01
-1.909425108447982744e+00 1.249615806164386722e+00
-3.343706576830290378e-01 -1.286763285014415503e+00
-4.475825686209760623e-01 2.561034710371414280e-01
-1.946636178787538862e-01 -3.077373654210578680e-02
-2.687417961711943692e-01 -1.695174337496731187e+00
9.811414888069883156e-02 -1.222211127686593679e+00
3.186594895134706729e-01 -1.514754457014281019e+00
-3.737396883298058081e-01 -1.620454494723935213e+00
1.371708745556874609e+00 -1.106472684669603579e+00
-6.930370877191399659e-01 3.531348673785013048e-01
-6.091124471174658161e-01 2.394736936234790892e-01
-6.031206128968708002e-01 4.678300461751347394e-01
5.916035280598272439e-02 -1.552494946594913938e-01
1.370319224364648480e+00 3.187196276240957804e-01
-9.166007088256986624e-01 -5.095166691102001044e-01
-6.806086310094261460e-01 -1.271264592160903817e+00
8.778041252146718820e-01 -1.540517579382225000e+00
-1.294726567606886425e+00 -8.057507056138228929e-01
-1.149743531719778611e+00 -5.493377303498013786e-01
-3.287880877605398044e-01 9.359351615385178569e-01
-1.351214725880780287e+00 -3.937600934390893953e-02
-9.839068459918799414e-01 1.711647012090197206e-01
-5.149242337688249016e-01 -7.932156193049313408e-01
1.584764891278982180e-01 -9.421184171232417359e-01
1.357039540610055495e+00 -6.999749323960594571e-01
4.452658421694874469e-01 1.402298256792895992e-01
-2.415349073343235342e-01 -6.113987722641940348e-01
1.023912158806905337e+00 7.109257279479437308e-01
-5.353105895919412216e-01 8.191995547062423944e-01
3.378215508516750898e-01 9.330874741242070058e-01
4.301589391627345105e-01 5.430714274688387688e-02
-1.570686879845374584e+00 3.252507337612055571e-01
-1.735437642854003482e+00 1.053570832437357385e+00
4.750930466517942485e-01 1.079704704442303820e+00
-1.170241654685169719e+00 -1.495328448738573623e+00
4.644933759082754965e-01 -2.378900234600282437e-01
-9.338683958604784840e-02 5.656203491713536202e-01
5.644659988033821907e-02 9.290123946354030826e-01
-2.253404856132575684e+00 6.742835770959779498e-03
1.437876881255197636e+00 -4.000513910923483296e-01
-2.014945768454205588e+00 1.125794702501178302e+00
-8.947822731884499392e-01 1.896227319576855086e+00
3.562230390656811463e-01 3.992716140275907599e-01
1.180519772903134479e+00 1.959604764793808185e+00
-8.041400664270517695e-02 6.385347751934391525e-01
3.510768761341404032e-01 -6.221299843489924014e-02
1.478299687647339766e+00 -1.436994109814010212e+00
-1.566205240031652846e+00 -1.156299569406928240e+00
-7.205534817158381067e-01 -8.706248177905239194e-01
-1.004027990542824433e+00 2.805639903257251877e+00
9.717554386960737256e-01 -9.320097681656036581e-01
-1.478292220887330144e+00 -8.425254113867293448e-02
-6.271385656682054721e-01 3.170876824730415877e-01
5.461568761195461086e-01 1.431972513993917395e-01
7.849715048432074349e-01 -5.296849853553525778e-01
8.598162790300355462e-01 5.108969815479248444e-01
9.938162900684058831e-01 1.290777168864945423e+00
1.028660438394122023e+00 3.384105109512132725e-01
-4.081089260610661906e-01 6.552616602234176968e-01
......
7.905182097082329440e-01
2.407343086410823063e-01
-5.437992781936751285e-01
1.432363628656190685e-02
......
nb_label 2
loss_type cross_entropy
......
m 3
n 3
unit_width 4166
m 10
n 10
unit_width 1363
......
This diff could not be displayed because it is too large.
MCC 0.619314779812
Sensitivity 0.7483617300131061
Precision 0.6885048231511254
Specificity 0.8879572068815961
FP 775.0
TP 1713.0
Accuracy 0.8532478818162068
TN 6142.0
FN 576.0
F1 0.7171865187356081
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.