-
Given the task of flattening an array of arrays into a 1D array, this is the cleanest solution we could come up with:
```chpl
var nestedArr: [1..3] [1..2] int;
var flattenedArr = flat(nestedArr);…
-
Hello!
The following currently errors out:
```
eqx.error_if((), jnp.array(False), "Errors?")
```
with the error:
```
.venv/lib/python3.11/site-packages/equinox/_errors.py:229: in error_if
…
-
_tl;dr — Scenes with many (1M+) meshes/nodes/accessors cause higher than expected memory cost and potential OOM_
While investigating a [recent question](https://blender.stackexchange.com/q/325519/4…
-
Here's a problem: We want Pyret's arrays to be the same kind of arrays as those on the rest of the page.
We don't want to enforce a wrapping/unwrapping step at the Pyret boundary; we've tried this …
-
If I try to run `[ 1, 2, [ 3, 4 ] ].flat()`, I get `JSException: TypeError: [1, 2, [3, 4]].flat is not a function`.
[flat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_O…
-
**Problem**
Step input has multiple inbound connections from previous steps. Some of the previous steps are scattered and output nested arrays (because the tool outputs an array). This step input exp…
-
### Description
I have 1100 shards of 3 Gbytes of data each that I read with read_text. I cannot find any way to process them with ray.data.
I consistently get these errors:
```
pyarrow.lib.…
-
Dear spring-data-mongodb maintenance team,
I am having trouble with the projection of fields in nested lists with spring-data-mongodb.
Given the following minimal example mongoDB:
```
db.nestedL…
-
Hi!
Most MongoDB documents are not flat, you have embedded documents, arrays and arrays of documents, so it would be nice if this SolrMongoImporter will allow you to select fields from subdocuments, …
-
## Describe the bug
As my datapoints are empirical distributions I want to use the Wasserstein distance as a loss function over a batch of shape `(n_batch, n_points, dimension)`. Standard way to make…