1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-24 17:23:23 +03:00
leon/scripts/run-train.js

15 lines
206 B
JavaScript
Raw Normal View History

2019-02-10 15:26:50 +03:00
import log from '@/helpers/log'
import train from './train'
2019-02-10 15:26:50 +03:00
/**
* Execute the training script
*/
(async () => {
try {
await train()
} catch (e) {
log.error(`Failed to train: ${e}`)
}
})()