Danferno
Danferno
**Describe the bug** When downloading the config.yaml or model_final.pth of a new (to user) model, the program often hangs. **To Reproduce** Steps to reproduce the behavior: 1. What command or...
Is it possible the github repo was reorganised causing the manual installation code to fail? E.g. when downloading the zip package, the installation code that worked for me was ```net...
http://scorreia.com/research/individual_fes.pdf leads to a 404 page for me
You've probably had this question before (although I didn't find it), but are there any plans to make hdfe/reghdfe use more processors simultanously? At the moment it seems limited to...
Example ```sysuse auto /*1*/ reghdfe price, absorb(c.(mpg weight)#foreign) /*2*/ reghdfe price, absorb(c.(mpg weight)##foreign) /*3x*/ reghdfe price, absorb(c.(mpg weight)##foreign#rep78) /*4*/ reghdfe price, absorb(c.(mpg weight)#foreign#rep78 foreign#rep78) ``` Syntax 3 is not allowed,...
I'm not sure what has changed, because I ran this code earlier and it worked, but now I get an error with following syntax (there are five f_stacked* and five...
Apologies if I missed it, but is there a way to exclude unset parameters from the generated response? Similar to [FASTAPI's response_model_exclude_unset](https://fastapi.tiangolo.com/tutorial/response-model/#use-the-response_model_exclude_unset-parameter) parameter? As far as I can tell, it...
It could be worth adding `replace state = subinstr(state, uchar(160), " ", .)` to the [state(string)] version. This replaces the unicode "NO-BREAK SPACE" by a regular one.
The server sent event class ```class ServerSentEvent: data: str event: str | None = None id: int | None = None retry: int | None ... ``` appears to be...
Is there a reason [WholeFileCacheSystem](https://filesystem-spec.readthedocs.io/en/latest/_modules/fsspec/implementations/cached.html#WholeFileCacheFileSystem).ls() does not allow **kwargs such as refresh, whereas SimpleCacheFileSystem does?