Prasant Chidella

Results 11 comments of Prasant Chidella

Ok I think I know what was happening. My pinned tabs are all gmail inboxes and vimium gets disabled on gmail.

I agree On Wed, Oct 05, 2016 at 12:41am, Alex Miller < [email protected] [[email protected]] > wrote: We are in the midst of the process of (finally) moving core.matrix into the...

I have tried to implement this. I added a block-diagonal-matrix function to matrix.clj file and a PBlockDiagonalMatrix protocol to the protocols.clj file. I am a little confused about the implementation-check...

I have written the default implementation. I am not sure what coerce-param does and if its needed here. The two lines at the end commented out because I didn't know...

This one handles those edge cases, but its recursive. Will that be a problem for larger inputs? ``` clojure (extend-protocol mp/PBlockDiagonalMatrix Object (block-diagonal-matrix [m blocks] (let [aux (fn aux [acc...

The main problem is > As of now, if we use the UpdateWorkspace method in the java sdk to update a workspace (with append = false), auto_learn gets disabled and...

`training_backend_version` was `v2` and `auto_learn` was `{"apply": true}` These are the responses I got from calling Get Workspace API with curl: Before ```json "system_settings": { "off_topic": { "enabled": true },...

If the result is returned as a `CholeskyResult`, why not remove the get methods from Cholesky completely? How about having the `decompose` method in ICholesky interface but not any of...

I mean, - `ICholesky` interface that has a decompose method, and is implemented by CholeskyCommon and CholeskyLDU. - No get methods in `CholeskyCommon` and `CholeskyLDU`. - `CholeskyResult` class that has...

I also removed the setExpectedMaxSize function from CholeskyLDU. Now it just assigns new arrays when the decompose method is called. Take a look, if this is ok, I'll do this...