David Gilbertson
David Gilbertson
@thomkeh agreed, fixed.
This is an issue in the `1.2.0` version also. Just ran `poetry self update` and now get this error: ``` File "C:\Users\david\AppData\Roaming\Python\Scripts\poetry.exe\__main__.py", line 4, in ImportError: cannot import name 'main'...
@neersighted I installed Poetry with: ```ps (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py - ``` This was just last week I think so would have been 1.1.15. One funky thing I...
No problem. Maybe an API something like this: Run `jupyter lab`, find invalid options, show message: "Invalid options were found, run `jupyter lab --clear-bad-options` to remove invalid options. Or, do...
@pfmoore thanks for the code snippet. I have made a variant that directly looks for the `REQUESTED` flag. E.g. so if you install numpy, then install something else that requires...
@uranusjr noted, but that would return `True` if the file doesn't exist. What about this: ```py def requested(dist): try: return dist.read_text("REQUESTED") is not None except OSError: return False ```
This is still an issue in `0.13.2`. To reproduce: ```py from tokenizers import Tokenizer, models, trainers bpe_model = models.BPE(unk_token="[UNK]") tokenizer = Tokenizer(model=bpe_model) tokenizer.train_from_iterator( iterator=["test~ing lick~ing kick~ing"], trainer=trainers.BpeTrainer(), ) path =...
Some things appear to be missing from the docs. E.g. `torchvision.models.detection.backbone_utils`. I second @ain-soph 's comment that it's nice when docs mimic the structure of the actual package, presumably this...
That sounds like a great first task. Maybe on the page you see when you click the menu icon there could be a section there to add notes for each...
Note this case where it messes up the comments (this example copied from the [Python docs](https://docs.python.org/3/reference/lexical_analysis.html#string-literal-concatenation)) Original: ```py import re re.compile( "[A-Za-z_]" # letter or underscore "[A-Za-z0-9_]*" # letter, digit...