Rachit Singh

Results 34 comments of Rachit Singh

Here's a log from running the baseline: https://gist.github.com/rachtsingh/ff6c22a6dfadb41808e9586f8d905163 And the equivalent without batch normalization: https://gist.github.com/rachtsingh/bdd5712047171f4944c75af01a80af2c So the validation perplexity doesn't fall faster, but training does. In an earlier experiment it...

For anyone stumbling across this in the future, one solution is to add this to your jupyterhub_config.py: ```python from oauthenticator.google import GoogleOAuthenticator class CustomGoogleAuthenticator(GoogleOAuthenticator): def normalize_username(self, username): return username.split('@')[0].lower() c.JupyterHub.authenticator_class...

This would be really helpful to us if anyone is attempting to do it. I can give it a shot as well. > but I don't think this too helpful...

Hmm, I can't see a relation between supporting e.g. a U2 arrays and record types (which are, in my opinion, not very standard practice in the numpy world), but I...

Assuming I'm understanding the case correctly, I very much like the current shadowing default (i.e. "When a package depends on another package it's first located in the workspace locally before...

Ah, I think I was assuming Poetry's specification is a standard. [This spec](https://packaging.python.org/en/latest/specifications/dependency-specifiers/#dependency-specifiers) seems to indicate that it's part of the spec to have a URL-based lookup (though the example...

Maybe to make it more tractable to close this issue, maybe it's worth splitting up into smaller questions? 1. Should Rye workspaces support HTTPS-based project references in `project.dependencies` of `pyproject.toml`?...

Relatedly, I think the script now allows you to specify a particular toolchain but then ignores that command: ``` This script will automatically download and install rye (latest) for you....

I'm also unable to reproduce (note that I already have CUDA 12 installed). Here's the end: ``` Building wheels for collected packages: rye-test Building editable for rye-test (pyproject.toml) ... done...

You should be able to install it if you change that line to: ``` gdal @ git+https://github.com/cgohlke/geospatial-wheels/releases/download/v2024.2.18/GDAL-3.8.4-cp310-cp310-win_amd64.whl#gdal ``` though as Armin mentioned it's not yet supported (this syntax is supported...