// @(#)root/tmva $Id: TActivation.h 20882 2007-11-19 11:31:26Z rdm $
// Author: Matt Jachowski 

/**********************************************************************************
 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis       *
 * Package: TMVA                                                                  *
 * Class  : TMVA::TActivation                                                     *
 *                                                                                *
 * Description:                                                                   *
 *      Interface for TNeuron activation function classes.                        *
 *                                                                                *
 * Authors (alphabetical):                                                        *
 *      Matt Jachowski  <jachowski@stanford.edu> - Stanford University, USA       *
 *                                                                                *
 * Copyright (c) 2005:                                                            *
 *      CERN, Switzerland                                                         *
 *                                                                                *
 * Redistribution and use in source and binary forms, with or without             *
 * modification, are permitted according to the terms listed in LICENSE           *
 * (http://tmva.sourceforge.net/LICENSE)                                          *
 **********************************************************************************/
 

#ifndef ROOT_TMVA_TActivation
#define ROOT_TMVA_TActivation

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TActivation                                                          //
//                                                                      //
// Interface for TNeuron activation function classes                    //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

class TString;

namespace TMVA {
  
   class TActivation {
    
   public:

      TActivation() {}
      virtual ~TActivation() {}

      // evaluate the activation function
      virtual Double_t Eval(Double_t arg) = 0;

      // evaulate the derivative of the activation function 
      virtual Double_t EvalDerivative(Double_t arg) = 0;

      // minimum of the range of activation function
      virtual Double_t GetMin() = 0;

      // maximum of the range of the activation function
      virtual Double_t GetMax() = 0;

      // expression for activation function
      virtual TString GetExpression() = 0;

      // writer of function code
      virtual void MakeFunction(std::ostream& fout, const TString& fncName) = 0;

      ClassDef(TActivation,0) // Interface for TNeuron activation function classes
         ;
   };

} // namespace TMVA

#endif

Last change: Wed Jun 25 08:48:49 2008
Last generated: 2008-06-25 08:48

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.