Sylvain Lesage
Sylvain Lesage
Related to #73
Two possible implementations as discussed on https://d3js.zulipchat.com/#narrow/stream/273725-D3/topic/d3-scale ``` isFinite(t) ? a * (1 - t) + b * t : (b - a) * t + a ``` and ```...
I found the case while wanting to transform a domain extent (that accepts -Infinity and Infinity as valid) to a range extent, something like: ```js [-Infinity, Infinity].map(d3.scaleLinear()) ``` and I...
For the record, another possible implementation by Jacob Rus: ```js lerp = (a, b, t) => { var y = a * (1 - t) + b * t; return...
It seems like the list of splits could not be obtained: ```python >>> from datasets import get_dataset_split_names >>> get_dataset_split_names("shamikbose89/lancaster_newsbooks", "default") Using custom data configuration default Traceback (most recent call last):...
OK, it's working now. https://huggingface.co/datasets/wmt16/viewer/ro-en/test
OK. Closing as it's not an error. We will work on making the error message a lot clearer.
For whom is looking for how to add a title, see the `caption` option: https://github.com/observablehq/plot/pull/320 / https://github.com/observablehq/plot#layout-options [edit] as mentioned by [ericemc3](https://github.com/observablehq/plot/issues/92#issuecomment-906276595), it's not necessarily a perfect solution, but at...
The error is now: ``` Status code: 400 Exception: Status400Error Message: this dataset is not supported for now. ``` We've disabled the dataset viewer for several big datasets like this...
The list of splits cannot be obtained. cc @huggingface/datasets