Ivan Quirino
Ivan Quirino
@jaredpalmer let's say we have `username` and `email` fields. We set our validation schema to ``` yup.object().shape({ email: yup.string().required().email() }} ``` Then we pass a custom validation function as validate...
@zhreshold thanks for answering. 1. Adjusting the bouding boxes is exactly what I was thinking. 2. I've built a custom transform class myself for my custom training script which is...
I have a problem with my traning script on the validation stage, I get somethng like the following output for both VOCApMetric and VOC07ApMetric: CLASS_1=NaN CLASS_2=NaN CLASS_3=NaN CLASS_4=99% CLASS_5=98% CLASS_6=96%...
That's my validation LST file. It contains all classes. [pads.val.txt](https://github.com/dmlc/gluon-cv/files/3273595/pads.val.txt) What's strange is that after training the network can detect correctly every image in the validation set.
Correction: there is one image in the validation set that it wrongly classifies. I think the main problem is in my labeling, every label in classes 3 and 6 relate...
Thumbs up for this. I already use BoofCV and OpenCV together but I have to save and load the image to transfer from one to another because is faster than...
I'm also having this issue, same thing. I'm thinking in setting up an external webpack build to make a separate bundle and load it using an iframe.
> @ivanquirino Does this [guide](https://react-pdf-viewer.dev/examples/how-to-solve-the-syntax-error-unexpected-token-issue/) help you? I'm using NextJS 12, and I get this problem just by doing `import { Viewer, Worker } from '@react-pdf-viewer/core';` The problem appears in...
I am using Next 12.0.10 > @ivanquirino This [settings](https://github.com/react-pdf-viewer/react-pdf-viewer/blob/master/demo/nextjs/next.config.js#L7) might be useful to you. Thanks! Does this disable the SWC compiler?
Next uses SWC for compiling by default from version 12, so the question is if that config is going to disable it and use webpack instead.