jet457

Results 9 comments of jet457

![image](https://user-images.githubusercontent.com/14433384/131277642-db4d408c-f7ca-4212-9e6a-27e99d61446e.png) It looks like Git is not checking the tests, so here is proof that all tests pass.

A simple hack until this is fixed: add a `type` to the argument that strips extra quotes. ```python parser.add_argument("--a_str", choices=["hello", "goodbye"], type=lambda x: x.strip("'")) ```

There is a possibility that paths in windows that end with a backslash could cause issues (since paths in windows use backslashes instead of forward slashes). However, it's hard for...

> @abhmul Can you confirm if this P.R. fixes your issue? Just checked, it worked!

Currently I've hacked my way around this using the following code: ```python new_x_iters = [] for x_iter in res.x_iters: new_x_iter = [] for param, dim in zip(x_iter, space): if isinstance(param,...

For completeness in case we get any answers on Stack Overflow and not here, including this link for completeness: https://stackoverflow.com/questions/73344991/how-to-restart-bayessearchcv-from-a-checkpoint After looking through the code for a bit, my initial...

For those looking for a simple workaround that doesn't require changing any code in tikz blocks already written, you can add a CSS snippet as mentioned [here](https://www.reddit.com/r/ObsidianMD/comments/10w87cs/comment/j7q5z86/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) ```css .markdown-rendered .block-language-tikz...

According to the Developer Console the error seems to come from tikzjax.js at the following code: ```javascript await P().setItem(A.md5hash, r.outerHTML) ``` where it seems that `r` is null. It looks...

I have the same use case. Does anyone know how the latex packages are installed and loaded? This seems like it might just be an easy fix, and I could...