/* Copyright (c) 2016 Baidu, Inc. All Rights Reserve. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #pragma once #include #include #include #include #include "paddle/utils/GlobalConstants.h" #include "paddle/utils/TypeDefs.h" /// Import PaddlePaddle's enumeration into global namespace. using namespace paddle::enumeration_wrapper; // NOLINT #define DISABLE_COPY_AND_ASSIGN(classname) \ classname(const classname& other); \ classname& operator=(const classname& other) /** * @brief Initialize paddle. * * In python, this method should be invoked as * @code * import sys * import paddle * paddle.initPaddle(sys.argv) * or you can change arguments as any list of str. * @endcode */ void initPaddle(int argc, char** argv); /// Return FLAGS_use_gpu bool isUseGpu(); /// Return true if this py_paddle is compiled in GPU Version bool isGpuVersion(); /// The Error of IO Operation. Such as file not found, etc. class IOError {}; /// Out of range error class RangeError {}; /// Not support Error, such as access GPU memory directly, etc. class UnsupportError {}; /// This type will map to python's list of float. struct FloatArray { const float* buf; const size_t length; bool needFree; // true if the buf is dynamic alloced. FloatArray(const float* b, const size_t l); }; /// This type will map to python's list of int struct IntArray { const int* buf; const size_t length; bool needFree; IntArray(const int* b, const size_t l, bool f = false); }; /// This type will map to python's list of (int, float) struct IntWithFloatArray { const float* valBuf; const int* idxBuf; const size_t length; bool needFree; IntWithFloatArray(const float* v, const int* i, size_t l, bool f = false); }; enum SparseValueType { SPARSE_NON_VALUE = 0, SPARSE_VALUE = 1 }; enum SparseFormatType { SPARSE_CSR = 0, SPARSE_CSC = 1 }; /** * In Python, -1UL is hard to write. So define a const value used by python * side. */ const size_t NO_SPARSE_ID = -1UL; struct MatrixPrivate; class Matrix { Matrix(); // User Cannot Create Matrix. DISABLE_COPY_AND_ASSIGN(Matrix); static Matrix* createByPaddleMatrixPtr(void* sharedPtr); public: virtual ~Matrix(); /** * Create A Matrix with height,width, which is filled by zero. */ static Matrix* createZero(size_t height, size_t width, bool useGpu = isUseGpu()); /** * Create Sparse Matrix. * * After create sparse, sparseCopyFrom can be used to fill matrix. * * @param nnz Number of non zero values. * * @note the default sparse type is SPARSE_CSR. */ static Matrix* createSparse(size_t height, size_t width, size_t nnz, bool isNonVal = true, bool trans = false, bool useGpu = isUseGpu()); /** * Create Dense Matrix. * * @param data list of float should be passed in python. * @note the value will be copy into a new matrix. */ static Matrix* createDense(const std::vector& data, size_t height, size_t width, bool useGpu = isUseGpu()); static Matrix* createDenseFromNumpy(float* data, int dim1, int dim2, bool copy = true, bool useGpu = isUseGpu()); /** * Create Cpu Dense Matrix from numpy matrix, dtype=float32 * * @param data a numpy matrix. * @param dim1 dimension of data. * @param dim2 dimension of data. * @param copy true if copy into a new matrix, false will create * matrix inplace. */ static Matrix* createCpuDenseFromNumpy(float* data, int dim1, int dim2, bool copy = false); /// Create Gpu Dense Matrix from numpy matrix, dtype=float32 static Matrix* createGpuDenseFromNumpy(float* data, int dim1, int dim2); /** * Cast to numpy matrix. * * @note This method take no parameter in python. * @note This method in python will return a numpy matrix, not void. * @note Only CpuDenseMatrix is supported. * * Example: * @code * import paddle * m = paddle.Matrix.createZero(10,2) * numpy_mat = m.toNumpyMat() * @endcode */ void toNumpyMatInplace(float** view_data, int* dim1, int* dim2) throw(UnsupportError); /// Copy To numpy mat. void copyToNumpyMat(float** view_m_data, int* dim1, int* dim2) throw(UnsupportError); /// Copy From Numpy Mat void copyFromNumpyMat(float* data, int dim1, int dim2) throw(UnsupportError, RangeError); /// return true if this matrix is sparse. bool isSparse() const; SparseValueType getSparseValueType() const throw(UnsupportError); SparseFormatType getSparseFormat() const throw(UnsupportError); IntArray getSparseRowCols(size_t i) const throw(UnsupportError, RangeError); IntWithFloatArray getSparseRowColsVal(size_t i) const throw(UnsupportError, RangeError); size_t getHeight() const; size_t getWidth() const; float get(size_t x, size_t y) const throw(RangeError); void set(size_t x, size_t y, float val) throw(RangeError, UnsupportError); /// return type is list of float FloatArray getData() const; /** * Copy from rows, cols, values. * * if sparse_nonvalue, the values should be [] */ void sparseCopyFrom(const std::vector& rows, const std::vector& cols, const std::vector& values = std::vector()) throw(UnsupportError); bool isGpu() const; private: void* getSharedPtr() const; MatrixPrivate* m; friend class Trainer; friend class GradientMachine; friend class Arguments; }; struct VectorPrivate; class Vector { DISABLE_COPY_AND_ASSIGN(Vector); Vector(); static Vector* createByPaddleVectorPtr(void* ptr); void* getSharedPtr(); public: ~Vector(); /// Create Vector filled with zero. static Vector* createZero(size_t sz, bool useGpu = isUseGpu()); /** * Create Vector from list of float. * * It will create a new vector, and copy data into it. */ static Vector* create(const std::vector& data, bool useGpu = isUseGpu()); static Vector* createVectorFromNumpy(float* data, int dim, bool copy = true, bool useGpu = isUseGpu()); /** * Create Cpu Vector from numpy array, which dtype=float32 * * If copy is false, it will create vector inplace. */ static Vector* createCpuVectorFromNumpy(float* data, int dim, bool copy = false); /// Create Gpu Vector from numpy array, which dtype=float32 static Vector* createGpuVectorFromNumpy(float* data, int dim); /// Cast to numpy array inplace. void toNumpyArrayInplace(float** view_data, int* dim1) throw(UnsupportError); /// Copy to numpy array. void copyToNumpyArray(float** view_m_data, int* dim1); /// Copy from numpy array. void copyFromNumpyArray(float* data, int dim); /// __getitem__ in python float get(const size_t idx) const throw(RangeError, UnsupportError); /// __setitem__ in python void set(const size_t idx, float val) throw(RangeError, UnsupportError); /// Return is GPU vector or not. bool isGpu() const; /// __len__ in python size_t getSize() const; private: VectorPrivate* m; private: friend class Parameter; friend class ParameterOptimizer; friend struct ParameterTraverseCallbackPrivate; }; struct IVectorPrivate; class IVector { IVector(); DISABLE_COPY_AND_ASSIGN(IVector); static IVector* createByPaddleVectorPtr(void* ptr); public: /// Create IVector filled with zero static IVector* createZero(size_t sz, bool useGpu = isUseGpu()); /** * Create IVector from list of int. * It will create a new vector, and copy data into it. */ static IVector* create(const std::vector& data, bool useGpu = isUseGpu()); static IVector* createVectorFromNumpy(int* data, int dim, bool copy = true, bool useGpu = isUseGpu()); /** * Create Cpu IVector from numpy array, which dtype=int32 * * If copy is false, it will create vector inplace */ static IVector* createCpuVectorFromNumpy(int* data, int dim, bool copy = false); /** * Create Gpu IVector from numpy array, which dtype=int32 */ static IVector* createGpuVectorFromNumpy(int* data, int dim); /// Cast to numpy array inplace. void toNumpyArrayInplace(int** view_data, int* dim1) throw(UnsupportError); /// Copy to numpy array. void copyToNumpyArray(int** view_m_data, int* dim1); /// Copy from numpy array. void copyFromNumpyArray(int* data, int dim); virtual ~IVector(); /// Return a list of int, the memory is alloced and copied. IntArray getData() const; /// This method will map to python [] method. int& operator[](const size_t idx) throw(RangeError, UnsupportError); const int& operator[](const size_t idx) const throw(RangeError, UnsupportError); inline int get(const size_t idx) const throw(RangeError, UnsupportError) { return (*this)[idx]; } inline void set(const size_t idx, int val) throw(RangeError, UnsupportError) { (*this)[idx] = val; } /// Return true if it is gpu vector. bool isGpu() const; /// This method will map to python __len__(); size_t getSize() const; private: void* getSharedPtr() const; friend class Arguments; IVectorPrivate* m; }; struct ArgumentsPrivate; /// The Arguments is actual a std::vector in paddle. class Arguments { private: Arguments(); // Internal Create. DISABLE_COPY_AND_ASSIGN(Arguments); public: /** * Create a arguments with size. * Note that it can be zero. */ static Arguments* createArguments(size_t slotNum); void resize(size_t slotNum); virtual ~Arguments(); /** * Return the slot number that aguments contains. * * It is actually the vector's size */ size_t getSlotNum() const; /** * The get functions of Arguments * * the param idx is the slot id */ Matrix* getSlotValue(size_t idx) const throw(RangeError); IVector* getSlotIds(size_t idx) const throw(RangeError); Matrix* getSlotIn(size_t idx) const throw(RangeError); IVector* getSlotSequenceStartPositions(size_t idx) const throw(RangeError); IVector* getSlotSubSequenceStartPositions(size_t idx) const throw(RangeError); IVector* getSlotSequenceDim(size_t idx) const throw(RangeError); // End Of get functions of Arguments int64_t getBatchSize(size_t idx = 0) const throw(RangeError); /** * The set functions of Arguments. * * The param idx is the slot id. * The other param is the input Matrix or vector. */ void setSlotValue(size_t idx, Matrix* mat) throw(RangeError); void setSlotIn(size_t idx, Matrix* mat) throw(RangeError); void setSlotIds(size_t idx, IVector* vec) throw(RangeError); void setSlotSequenceStartPositions(size_t idx, IVector* vec) throw(RangeError); void setSlotSubSequenceStartPositions(size_t idx, IVector* vec) throw(RangeError); void setSlotSequenceDim(size_t idx, IVector* vec) throw(RangeError); private: static Arguments* createByPaddleArgumentVector(void* ptr); void* getInternalArgumentsPtr() const; private: ArgumentsPrivate* m; friend class Trainer; friend class GradientMachine; friend class SequenceGenerator; }; enum GradientMatchineCreateMode { CREATE_MODE_NORMAL = 0, CREATE_MODE_TESTING = 4 }; struct ParameterConfigPrivate; class ParameterConfig { DISABLE_COPY_AND_ASSIGN(ParameterConfig); ParameterConfig(); /** * Internal methods */ static ParameterConfig* createParameterConfigFromParameterSharedPtr( void* ptr); static ParameterConfig* createParameterConfigFromParameterPtr(void* ptr); void* getRawPtr(); public: ~ParameterConfig(); /** * return proto buf string. */ std::string toProtoString() const; private: ParameterConfigPrivate* m; private: friend class Parameter; friend class ParameterOptimizer; friend struct ParameterTraverseCallbackPrivate; }; struct OptimizationConfigPrivate; class OptimizationConfig { DISABLE_COPY_AND_ASSIGN(OptimizationConfig); OptimizationConfig(); public: static OptimizationConfig* createFromProtoString(const std::string& str); ~OptimizationConfig(); /** * return protobuf string. */ std::string toProtoString(); private: OptimizationConfigPrivate* m; friend class TrainerConfig; friend class ParameterOptimizer; friend class Trainer; }; struct ParameterPrivate; class Parameter { private: Parameter(); DISABLE_COPY_AND_ASSIGN(Parameter); public: virtual ~Parameter(); /** * get parameter name */ std::string getName() const; /** * get buf in Parameter */ Vector* getBuf(ParameterType type); /** * get id */ size_t getID() const; ParameterConfig* getConfig(); private: static Parameter* createFromRawPtr(void* ptr); static Parameter* createFromSharedPtr(void* ptr); private: ParameterPrivate* m; friend class UpdateCallbackWrapper; friend class GradientMachine; }; struct ModelConfigPrivate; /** * You can only get model config from TrainerConfig. * * It is used by GradientMachine. */ class ModelConfig { private: ModelConfig(); DISABLE_COPY_AND_ASSIGN(ModelConfig); public: virtual ~ModelConfig(); private: ModelConfigPrivate* m; friend class TrainerConfig; friend struct TrainerConfigPrivate; friend class GradientMachine; }; struct TrainerConfigPrivate; /** * To get TrainerConfig from file. * * It is used by GradientMachine. */ class TrainerConfig { private: TrainerConfig(); DISABLE_COPY_AND_ASSIGN(TrainerConfig); public: virtual ~TrainerConfig(); static TrainerConfig* createFromTrainerConfigFile( const std::string& configPath); static TrainerConfig* createFromProtoString(const std::string& str); ModelConfig* getModelConfig() const; OptimizationConfig* getOptimizationConfig() const; private: TrainerConfigPrivate* m; friend class Trainer; }; /** * The callback in backword. * * You can inherit this class in python. * * @code * class UpdateCallbackInPython(paddle.UpdateCallback): * def __init__(self): * paddle.UpdateCallback.__init__(self) * * def apply(self, param): * assert isinstance(param, paddle.Parameter) * @endcode */ class UpdateCallback { public: virtual ~UpdateCallback(); virtual void apply(Parameter* p); }; struct ParameterTraverseCallbackPrivate; class ParameterTraverseCallback { DISABLE_COPY_AND_ASSIGN(ParameterTraverseCallback); ParameterTraverseCallback(); public: ~ParameterTraverseCallback(); void apply(const std::vector& vecs, const ParameterConfig& config, size_t sparseId); private: ParameterTraverseCallbackPrivate* m; friend class ParameterOptimizer; }; /** * The ParameterOptimizer Wrapper Class. * * Basically same as common/ParameterOptimizer.h */ struct ParameterOptimizerPrivate; class ParameterOptimizer { DISABLE_COPY_AND_ASSIGN(ParameterOptimizer); ParameterOptimizer(); public: static ParameterOptimizer* create(OptimizationConfig* config); ~ParameterOptimizer(); void init(size_t numRows, const ParameterConfig* config); void startPass(); void finishPass(); void startBatch(size_t numSamplesProcessed); void finishBatch(); void update(const std::vector& vecs, const ParameterConfig& conf, size_t sparseId = NO_SPARSE_ID); std::vector getParameterTypes() const; ParameterTraverseCallback* needSpecialTraversal( const ParameterConfig& config) const; private: ParameterOptimizerPrivate* m; }; class SequenceGenerator; struct GradientMachinePrivate; class GradientMachine { private: GradientMachine(); DISABLE_COPY_AND_ASSIGN(GradientMachine); public: virtual ~GradientMachine(); /** * Create By ProtoStr. * * The ProtoStr can be generate by python's protobuf code. */ static GradientMachine* createByConfigProtoStr( const std::string& protoStr, GradientMatchineCreateMode mode = CREATE_MODE_NORMAL, const std::vector& parameterTypes = defaultParamTypes); /** * Create by ModelConfig object. * * To get ModelConfig, you can get TrainerConfig from config file, then get * model config by TrainerConfig */ static GradientMachine* createByModelConfig( ModelConfig* conf, GradientMatchineCreateMode mode = CREATE_MODE_NORMAL, const std::vector& parameterTypes = defaultParamTypes); /** * The forward stage of GradientMachine. * * @note the outArgs could be zero length arguemnts. * @note THIS METHOD IS VERY USEFULL FOR PREDICT FROM TRAINED MODEL. */ void forward(const Arguments& inArgs, Arguments* outArgs, PassType passType); /** * The backward stage of GradientMachine. * * @note Currently the ParameterUpdater is not wrapped in SWIG, so backward * cannot actually train a network. But you can write a update callback to * change the parameter or implement a ParameterUpdater in python side. */ void backward(const UpdateCallback& callback = UpdateCallback()); /** * Combine forward/backward */ void forwardBackward(const Arguments& inArgs, Arguments* outArgs, PassType passType, const UpdateCallback& callback = UpdateCallback()); void loadParameters(const std::string& path); size_t getParameterSize() const; Parameter* getParameter(size_t i) throw(RangeError); void randParameters(); Matrix* getLayerOutput(const std::string& layerName) const throw(UnsupportError); /** * Create a sequence generator. * * @note It just like a paddle_gen_sequence. */ SequenceGenerator* asSequenceGenerator( const std::vector& dict = std::vector(), size_t begin_id = 0UL, size_t end_id = 0UL, size_t max_length = 100UL, size_t beam_size = -1UL); private: GradientMachinePrivate* m; static GradientMachine* createFromPaddleModelPtr( const void* confPtr, GradientMatchineCreateMode mode, const std::vector& types); // Not to use c++ 11 init-list, so we use static var as function default arg. static std::vector defaultParamTypes; friend class Trainer; }; struct TrainerPrivate; class Trainer { private: TrainerPrivate* m; Trainer(); Trainer(TrainerConfig* optConfig, GradientMachine* gm); DISABLE_COPY_AND_ASSIGN(Trainer); public: virtual ~Trainer(); /// Create A Trainer By TrainerConfig. using paddle command line. static Trainer* createByCommandLine() throw(IOError); static Trainer* create(TrainerConfig* optConfig, GradientMachine* gm) throw(IOError); /// Start training void startTrain(); /// Finish training void finishTrain(); /// Start a pass. void startTrainPass(); /// Finish a pass void finishTrainPass(); /** * Train one batch, * * @return true if all batch finished. */ bool trainOneBatch(size_t batchSize); void trainOneDataBatch(size_t batchSize, const Arguments& args); void startTestPeriod(); void testOneDataBatch(size_t batchSize, const Arguments& args); void finishTestPeriod(); void forwardOneBatch(size_t batchSize); Arguments* getForwardOutput(); Matrix* getLayerOutput(const std::string& layerName); }; /// the N-Best results generated from one input sequence. class ISequenceResults { public: virtual ~ISequenceResults(); /// Number of result. virtual size_t getSize() const = 0; /** * Get sentence from dictionary. * * @param id the index of result. * @param split if true, the return sentence will be splited with ' ' by * each word. Default is false. */ virtual std::string getSentence(size_t id, bool split = false) const throw(RangeError) = 0; virtual std::vector getSequence(size_t id) const throw(RangeError) = 0; virtual float getScore(size_t id) const throw(RangeError) = 0; }; struct SequenceGeneratorPrivate; class SequenceGenerator { DISABLE_COPY_AND_ASSIGN(SequenceGenerator); SequenceGenerator(); public: virtual ~SequenceGenerator(); /** * Generate Sequence by input. * * @note The inArgs is just one sequence of data. * @note The return will get a N-best generate result by inArgs. * Sort by score. */ ISequenceResults* generateSequence(const Arguments& inArgs) const; void setDict(const std::vector& dict); void setBos(size_t bos); void setEos(size_t eos); void setMaxLength(size_t maxlength); void setBeamSize(size_t beamSize); private: static SequenceGenerator* createByGradientMachineSharedPtr(void* ptr); friend class GradientMachine; private: SequenceGeneratorPrivate* m; };