Advertisement
Guest User

Untitled

a guest
Jan 29th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. template<class T>
  2. class CoreMLConverter
  3. {
  4. public:
  5. typedef T type;
  6.  
  7. virtual void operator()(const T* m, std::shared_ptr<CoreML::Specification::Model>) const = 0;
  8. };
  9. class SVMConverter: public CoreMLConverter<CSVM>
  10. {
  11. public:
  12. virtual void operator()(const CSVM* m, std::shared_ptr<CoreML::Specification::Model>) const;
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement