UNPKG

@raven-js/cortex

Version:

Zero-dependency machine learning, AI, and data processing library for modern JavaScript

20 lines (17 loc) 645 B
/** * @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 Machine learning algorithms using platform-native JavaScript implementations. * * Exports neural networks, linear regression, and base model classes for classification * and regression tasks. All models support serialization and incremental training. */ export { LinearRegression } from "./linear-regression.js"; export { Model } from "./model.js"; export { NeuralNetwork } from "./neural-network.js"; export { Tfidf } from "./tfidf.js";