Ignore:
Timestamp:
Oct 10, 2006, 2:08:45 PM (17 years ago)
Author:
Jari Häkkinen
Message:

References #83. Changing project name to yat. Compilation will fail in this revision.

Location:
trunk/c++_tools/classifier
Files:
61 edited

Legend:

Unmodified
Added
Removed
  • trunk/c++_tools/classifier/ConsensusInputRanker.cc

    r667 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/ConsensusInputRanker.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/InputRanker.h>
    6 #include <c++_tools/classifier/IRRetrieve.h>
    7 #include <c++_tools/classifier/MatrixLookup.h>
    8 #include <c++_tools/classifier/MatrixLookupWeighted.h>
    9 #include <c++_tools/classifier/Sampler.h>
    10 #include <c++_tools/classifier/Target.h>
    11 #include <c++_tools/statistics/Score.h>
    12 #include <c++_tools/statistics/utility.h>
    13 #include <c++_tools/utility/stl_utility.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/ConsensusInputRanker.h"
     25
     26#include "yat/classifier/InputRanker.h"
     27#include "yat/classifier/IRRetrieve.h"
     28#include "yat/classifier/MatrixLookup.h"
     29#include "yat/classifier/MatrixLookupWeighted.h"
     30#include "yat/classifier/Sampler.h"
     31#include "yat/classifier/Target.h"
     32#include "yat/statistics/Score.h"
     33#include "yat/statistics/utility.h"
     34#include "yat/utility/stl_utility.h"
    1435
    1536#include <cassert>
  • trunk/c++_tools/classifier/ConsensusInputRanker.h

    r667 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_consensusinputranker_
    42#define _theplu_classifier_consensusinputranker_
    53
    6 #include <c++_tools/classifier/InputRanker.h>
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/InputRanker.h"!
    728
    829namespace theplu {
  • trunk/c++_tools/classifier/CrossValidationSampler.cc

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r615 r675  
    44  Copyright (C) 2006 Peter Johansson
    55
    6   This file is part of the thep c++ tools library,
    7                                 http://lev.thep.lu.se/trac/c++_tools
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    87
    9   The c++ tools library is free software; you can redistribute it
    10   and/or modify it under the terms of the GNU General Public License
    11   as published by the Free Software Foundation; either version 2 of
    12   the License, or (at your option) any later version.
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
    1312
    14   The c++ tools library is distributed in the hope that it will be
    15   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    16   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    1716  General Public License for more details.
    1817
     
    2322*/
    2423
    25 #include <c++_tools/classifier/CrossValidationSampler.h>
    26 #include <c++_tools/classifier/Target.h>
    27 #include <c++_tools/random/random.h>
     24#include "yat/classifier/CrossValidationSampler.h"
     25#include "yat/classifier/Target.h"
     26#include "yat/random/random.h"
    2827
    2928#include <algorithm>
  • trunk/c++_tools/classifier/CrossValidationSampler.h

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r645 r675  
    77  Copyright (C) 2006 Peter Johansson
    88
    9   This file is part of the thep c++ tools library,
    10                                 http://lev.thep.lu.se/trac/c++_tools
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    1110
    12   The c++ tools library is free software; you can redistribute it
    13   and/or modify it under the terms of the GNU General Public License
    14   as published by the Free Software Foundation; either version 2 of
    15   the License, or (at your option) any later version.
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
    1615
    17   The c++ tools library is distributed in the hope that it will be
    18   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    19   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    2019  General Public License for more details.
    2120
     
    2625*/
    2726
    28 #include <c++_tools/classifier/Sampler.h>
     27#include "yat/classifier/Sampler.h"
    2928
    3029namespace theplu {
  • trunk/c++_tools/classifier/DataLookup1D.cc

    r624 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/DataLookup1D.h>
    4 #include <c++_tools/classifier/DataLookup2D.h>
    5 #include <c++_tools/classifier/MatrixLookup.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/DataLookup1D.h"
     25#include "yat/classifier/DataLookup2D.h"
     26#include "yat/classifier/MatrixLookup.h"
    627
    728#include <cassert>
  • trunk/c++_tools/classifier/DataLookup1D.h

    r648 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_dataLookup1D_
    42#define _theplu_classifier_dataLookup1D_
    53
    6 #include <c++_tools/classifier/DataLookup2D.h>
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/DataLookup2D.h"
    728
    829#include <cassert>
  • trunk/c++_tools/classifier/DataLookup2D.cc

    r659 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/DataLookup2D.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/DataLookup2D.h"
    425
    526#include <vector>
  • trunk/c++_tools/classifier/DataLookup2D.h

    r659 r675  
     1#ifndef _theplu_classifier_DataLookup2D_
     2#define _theplu_classifier_DataLookup2D_
     3
    14// $Id$
    25
    3 #ifndef _theplu_classifier_DataLookup2D_
    4 #define _theplu_classifier_DataLookup2D_
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627#include <vector>
  • trunk/c++_tools/classifier/DataLookupWeighted1D.cc

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r622 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/DataLookupWeighted1D.h>
    4 #include <c++_tools/classifier/MatrixLookupWeighted.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/DataLookupWeighted1D.h"
     25#include "yat/classifier/MatrixLookupWeighted.h"
    526
    627#include <cassert>
  • trunk/c++_tools/classifier/DataLookupWeighted1D.h

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r648 r675  
    33
    44// $Id$
     5
    56/*
    67  Copyright (C) 2006 Peter Johansson
    78
    8   This file is part of the thep c++ tools library,
    9                                 http://lev.thep.lu.se/trac/c++_tools
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    1010
    11   The c++ tools library is free software; you can redistribute it
    12   and/or modify it under the terms of the GNU General Public License
    13   as published by the Free Software Foundation; either version 2 of
    14   the License, or (at your option) any later version.
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
    1515
    16   The c++ tools library is distributed in the hope that it will be
    17   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    18   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    1919  General Public License for more details.
    2020
     
    2525*/
    2626
    27 #include <c++_tools/classifier/MatrixLookupWeighted.h>
     27#include "yat/classifier/MatrixLookupWeighted.h"
    2828
    2929#include <iostream>
  • trunk/c++_tools/classifier/EnsembleBuilder.cc

    r659 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/EnsembleBuilder.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup2D.h>
    6 #include <c++_tools/classifier/KernelLookup.h>
    7 #include <c++_tools/classifier/SubsetGenerator.h>
    8 #include <c++_tools/classifier/SupervisedClassifier.h>
    9 #include <c++_tools/classifier/Target.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    107
    11 #include <c++_tools/utility/matrix.h>
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/EnsembleBuilder.h"
     25
     26#include "yat/classifier/DataLookup2D.h"
     27#include "yat/classifier/KernelLookup.h"
     28#include "yat/classifier/SubsetGenerator.h"
     29#include "yat/classifier/SupervisedClassifier.h"
     30#include "yat/classifier/Target.h"
     31
     32#include "yat/utility/matrix.h"
    1233
    1334namespace theplu {
  • trunk/c++_tools/classifier/EnsembleBuilder.h

    r655 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_ensemblebuilder_
    42#define _theplu_classifier_ensemblebuilder_
    53
    6 #include <c++_tools/statistics/Averager.h>
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/statistics/Averager.h"!
    728
    829#include <vector>
  • trunk/c++_tools/classifier/FeatureSelector.cc

    r624 r675  
    11// $Id$
     2
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
    223
    324#include "FeatureSelector.h"
  • trunk/c++_tools/classifier/FeatureSelector.h

    r648 r675  
     1#ifndef _theplu_classifier_featureselector_
     2#define _theplu_classifier_featureselector_
     3
    14// $Id$
    25
    3 #ifndef _theplu_classifier_featureselector_
    4 #define _theplu_classifier_featureselector_
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627#include <list>
  • trunk/c++_tools/classifier/FeatureSelectorIR.cc

    r640 r675  
    11// $Id$
     2
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
    223
    324#include "FeatureSelectorIR.h"
  • trunk/c++_tools/classifier/FeatureSelectorIR.h

    r624 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_featureselectorir_
    42#define _theplu_classifier_featureselectorir_
    53
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
    627#include "FeatureSelector.h"
    728
    8 #include <c++_tools/statistics/Score.h>
     29#include "yat/statistics/Score.h"
    930
    1031namespace theplu {
  • trunk/c++_tools/classifier/FeatureSelectorRandom.cc

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r642 r675  
    11// $Id$
     2
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
    223
    324#include "FeatureSelectorRandom.h"
     
    526#include "MatrixLookupWeighted.h"
    627#include "Target.h"
    7 #include "c++_tools/random/random.h"
     28#include "yat/random/random.h"
    829
    930#include <algorithm>
  • trunk/c++_tools/classifier/FeatureSelectorRandom.h

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r642 r675  
    33
    44// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627#include "FeatureSelector.h"
  • trunk/c++_tools/classifier/GaussianKernelFunction.cc

    r629 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/GaussianKernelFunction.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/KernelFunction.h>
    6 #include <c++_tools/classifier/DataLookup1D.h>
    7 #include <c++_tools/classifier/DataLookupWeighted1D.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/GaussianKernelFunction.h"
     25
     26#include "yat/classifier/KernelFunction.h"
     27#include "yat/classifier/DataLookup1D.h"
     28#include "yat/classifier/DataLookupWeighted1D.h"
    829
    930#include <math.h>
  • trunk/c++_tools/classifier/GaussianKernelFunction.h

    r629 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/KernelFunction.h>
    7 #include <c++_tools/classifier/DataLookup1D.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/KernelFunction.h"
     28#include "yat/classifier/DataLookup1D.h"
    829
    930#include <cmath>
  • trunk/c++_tools/classifier/IGP.cc

    r616 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/IGP.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup1D.h>
    6 #include <c++_tools/classifier/MatrixLookup.h>
    7 #include <c++_tools/classifier/Target.h>
    8 #include <c++_tools/classifier/utility.h>
    9 #include <c++_tools/utility/vector.h>
    10 #include <c++_tools/statistics/Distance.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/IGP.h"
     25
     26#include "yat/classifier/DataLookup1D.h"
     27#include "yat/classifier/MatrixLookup.h"
     28#include "yat/classifier/Target.h"
     29#include "yat/classifier/utility.h"
     30#include "yat/utility/vector.h"
     31#include "yat/statistics/Distance.h"
    1132
    1233#include <cassert>
  • trunk/c++_tools/classifier/IGP.h

    r616 r675  
    44// $Id$
    55
    6 #include <c++_tools/utility/vector.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/utility/vector.h"
    728
    829namespace theplu {
  • trunk/c++_tools/classifier/IRRank.h

    r667 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_ir_rank_
    42#define _theplu_classifier_ir_rank_
    53
    6 #include <c++_tools/classifier/InputRanker.h>
    7 #include <c++_tools/classifier/IRRetrieve.h>
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/InputRanker.h"
     28#include "yat/classifier/IRRetrieve.h"
    829
    930namespace theplu {
  • trunk/c++_tools/classifier/IRRetrieve.h

    r666 r675  
     1#ifndef _theplu_classifier_ir_retrieve_
     2#define _theplu_classifier_ir_retrieve_
     3
    14// $Id$
    25
    3 #ifndef _theplu_classifier_ir_retrieve_
    4 #define _theplu_classifier_ir_retrieve_
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627namespace theplu {
  • trunk/c++_tools/classifier/IRScore.h

    r666 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_ir_score_
    42#define _theplu_classifier_ir_score_
    53
    6 #include <c++_tools/classifier/InputRanker.h>
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/InputRanker.h"
    728
    829namespace theplu {
  • trunk/c++_tools/classifier/InputRanker.cc

    r665 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/InputRanker.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/MatrixLookup.h>
    6 #include <c++_tools/classifier/MatrixLookupWeighted.h>
    7 #include <c++_tools/classifier/DataLookup1D.h>
    8 #include <c++_tools/classifier/DataLookupWeighted1D.h>
    9 #include <c++_tools/classifier/Target.h>
    10 #include <c++_tools/statistics/ROC.h>
    11 #include <c++_tools/utility/stl_utility.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/InputRanker.h"
     25
     26#include "yat/classifier/MatrixLookup.h"
     27#include "yat/classifier/MatrixLookupWeighted.h"
     28#include "yat/classifier/DataLookup1D.h"
     29#include "yat/classifier/DataLookupWeighted1D.h"
     30#include "yat/classifier/Target.h"
     31#include "yat/statistics/ROC.h"
     32#include "yat/utility/stl_utility.h"
    1233
    1334#include <functional>
  • trunk/c++_tools/classifier/InputRanker.h

    r665 r675  
     1#ifndef _theplu_classifier_inputranker_
     2#define _theplu_classifier_inputranker_
     3
    14// $Id$
    25
    3 #ifndef _theplu_classifier_inputranker_
    4 #define _theplu_classifier_inputranker_
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627#include <vector>
  • trunk/c++_tools/classifier/Kernel.cc

    r659 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/Kernel.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup1D.h>
    6 #include <c++_tools/classifier/DataLookupWeighted1D.h>
    7 #include <c++_tools/classifier/KernelFunction.h>
    8 #include <c++_tools/classifier/MatrixLookup.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/Kernel.h"
     25
     26#include "yat/classifier/DataLookup1D.h"
     27#include "yat/classifier/DataLookupWeighted1D.h"
     28#include "yat/classifier/KernelFunction.h"
     29#include "yat/classifier/MatrixLookup.h"
    930
    1031#include <vector>
  • trunk/c++_tools/classifier/Kernel.h

    r659 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/DataLookup2D.h>
    7 #include <c++_tools/classifier/KernelFunction.h>
    8 #include <c++_tools/classifier/MatrixLookupWeighted.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/DataLookup2D.h"
     28#include "yat/classifier/KernelFunction.h"
     29#include "yat/classifier/MatrixLookupWeighted.h"
    930
    1031#include <cctype>
  • trunk/c++_tools/classifier/KernelFunction.h

    r629 r675  
     1#ifndef _theplu_classifier_kernel_function_
     2#define _theplu_classifier_kernel_function_
     3
    14// $Id$
    25
    3 #ifndef _theplu_classifier_kernel_function_
    4 #define _theplu_classifier_kernel_function_
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627namespace theplu {
  • trunk/c++_tools/classifier/KernelLookup.cc

    r659 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/KernelLookup.h>
    4 #include <c++_tools/classifier/DataLookup2D.h>
    5 #include <c++_tools/classifier/MatrixLookup.h>
    6 #include <c++_tools/classifier/MatrixLookupWeighted.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/KernelLookup.h"
     25#include "yat/classifier/DataLookup2D.h"
     26#include "yat/classifier/MatrixLookup.h"
     27#include "yat/classifier/MatrixLookupWeighted.h"
    728
    829
  • trunk/c++_tools/classifier/KernelLookup.h

    r659 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_kernel_lookup_
    42#define _theplu_classifier_kernel_lookup_
    53
    6 #include <c++_tools/classifier/Kernel.h>
    7 #include <c++_tools/classifier/DataLookup2D.h>
    8 #include <c++_tools/classifier/MatrixLookup.h>
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/Kernel.h"
     28#include "yat/classifier/DataLookup2D.h"
     29#include "yat/classifier/MatrixLookup.h"
     30
    931#include <vector>
    1032
  • trunk/c++_tools/classifier/Kernel_MEV.cc

    r658 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/Kernel_MEV.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup1D.h>
    6 #include <c++_tools/classifier/DataLookupWeighted1D.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/Kernel_MEV.h"
     25
     26#include "yat/classifier/DataLookup1D.h"
     27#include "yat/classifier/DataLookupWeighted1D.h"
    728
    829namespace theplu {
  • trunk/c++_tools/classifier/Kernel_MEV.h

    r658 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/DataLookup1D.h>
    7 #include <c++_tools/classifier/Kernel.h>
    8 #include <c++_tools/classifier/KernelFunction.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/DataLookup1D.h"
     28#include "yat/classifier/Kernel.h"
     29#include "yat/classifier/KernelFunction.h"
    930
    1031namespace theplu {
  • trunk/c++_tools/classifier/Kernel_SEV.cc

    r658 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/Kernel_SEV.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup1D.h>
    6 #include <c++_tools/classifier/DataLookupWeighted1D.h>
    7 #include <c++_tools/classifier/Kernel.h>
    8 #include <c++_tools/classifier/KernelFunction.h>
    9 #include <c++_tools/classifier/MatrixLookup.h>
    10 #include <c++_tools/utility/matrix.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/Kernel_SEV.h"
     25
     26#include "yat/classifier/DataLookup1D.h"
     27#include "yat/classifier/DataLookupWeighted1D.h"
     28#include "yat/classifier/Kernel.h"
     29#include "yat/classifier/KernelFunction.h"
     30#include "yat/classifier/MatrixLookup.h"
     31#include "yat/utility/matrix.h"
    1132
    1233namespace theplu {
  • trunk/c++_tools/classifier/Kernel_SEV.h

    r658 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/Kernel.h>
    7 #include <c++_tools/utility/matrix.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
    88
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/Kernel.h"
     28#include "yat/utility/matrix.h"
    929
    1030namespace theplu {
  • trunk/c++_tools/classifier/Makefile.am

    r666 r675  
    55# Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson, Markus Ringnèr
    66#
    7 # This file is part of the thep c++ tools library,
    8 #                                http://lev.thep.lu.se/trac/c++_tools
     7# This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    98#
    10 # The c++ tools library is free software; you can redistribute it
    11 # and/or modify it under the terms of the GNU General Public License as
     9# The yat library is free software; you can redistribute it and/or
     10# modify it under the terms of the GNU General Public License as
    1211# published by the Free Software Foundation; either version 2 of the
    1312# License, or (at your option) any later version.
    1413#
    15 # The c++ library is distributed in the hope that it will be useful,
     14# The yat library is distributed in the hope that it will be useful,
    1615# but WITHOUT ANY WARRANTY; without even the implied warranty of
    17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    1817# General Public License for more details.
    1918#
     
    5857
    5958
    60 include_classifierdir = $(includedir)/c++_tools/classifier
     59include_classifierdir = $(includedir)/yat/classifier
    6160
    6261include_classifier_HEADERS = \
  • trunk/c++_tools/classifier/MatrixLookup.cc

    r658 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/MatrixLookup.h>
    4 
    5 #include <c++_tools/utility/matrix.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/MatrixLookup.h"
     25
     26#include "yat/utility/matrix.h"
    627
    728#ifndef NDEBUG
  • trunk/c++_tools/classifier/MatrixLookup.h

    r658 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/DataLookup2D.h>
    7 #include <c++_tools/utility/matrix.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/DataLookup2D.h"
     28#include "yat/utility/matrix.h"
    829
    930#include <cassert>
  • trunk/c++_tools/classifier/MatrixLookupWeighted.cc

    r658 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/MatrixLookupWeighted.h>
    4 
    5 #include <c++_tools/utility/matrix.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/MatrixLookupWeighted.h"
     25
     26#include "yat/utility/matrix.h"
    627
    728#ifndef NDEBUG
  • trunk/c++_tools/classifier/MatrixLookupWeighted.h

    r658 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/DataLookup2D.h>
    7 #include <c++_tools/utility/matrix.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/DataLookup2D.h"
     28#include "yat/utility/matrix.h"
    829
    930#include <cassert>
  • trunk/c++_tools/classifier/NBC.cc

    r662 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/NBC.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup2D.h>
    6 #include <c++_tools/classifier/MatrixLookup.h>
    7 #include <c++_tools/classifier/MatrixLookupWeighted.h>
    8 #include <c++_tools/classifier/Target.h>
    9 #include <c++_tools/statistics/AveragerWeighted.h>
    10 #include <c++_tools/utility/matrix.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/NBC.h"
     25
     26#include "yat/classifier/DataLookup2D.h"
     27#include "yat/classifier/MatrixLookup.h"
     28#include "yat/classifier/MatrixLookupWeighted.h"
     29#include "yat/classifier/Target.h"
     30#include "yat/statistics/AveragerWeighted.h"
     31#include "yat/utility/matrix.h"
    1132
    1233#include <vector>
  • trunk/c++_tools/classifier/NBC.h

    r662 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/SupervisedClassifier.h>
    7 #include <c++_tools/utility/matrix.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/SupervisedClassifier.h"
     28#include "yat/utility/matrix.h"
    829
    930namespace theplu {
  • trunk/c++_tools/classifier/NCC.cc

    r638 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/NCC.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup1D.h>
    6 #include <c++_tools/classifier/DataLookup2D.h>
    7 #include <c++_tools/classifier/MatrixLookup.h>
    8 #include <c++_tools/classifier/MatrixLookupWeighted.h>
    9 #include <c++_tools/classifier/Target.h>
    10 #include <c++_tools/utility/matrix.h>
    11 #include <c++_tools/utility/vector.h>
    12 #include <c++_tools/statistics/Distance.h>
    13 #include <c++_tools/utility/stl_utility.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/NCC.h"
     25
     26#include "yat/classifier/DataLookup1D.h"
     27#include "yat/classifier/DataLookup2D.h"
     28#include "yat/classifier/MatrixLookup.h"
     29#include "yat/classifier/MatrixLookupWeighted.h"
     30#include "yat/classifier/Target.h"
     31#include "yat/utility/matrix.h"
     32#include "yat/utility/vector.h"
     33#include "yat/statistics/Distance.h"
     34#include "yat/utility/stl_utility.h"
    1435
    1536#include<iostream>
  • trunk/c++_tools/classifier/NCC.h

    r635 r675  
    44// $Id$
    55
    6 #include <c++_tools/utility/matrix.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
    78
    8 #include <c++_tools/classifier/SupervisedClassifier.h>
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/utility/matrix.h"
     28
     29#include "yat/classifier/SupervisedClassifier.h"
    930
    1031#include <map>
  • trunk/c++_tools/classifier/PolynomialKernelFunction.cc

    r629 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/PolynomialKernelFunction.h>
    4 #include <c++_tools/classifier/DataLookup1D.h>
    5 #include <c++_tools/classifier/DataLookupWeighted1D.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    65
    7 #include <c++_tools/statistics/AveragerPairWeighted.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/PolynomialKernelFunction.h"
     25#include "yat/classifier/DataLookup1D.h"
     26#include "yat/classifier/DataLookupWeighted1D.h"
     27
     28#include "yat/statistics/AveragerPairWeighted.h"
    829
    930#include <cmath>
  • trunk/c++_tools/classifier/PolynomialKernelFunction.h

    r648 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/KernelFunction.h>
    7 #include <c++_tools/classifier/DataLookup1D.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/KernelFunction.h"
     28#include "yat/classifier/DataLookup1D.h"
    829
    930
  • trunk/c++_tools/classifier/SVM.cc

    r660 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/SVM.h>
    4 
    5 #include <c++_tools/classifier/DataLookup2D.h>
    6 #include <c++_tools/random/random.h>
    7 #include <c++_tools/statistics/Averager.h>
    8 #include <c++_tools/utility/matrix.h>
    9 #include <c++_tools/utility/vector.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/SVM.h"
     25
     26#include "yat/classifier/DataLookup2D.h"
     27#include "yat/random/random.h"
     28#include "yat/statistics/Averager.h"
     29#include "yat/utility/matrix.h"
     30#include "yat/utility/vector.h"
    1031
    1132#include <algorithm>
  • trunk/c++_tools/classifier/SVM.h

    r660 r675  
    44// $Id$
    55
    6 #include <c++_tools/classifier/KernelLookup.h>
    7 #include <c++_tools/classifier/SupervisedClassifier.h>
    8 #include <c++_tools/classifier/SVindex.h>
    9 #include <c++_tools/classifier/Target.h>
    10 #include <c++_tools/utility/vector.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/classifier/KernelLookup.h"
     28#include "yat/classifier/SupervisedClassifier.h"
     29#include "yat/classifier/SVindex.h"
     30#include "yat/classifier/Target.h"
     31#include "yat/utility/vector.h"
    1132
    1233#include <utility>
  • trunk/c++_tools/classifier/SVindex.cc

    r660 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/SVindex.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
    45
    5 #include <c++_tools/classifier/DataLookup2D.h>
    6 #include <c++_tools/random/random.h>
    7 #include <c++_tools/statistics/Averager.h>
    8 #include <c++_tools/utility/matrix.h>
    9 #include <c++_tools/utility/vector.h>
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/SVindex.h"
     25
     26#include "yat/classifier/DataLookup2D.h"
     27#include "yat/random/random.h"
     28#include "yat/statistics/Averager.h"
     29#include "yat/utility/matrix.h"
     30#include "yat/utility/vector.h"
    1031
    1132#include <algorithm>
  • trunk/c++_tools/classifier/SVindex.h

    r660 r675  
    44// $Id$
    55
    6 #include <c++_tools/utility/vector.h>
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/utility/vector.h"
    728
    829#include <cassert>
  • trunk/c++_tools/classifier/Sampler.cc

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r610 r675  
    44  Copyright (C) 2006 Peter Johansson
    55
    6   This file is part of the thep c++ tools library,
    7                                 http://lev.thep.lu.se/trac/c++_tools
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    87
    9   The c++ tools library is free software; you can redistribute it
    10   and/or modify it under the terms of the GNU General Public License
    11   as published by the Free Software Foundation; either version 2 of
    12   the License, or (at your option) any later version.
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
    1312
    14   The c++ tools library is distributed in the hope that it will be
    15   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    16   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    1716  General Public License for more details.
    1817
     
    2322*/
    2423
    25 #include <c++_tools/classifier/Sampler.h>
    26 #include <c++_tools/classifier/Target.h>
     24#include "yat/classifier/Sampler.h"
     25#include "yat/classifier/Target.h"
    2726
    2827namespace theplu {
  • trunk/c++_tools/classifier/Sampler.h

    • Property svn:eol-style set to native
    • Property svn:keywords set to Author Date Id Revision
    r648 r675  
    77  Copyright (C) 2006 Peter Johansson
    88
    9   This file is part of the thep c++ tools library,
    10                                 http://lev.thep.lu.se/trac/c++_tools
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    1110
    12   The c++ tools library is free software; you can redistribute it
    13   and/or modify it under the terms of the GNU General Public License
    14   as published by the Free Software Foundation; either version 2 of
    15   the License, or (at your option) any later version.
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
    1615
    17   The c++ tools library is distributed in the hope that it will be
    18   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    19   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    2019  General Public License for more details.
    2120
     
    2625*/
    2726
    28 #include <c++_tools/classifier/Target.h>
     27#include "yat/classifier/Target.h"
    2928
    3029#include <vector>
  • trunk/c++_tools/classifier/SubsetGenerator.cc

    r656 r675  
    11// $Id$
    22
    3 
    4 #include <c++_tools/classifier/SubsetGenerator.h>
    5 #include <c++_tools/classifier/DataLookup2D.h>
    6 #include <c++_tools/classifier/FeatureSelector.h>
    7 #include <c++_tools/classifier/KernelLookup.h>
    8 #include <c++_tools/classifier/MatrixLookup.h>
    9 #include <c++_tools/classifier/MatrixLookupWeighted.h>
    10 #include <c++_tools/classifier/Target.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/SubsetGenerator.h"
     25#include "yat/classifier/DataLookup2D.h"
     26#include "yat/classifier/FeatureSelector.h"
     27#include "yat/classifier/KernelLookup.h"
     28#include "yat/classifier/MatrixLookup.h"
     29#include "yat/classifier/MatrixLookupWeighted.h"
     30#include "yat/classifier/Target.h"
    1131
    1232#include <algorithm>
  • trunk/c++_tools/classifier/SubsetGenerator.h

    r648 r675  
    77  Copyright (C) 2006 Markus Ringnér, Peter Johansson
    88
    9   This file is part of the thep c++ tools library,
    10                                 http://lev.thep.lu.se/trac/c++_tools
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
    1110
    12   The c++ tools library is free software; you can redistribute it
    13   and/or modify it under the terms of the GNU General Public License
    14   as published by the Free Software Foundation; either version 2 of
    15   the License, or (at your option) any later version.
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
    1615
    17   The c++ tools library is distributed in the hope that it will be
    18   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    19   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    2019  General Public License for more details.
    2120
     
    2524  02111-1307, USA.
    2625*/
    27 #include <c++_tools/classifier/Target.h>
    28 #include <c++_tools/classifier/Sampler.h>
     26
     27#include "yat/classifier/Target.h"
     28#include "yat/classifier/Sampler.h"
    2929
    3030#include <vector>
  • trunk/c++_tools/classifier/SupervisedClassifier.cc

    r626 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/SupervisedClassifier.h>
    4 #include <c++_tools/classifier/InputRanker.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/SupervisedClassifier.h"
     25#include "yat/classifier/InputRanker.h"
    526
    627namespace theplu {
  • trunk/c++_tools/classifier/SupervisedClassifier.h

    r648 r675  
    33
    44// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627#include <stddef.h>
  • trunk/c++_tools/classifier/Target.cc

    r663 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/Target.h>
    4 #include <c++_tools/random/random.h>
    5 #include <c++_tools/utility/stl_utility.h>
    6 #include <c++_tools/utility/utility.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/Target.h"
     25#include "yat/random/random.h"
     26#include "yat/utility/stl_utility.h"
     27#include "yat/utility/utility.h"
    728
    829#include <algorithm>
  • trunk/c++_tools/classifier/Target.h

    r663 r675  
    1 // $Id$
    2 
    31#ifndef _theplu_classifier_target_
    42#define _theplu_classifier_target_
    53
    6 #include <c++_tools/utility/Exception.h>
     4// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
     26
     27#include "yat/utility/Exception.h"
    728
    829#include <cassert>
  • trunk/c++_tools/classifier/utility.cc

    r616 r675  
    11// $Id$
    22
    3 #include <c++_tools/classifier/utility.h>
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
     23
     24#include "yat/classifier/utility.h"
    425
    526
    6 #include <c++_tools/classifier/DataLookup1D.h>
    7 #include <c++_tools/utility/vector.h>
     27#include "yat/classifier/DataLookup1D.h"
     28#include "yat/utility/vector.h"
    829
    930
  • trunk/c++_tools/classifier/utility.h

    r616 r675  
    33
    44// $Id$
     5
     6/*
     7  Copyright (C) The authors contributing to this file.
     8
     9  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     10
     11  The yat library is free software; you can redistribute it and/or
     12  modify it under the terms of the GNU General Public License as
     13  published by the Free Software Foundation; either version 2 of the
     14  License, or (at your option) any later version.
     15
     16  The yat library is distributed in the hope that it will be useful,
     17  but WITHOUT ANY WARRANTY; without even the implied warranty of
     18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     19  General Public License for more details.
     20
     21  You should have received a copy of the GNU General Public License
     22  along with this program; if not, write to the Free Software
     23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     24  02111-1307, USA.
     25*/
    526
    627namespace theplu {
Note: See TracChangeset for help on using the changeset viewer.