StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
535 B
14 lines
535 B
4 years ago
|
import interact from '@interactjs/interact/index';
|
||
|
import * as modifiers from '@interactjs/modifiers/index';
|
||
|
import '@interactjs/types/index';
|
||
|
import * as snappers from '@interactjs/utils/snappers/index';
|
||
|
declare module '@interactjs/interact/interact' {
|
||
|
interface InteractStatic {
|
||
|
modifiers: typeof modifiers;
|
||
|
snappers: typeof snappers;
|
||
|
createSnapGrid: typeof snappers.grid;
|
||
|
}
|
||
|
}
|
||
|
export declare function init(win: Window): import("@interactjs/interact/interact").InteractStatic;
|
||
|
export default interact;
|