Thibault Vatter

Results 49 comments of Thibault Vatter

I noticed a similar issue. Look at the following result of the formatting: ``` library(keras) input % layer_dense(units = 10, input_shape = 2) output2 % layer_dense(units = 10, input_shape =...

I see. You mean that the indentation algorithm currently can't handle parentheses that are balanced over multiple lines? In both cases, there is a line break because it is often...

Ok, understood, thanks for the explanations.

I've just encountered the same issue after updating my OS (ubuntu). I noticed that the correct llvm was now version 8, and updating `let g:ncm2_pyclang#library_path` fixed it. It wasn't easy...

I would add: 3. Archimedean: - [ ] Ali-Mikhail-Haq 4. Extreme-value - [ ] Husler-Reiss - [ ] Galambos - [ ] t-EV 5. Other parametric families - [ ]...

Hi, Sorry for never answering this, I just notice it now. While we have plans to enable GPU acceleration, it's not going to be released in (at least) a few...

I can deal with homebrew and macports. However, should we wait to have something a bit more "stable"?

There's a similar request for quarto notebooks (#6140), and generally for Python code included in Markdown code blocks (#3792).

```python import matplotlib.pyplot as plt from matplotlib import cm x, y = ( dataset["test_input"][:, 0].detach().cpu().numpy(), dataset["test_input"][:, 1].detach().cpu().numpy(), ) z = dataset["test_label"].detach().cpu().numpy() fig, ax = plt.subplots(subplot_kw={"projection": "3d"}) ax.view_init(elev=30, azim=110, roll=0) surf...