Arjun Menon
Arjun Menon
Hi I am getting a no method error for `layout` ```ruby Error in line 0 | 2018-10-17 13:22:11 +0530 undefined method `layout' for (Shoes::Types::App "Shoes") cassowary.rb:86:in `method_missing' cassowary.rb:86:in `block (2...
I have moved on to okhttp
Hey @floatinghotpot Will there be any updates on this?
Hey Its a bit tricky to extract elements. Suppose if I need the **first column** and do, `a[true, 0]`, it would return ```ruby => Numo::Int32(view)#shape=[3] [1, 4, 7] ``` It...
Hey Is there a sampling from [binomial distribution](https://docs.scipy.org/doc/numpy/reference/generated/numpy.random.binomial.html) like so ```python np.random.binomial([np.ones((5,10))], 1-0.5)[0] * (1.0/(1-0.5)) ``` ```python array([[ 0., 2., 2., 0., 0., 0., 2., 2., 2., 0.], [ 0.,...
Hey Thanks for that heads up. This morning I found this [gem](https://github.com/croupiers/croupier-rb). After defining an **`arr`** of dimension 5 and 10 filled with a random binomial number, I do this...
I have to say I am really thank you for your awesome support since opening this ticket.
I have a bit array _(which were a result of `s = (syn>0)` and `p = (prev>0)`)_ ```Ruby irb(main):152:0> s => Numo::Bit#shape=[38,20] [[0, 1, 1, 0, 1, 0, 1, 1,...
Any updates over this? I was able to understand and implement [RNNs in Ruby](https://github.com/arjunmenon/Ruby-RNN) with the help of your guide. Would be nice to learn more about LSTMs and other...
@abenassi I did this, I get this error ```python >>> import imp >>> google = imp.load_source('google', '/home/arjun/.local/lib/python2.7/site-packages/google/__init__.py') >>> num_page = 3 >>> search_results = google.search("This is my query", num_page) Traceback...