Ben Thompson

Results 101 comments of Ben Thompson

This is partially related to https://github.com/trufflesecurity/trufflehog/issues/716 The password format for a pypirc file would be caught by that generic scanner: ``` [distutils] index-servers = pypi testpypi [pypi] username = ......

Perhaps this could at least be an optional feature? I ran a test repository with five known secrets against both trufflehog and git-leaks. git-leaks found all five (along with three...

I ran into this same issue today with `ipykernel==6.20.2`.

Before I found this issue, I didn't @glerzing was working on #317 so I was planning to report separately. Anyway, despite progress, I thought I'd share a demo where I...

Wow, that's fascinating about the giant attention scores!! I'm seeing big differences in both `bfloat16` and `float16` between Huggingface and TL on Pythia 410M. I was suspicious that the TL...

I just re-ran the test above with TL 1.5.0 and I'm getting much better results but there are still noticeable discrepancies from the HF implementation: ``` TL, float32 top_token=' to'...

In case it's useful to anyone, I was able to do this with this snippet: ``` gh actions-cache list --limit 100 | tail -n +5 | awk '{print $1}' |...

Here's a different variant that uses the signature of the auto-generated dataclass `__init__` to define the typer CLI: ```python def dataclass_cli(func): """ Converts a function taking a dataclass as its...

> Is it worth adding a setting for cppimport that enables / disables the file lock for multiprocessing build support? Yes! Thanks for raising this issue. It makes complete sense....

> Sounds great! I'll put a PR together that, at a minimum, adds a setting 'use_file_lock' with a default of True, but when False runs the build without the lock...