sarahciston commited on
Commit
5599fc0
·
verified ·
1 Parent(s): e37c55c

insert html text from output list

Browse files
Files changed (1) hide show
  1. index.js +4 -4
index.js CHANGED
@@ -6,7 +6,7 @@ import { pipeline, env } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers
6
  env.allowLocalModels = false;
7
 
8
  // GLOBAL VARIABLES
9
- let PROMPT_INPUT = `Happy people don't [MASK]` // a field for writing or changing a text value
10
  let OUTPUT_LIST = [] // a blank array to store the results from the model
11
  let pField
12
 
@@ -101,9 +101,9 @@ new p5(function (p5){
101
  console.log(outs)
102
 
103
  // text = str(outs)
104
- // let outHeader = p5.createElement('h3',"Results")
105
- // let outText = p5.createP('')
106
- // await outText.html(text)
107
  }
108
 
109
  // async function makeOutputDisplay(){
 
6
  env.allowLocalModels = false;
7
 
8
  // GLOBAL VARIABLES
9
+ let PROMPT_INPUT = `Happy people don't go [MASK].` // a field for writing or changing a text value
10
  let OUTPUT_LIST = [] // a blank array to store the results from the model
11
  let pField
12
 
 
101
  console.log(outs)
102
 
103
  // text = str(outs)
104
+ let outHeader = p5.createElement('h3',"Results")
105
+ let outText = p5.createP('')
106
+ await outText.html(outs)
107
  }
108
 
109
  // async function makeOutputDisplay(){