Andrew Chen Wang
Andrew Chen Wang
Or we can simply rewrite: https://github.com/notAI-tech/NudeNet/blob/7b69fe1ea593731b9d544ad2f9dbcd8fcd3de54c/nudenet/video_utils.py#L65-L76 Specifically line 76 where we're actually "reading the video", we can instead rewrite `detect_video` to just process frame by frame. We could store the...
Was the classification model updated to use that 160,000 autolabeled images btw?
Memory spike. It happens at `get_interest_frames_from_video`, and I'll assume it also happens at `load_images`: ``` Line # Mem usage Increment Occurences Line Contents ============================================================ 9 80.0 MiB 80.0 MiB 1...
> Feel free to submit a PR for these if you have the time. For sure. Definitely something on my TODO list; hopefully I can find the time to work...
Very late to comment, but take a look at this comment: https://github.com/SortableJS/Sortable/issues/1979#issuecomment-757687788 So if you take a look at the source code for nested lists: https://github.com/SortableJS/Sortable/blob/0656d6245f222c4dc26cd08777d7bd04b7699c29/index.html#L312-L318 we can classify list...
ping @ellmetha Perhaps just adding a reCAPTCHA field? I haven't taken a look at the forms (since I'm just taking a look at this); is there a way we can...
You should take that confirmation object, write `confirmation.email_address` which is a django-allauth EmailAddress model object, then get the user (i.e. your User model). All in all, just do `confirmation.email_address.user`. Finally,...
@adsee42 I think I can guess what happened in both scenarios, but next time, do you mind posting full stack trace or at least showing the line that these attribute...
Does the problem still occur on master branch? I suspect you're not disconnecting the connection pool (on master, it should be auto disconnecting when you call Redis.disconnect)
@abrookins @alecov I found this full thread to be very helpful learning why `create_task` does this: https://stackoverflow.com/a/62529343 TL;DR in your event loop, imo adding `await asyncio.sleep(0.01)` or `await asyncio.create_task(coro)` will...