#ifndef __COMMON_SESSION_H__ #define __COMMON_SESSION_H__ #include namespace ai { class Tensor { public: virtual ~Tensor() {} }; class Session { public: virtual ~Session() {} virtual const std::map> &getInputShapes() const = 0; virtual const std::map> &getOutputShapes() const = 0; }; } #endif