Jaclyn Brockschmidt
Jaclyn Brockschmidt
Note that while `rake-nltk` will be successfully installed by falling back on `setup.py install` in pip version 20 and prior, this fallback will be deprecated in version 21. Here's the...
## Possible explanation for wobbling (in your solution) The wobbling effect might be caused by the use of `math.ceil` and evening for `new_size`. This may result in one or both...
Looking at the various `resizer`s in `moviepy/video/fx/resize.py` it looks like they are in fact casting the width and height to `int`s. I'm wondering if the aliasing algorithms can account for...
Same for me. I'm running Ubuntu 18.04. It appears Epic Games changed their marketplace access protocol. The JSON exception is likely the program attempting to parse the blank packet it...
These isn't currently a way to check which words were censored. I'm marking this as a feature request.
@snguyenthanh I think we should, yeah. That will fix the issue for these particular words. We should also display a warning message to let the user know when a words/phrase...
I tried adding "!" to [`ALLOWED_CHARACTERS`](https://github.com/snguyenthanh/better_profanity/blob/a738ec70a3fe4feba3cf3025b9e906b5125cd768/better_profanity/constants.py#L11) and it caused `test_unicode_vietnamese_2` to fail: ``` FAIL: test_unicode_vietnamese_2 (__main__.ProfanityUnicodeTestVietnamese) ---------------------------------------------------------------------- Traceback (most recent call last): File "tests.py", line 176, in test_unicode_vietnamese_2 self.assertEqual(profanity.censor(bad_text), censored_text)...
I am definitely willing to help. For the large unit tests, I was thinking it may be good enough to just include a dozen or so paragraphs (and their censored...
[This link](https://snap.stanford.edu/data/amazon/productGraph/) might be reliable enough for the Amazon reviews dataset I was looking at. We probably want to throw some extra datasets in the mix, though, such as very...
For some context, we made some fairly substantial changes to the underlying data-structure used to compare strings. The changes and their justification are found in pull request #17. The benchmarking...