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.
20 lines
642 B
20 lines
642 B
module.exports = {
|
|
adjoint: require('./adjoint')
|
|
, clone: require('./clone')
|
|
, copy: require('./copy')
|
|
, create: require('./create')
|
|
, determinant: require('./determinant')
|
|
, frob: require('./frob')
|
|
, fromMat2: require('./from-mat2')
|
|
, fromMat4: require('./from-mat4')
|
|
, fromQuat: require('./from-quat')
|
|
, identity: require('./identity')
|
|
, invert: require('./invert')
|
|
, multiply: require('./multiply')
|
|
, normalFromMat4: require('./normal-from-mat4')
|
|
, rotate: require('./rotate')
|
|
, scale: require('./scale')
|
|
, str: require('./str')
|
|
, translate: require('./translate')
|
|
, transpose: require('./transpose')
|
|
}
|
|
|