xxxxxxxxxx
34
// If your input.txt file is > 15 MB, Web Editor might
// not allow it. In this case you need download and run
// this sketch locally.
let lines;
function preload() {
lines = loadStrings("input.txt");
}
function setup() {
createCanvas(400, 400);
let out = [];
let curLine = 0;
// at least 100 lines
while (curLine < lines.length) {
let len = min(25, lines.length-curLine);
let str = '';
for (let i=curLine; i < curLine+len; i++) {
str += lines[i].trim() + ' ';
}
out.push(JSON.stringify({ text: str }));
curLine += len;
}
saveStrings(out, "dataset", "jsonl");
}
function draw() {
background(220);
}