Nikita Sokolov
Nikita Sokolov
Continuing https://github.com/apotonick/disposable/issues/65. Here is what I would like to achieve with this change - https://github.com/bolshakov/activeadmin-reform/compare/master...faucct:master.
Hello, this method is useful when constructing a default record for button at `has_many` form, because it does not append the record to base form collection. When constructing a nested...
``` ruby require 'disposable' class A < Disposable::Twin class Sub < self end property :foo end A::Sub.definitions # => {} class B < Disposable::Twin property :foo class Sub < self...
**Is your feature request related to a problem? Please describe.** It is a sketch of an idea of an alternative persistence approach to for the same problem the Temporal is...
Hello, people have had trouble searching by hstore columns, so I have split the serialization of column to sql into two separate classes, so you could pass your own column...
I have adapted the code from https://github.com/tensorflow/tensor2tensor/blob/d8338effc13b27f9747dc180359d7f983f9c2526/tensor2tensor/layers/common_attention.py#L613. The only difference is that I had to replace`tf.pad` with `K.concat((prepad_zeros, signal, postpad_zeros))`.
> if the neighbor is not already present in the new adjacency list of u Traversing through adjacency list could take N operations if the adjacency list is full. It...
Your E_π adjacency lists: 1: 2, 4 2: 5 4: 3 It will be produced by running BFS on G with this adjacency lists: 1: 2, 4 2: 5, 3...
### What changes were proposed in this pull request? Making the usage more flexible by migrating it to a trait. ### Why are the changes needed? I want to implement...