We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b460d80 commit c8b1a38Copy full SHA for c8b1a38
examples/NeuroEvolution-flappy-bird/sketch.js
@@ -3,11 +3,11 @@ let pipes = [];
3
4
function setup() {
5
createCanvas(640, 240);
6
+ ml5.tf.setBackend("cpu");
7
for (let i = 0; i < 200; i++) {
8
birds[i] = new Bird();
9
}
10
pipes.push(new Pipe());
- ml5.tf.setBackend("cpu");
11
12
13
function draw() {
0 commit comments