Matthew Danish
Matthew Danish
Seems to be inserting the -I directory in front of found files instead of simply searching in that directory. ``` $ /usr/bin/time camfort units-infer -I mods mods/squarePoly.f90 Inferring units for...
Requested feature at workshop, e.g.: ``` a(i) = b(f(i)) ``` where `f` is a function on `integer`.
Currently we have `BlComment` and `PUComment` AST nodes that store the comment text for whole-line comments, depending on context. However we have not figured out an adequate way to represent...
I am testing a function call of the following form: `y = dbl(dbl(x))` but only the outer dbl is recognised as a function call. The inner one remains interpreted as...
https://github.com/openai/CLIP/blob/a1d071733d7111c9c014f024669f959182114e33/clip/clip.py#L136 Went through this code path when attempting to load my own saved checkpoint, and kept getting an EOF error until I inserted a rewind, `opened_file.seek(0)` before the `torch.load` (linked...
Build-generated files like those ending with .so, .o and .dll should not be in the repository, and should be added to .gitignore to prevent them from being accidentally added.
https://github.com/Spatial-Data-Science-and-GEO-AI-Lab/GreenExp_R/blob/7a52a5d6615088e50a4ba11ee25524cadab8b46d/R/vgvi_from_address.R#L386 This seems to assume that there is a 1:1 inverse proportional correlation between number of 'cores' used for processing and running time. But that is not something you can...
https://github.com/Spatial-Data-Science-and-GEO-AI-Lab/GreenExp_R/blob/7a52a5d6615088e50a4ba11ee25524cadab8b46d/R/green_cover.R#L301 Note that constructing pathnames with string concatenation like this can cause problems on systems that don't use forward slash as directory separator. Although these days that is mostly just...
I am attempting to run the `finetune_onevision.sh` script. I've gotten many things sorted out but I am stumped by the `--pretrain_mm_mlp_adapter` argument. The default value as provided in the script...