This repository was archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy path_parse.js
126 lines (94 loc) · 3.1 KB
/
_parse.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// node 7.x
// built with streams for larger files
const fse = require('fs-extra');
const path = require('path');
const lineReader = require('line-reader');
const Promise = require('bluebird');
const babyparse = require("babyparse");
var eachLine = Promise.promisify(lineReader.eachLine);
function listOfIntents(intents){
return intents.reduce(function (a, d) {
if (a.indexOf(d.intentName) === -1) {
a.push(d.intentName);
}
return a;
}, []);
}
// rewrite each items properties and values
function mapEntity(entities) {
return entities.map(entity => {
// create new properties
entity.entityName = entity.type;
entity.startCharIndex = entity.startIndex;
entity.endCharIndex = entity.endIndex;
// delete old properties
delete entity.startIndex;
delete entity.endIndex;
delete entity.score;
delete entity.entity;
delete entity.type;
return entity;
});
}
// remove 'builtin.' entities
function isNotBuiltin(entity) {
// only custom entities
// don't include builtin types
if (entity.entityName.indexOf('builtin.',0)==-1){
return entity;
}
}
var utterance = function (rowAsString) {
let json = {
"text": "",
"intentName": "",
"entityLabels": {}
};
if (!rowAsString) return json;
// csv to baby parser object
let dataRow = babyparse.parse(rowAsString);
// unwrap baby parser's first row, 2nd column
let utteranceString = dataRow.data[0][2];
try {
// convert stringifyied JSON into real JSON
let item = JSON.parse(utteranceString);
json.intentName = item.intents && item.intents.length > 0 ? item.intents[0].intent : "";
json.text = item.query;
json.entityLabels = item.entities && item.entities.length ? mapEntity(item.entities) : [];
if(json.entityLabels.length>0){
json.entityLabels = json.entityLabels.filter(isNotBuiltin);
}
return json;
} catch (err) {
throw err;
}
};
// main function to call
// read stream line at a time
// conversion happens in precess.convert_utterance_map file
const convert = async (config) => {
try{
var i = 0;
// get inFile stream
inFileStream = await fse.createReadStream(config.inFile, 'utf-8')
// create out file
var myOutFile = await fse.createWriteStream(config.outFile, 'utf-8');
var utterances = [];
// read 1 line
return eachLine(inFileStream, (line) => {
// skip first line with headers
if (i++ == 0) return;
// transform utterance from csv to json
utterances.push(utterance(line));
}).then(() => {
console.log("intents: " + JSON.stringify(listOfIntents(utterances)));
myOutFile.write(JSON.stringify({ "downloaded": new Date().toLocaleString(),"utterances": utterances}));
myOutFile.end();
console.log("parse done");
return config;
});
}catch (err) {
throw err;
}
}
module.exports = convert;