-
### Proposed new feature or change:
I would like to be able to generate all permutations of an array; e.g.
```
>>> np.permutations([0, 1, 2])
array([[0, 1, 2],
[0, 2, 1],
[1, 0…
-
I have a list of tuples that I would like to cross-validate over, e.g. `[(1,), (2,), (1,2)]`. Providing this as the value for a key in the search_space parameter dictionary that I pass to `BayesSearch…
-
```
Lots of code in Python, due to the inability to pass references to primitives,
returns tuples instead of simply modifying the value like so:
def top_two(lst):
return lst[0],lst[1]
where in …
-
rasa-version: 1.10.4
python-version: Python 3.6.9
os: ubuntu 18.04
I'm following this tutorial
https://blog.rasa.com/how-to-build-a-voice-assistant-with-open-source-rasa-and-mozilla-tools/
wh…
-
## Expected behavior and actual behavior.
Instead of writing a triplet property, I get the following exception:
```
Warning 6: dataset /Users/egor/Documents/reach-surveying/surveying/gdf.geojso…
egorf updated
5 years ago
-
Currently the typing of `ite` is a mess and inconsistent with magma.
Now before you all go looking at the mess I want you all to consider the following code snippets and tell me which of the followi…
-
> We should use the BOG in the TorchScript forward/backward pattern.
> Rough implementation in #768
The issue here is the tensor-of-tuples in the return type. We currently only support a small n…
-
**Describe the bug**
This is not strictly speaking a bug, but at the moment ```torch.jit.script``` fails on the following
network with
```
RuntimeError:
Module 'LIF' has no attribute 'state_…
-
Hi,
I get this error when I try to connect to a h2 db. It doesn't appear to halt execution though and I can see the connection made, tables created, data inserted and results queried, but the stack…
-
We want to be able to run the sample matching phase in parallel for large sets of samples.
A simple way to do this is to run slices of samples, storing the match results, and then add them back in …