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
575 B
20 lines
575 B
4 years ago
|
export interface rcConfigLoaderOption {
|
||
|
packageJSON?: boolean | {
|
||
|
fieldName: string;
|
||
|
};
|
||
|
configFileName?: string;
|
||
|
defaultExtension?: string | string[];
|
||
|
cwd?: string;
|
||
|
}
|
||
|
/**
|
||
|
* Find and load rcfile, return { config, filePath }
|
||
|
* If not found any rcfile, throw an Error.
|
||
|
* @param {string} pkgName
|
||
|
* @param {rcConfigLoaderOption} [opts]
|
||
|
* @returns {{ config: Object, filePath:string } | undefined}
|
||
|
*/
|
||
|
export declare function rcFile<R extends {}>(pkgName: string, opts?: rcConfigLoaderOption): {
|
||
|
config: R;
|
||
|
filePath: string;
|
||
|
} | undefined;
|