@raven-js/cortex
Version:
Zero-dependency machine learning, AI, and data processing library for modern JavaScript
19 lines (16 loc) • 562 B
JavaScript
/**
* @author Anonyfox <max@anonyfox.com>
* @license MIT
* @see {@link https://github.com/Anonyfox/ravenjs}
* @see {@link https://ravenjs.dev}
* @see {@link https://anonyfox.com}
*/
/**
* @file Data structures and validation primitives for computational operations.
*
* Exports Matrix class for linear algebra operations and Schema class for
* data structure validation. Used by learning algorithms and application code.
*/
export { Dataset, dataset } from "./dataset.js";
export { Matrix } from "./matrix.js";
export { Schema } from "./schema.js";