File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
resources/assets/js/annotations Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ export default {
467
467
.then ((onnxModel ) => {
468
468
this .onnxModel = onnxModel;
469
469
})
470
- .catch ((error ) => {
470
+ .catch (() => {
471
471
InferenceSession .create (modelPath, { executionProviders: [' wasm' ] })
472
472
.then ((onnxModel ) => {
473
473
this .onnxModel = onnxModel;
@@ -868,7 +868,6 @@ export default {
868
868
Events .$emit (' annotations.map.init' , this .$refs .canvas .map );
869
869
870
870
// Load the onnx model
871
- console .log (this .onnxModel );
872
871
this .initONNXModel ();
873
872
},
874
873
};
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export default {
60
60
this .labelBOTIsOn = false ;
61
61
this .$emit (' labelbot' , false );
62
62
return ;
63
- };
63
+ }
64
64
65
65
if (this .selectedLabel ) {
66
66
Messages .warning (" LabelBOT can't be activated! Please deselect the selected label!" );
You can’t perform that action at this time.
0 commit comments