What you need : Firefox browser and Firebug addon
A simple example:
INSTEAD OF :
function foo() {
if(some condition) {
alert("Status update");
}
}
USE :
function foo() {
if(some condition) {
console.log("Status update");
}
}
function foo() {
if(some condition) {
alert("Status update");
}
}
USE :
function foo() {
if(some condition) {
console.log("Status update");
}
}
Detectron2 + PyTorch CPU ❌ The error $ pip install -q --extra-index-url https://download.pytorch.org/whl/cpu torch torchvision $ pip inst...
No comments:
Post a Comment