teucer
teucer
[codebraid](https://github.com/gpoore/codebraid) is a Python program that enables executable code in Pandoc Markdown documents. It is similar to rmarkdown and claims certain advantages over it. It would be beneficial to support...
If my understanding is correct this is finding the places where there is delimiter and filters for them. How does this help with training? https://github.com/huggingface/pytorch-openai-transformer-lm/blob/253ca422bbf94b19da2a4aa8f1b294e01ab8be37/model_pytorch.py#L207
https://github.com/huggingface/pytorch-openai-transformer-lm/blob/55ba4d78407ae12c7454dc8f3342f476be3dece5/model_pytorch.py#L161
Thank you for the great extension. Could it possible to implement also linting and code formatting (e.g. for python)? I believe one can have a download on open functionality to...
@gpoore I went through the code, please find below some suggestions. My goal is not to criticize at all the time and work that you have dedicated to the project....
It would beneficial to integrate with jupytext and hence jupyter notebooks. Jupyter can indeed become an interactive editor for codebraid. To be able do so a seamless conversion from codebraid...
I believe it could be beneficial to extract a package doing only the followings: 1. Convert myst to ipynb: preserve the parameters of directives 2. Convert ipnyb to myst: -...
I was wondering if [LanguageTool](https://languagetool.org/) could be used instead of spell checking. Users could setup a http server and spellchecker could send requests to the API. The more general question...
Current it is difficult to get parts of the formula and what are the data.frame variables (i.e. the column names). It would be useful to add some facilities to enable...
I think there is a discrepancy in the output of rhs: 1. formula "y~x" -> `rhs = "x+1"` 2. formula "y~x-1" -> `rhs = "x"` 3. formula "y~x+0" -> `rhs...