Dmytro Nesteriuk
Dmytro Nesteriuk
Hello team, I am trying to play with your gem within Rom gems. It looks like this generator creates a request which receives all records from a table and then...
Is there a plan to support [Set](https://ruby-doc.org/stdlib-2.6.5/libdoc/set/rdoc/Set.html)? I am trying to use dry-types in place of Virtus in [Grape](https://github.com/ruby-grape/grape/issues/1347). Currently, Set is supported because Virtus supports it. I am think...
Hello, I saw #1921, but after learning code of the generators, I understood that it would be difficult to implement with the current code base. I don't say it isn't...
There isn't any possibility to understand how good the model works for a particular site. So, we need a command (mix task) which will measure the accuracy of the prediction....
It will be useful for development and production when people want to start from scratch.
We use the confidence threshold to be sure only pages which meet it get prefetched. But, currently we exclude [exists](https://github.com/sirko-io/engine/blob/master/lib/sirko/db/transition.ex#L71), thus, confidence computed for pages aren't accurate. For example, if...
The client will send information about made predictions. The engine should store that info and there should be a simple command which can be called from the command-line in order...
The engine should compute trends for transitions and consider them during prediction (New popular transitions have higher weight than fading transitions).
Currently, the engine works with a certain host, for example: `demo.sirko.io`. But, it should work well for all subdomains within a domain. Even when a user moves between different parts...
Elixir provides a very simple and powerful mechanism to execute code in parallel https://hexdocs.pm/gen_stage/Experimental.Flow.html#content. This library can be used to improve the `Sirko.Session.expire_all_inactive` method.