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.
11 lines
475 B
11 lines
475 B
/* eslint-disable */
|
|
'use strict';
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const script = fs.readFileSync(path.join(__dirname, '../debug/access_token.js'), 'utf-8')
|
|
.replace('process.env.MapboxAccessToken',
|
|
JSON.stringify(process.env.MapboxAccessToken))
|
|
.replace('process.env.MAPBOX_ACCESS_TOKEN',
|
|
JSON.stringify(process.env.MAPBOX_ACCESS_TOKEN));
|
|
|
|
fs.writeFileSync(path.join(__dirname, '../debug/access_token_generated.js'), script);
|
|
|