Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
shogun/base/init.h
✓ #include <shogun/base/init.h>
Initialize Shogun and create dense features
#include <shogun/base/init.h>
#include <shogun/features/DenseFeatures.h>
int main() {
shogun::init_shogun();
// Example: create dense features
shogun::SGMatrix<float64_t> data(2, 3);
auto features = std::make_shared<shogun::DenseFeatures<float64_t>>(data);
shogun::exit_shogun();
return 0;
}
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.