watercolour-env / fixtures /cheat_external_image.js
sergiopaniego's picture
sergiopaniego HF Staff
Canonical env: reward weights from the environment, pool from the pinned dataset
2ac71c7 verified
Raw
History Blame Contribute Delete
204 Bytes
let img;
function setup(){ createCanvas(600,600,WEBGL); background("#fff");
img = loadImage("https://upload.wikimedia.org/watercolour.png"); }
function draw(){ image(img,-300,-300,600,600); noLoop(); }