Владимир Латыпов
Владимир Латыпов
Is that correct that there are only `n` inversions generated where `n` is the number of notes in the chord? https://github.com/ozankasikci/rust-music-theory/blob/2e09fa3c2574fd41a41650e4f95023ac9f7e3b20/src/chord/chord.rs#L191 As far as I understand, there should be `n!`...
Apperars not to work now. Probably, the instagramm API has changed..
Why not to use STL-like syntax for initializing pairs of elements? Like this: map example = { {1, 5}, {4, 7} }
Implements #154
There's a code example where values are associated with non-integer indexes: ``` const var scores = [3, 2, 5]! scores[0.5] = 4 print(scores) //[3, 2, 4, 5]! ``` That's cool...
### Summary As far as I understand, although #37 is closed, there are still a couple of improvements on the way of dfs generalization possible… ### Motivation & Details -...
Currently, functions for handling presence of content at subslides (such as `alternatives`, `one-by-one`, etc.) are bounded to subslide indexes from 1, which is a serious problem for composability. For instance,...
Tracking issue for this research direction. На данный момент на графах с количеством вершин $> 40$ сходимость GOLEM деградирует: #69. Методы поиска графов с доступам к градиенту целевой функции, например...
It's a common practice to put short (only essential) docs in `__init__.py` files with general information what is the module responsible for. That seems to be extremely useful for new...
`generate_labeled_graph` is imported in GOLEM library from examples and used for `try_tree_edit_distance` for testing purposes: https://github.com/aimclub/GOLEM/blob/68706bebbf0050c23a2d015821a276ddb6a2ae69/golem/metrics/edit_distance.py#L10 So, `generate_labeled_graph` should be probably moved to the libray itself or this code shoud...