kwgoodman

Results 7 issues of kwgoodman

The originality server caches each submission as a 2 column numpy array. Using a numpy array limits what we can cache. I propose using a Submission object instead of a...

After PR #28 the KS Test in originality assumes that the predictions are already sorted. So the originality benchmark is now out of date with master.

function original() can be removed. At least it is not used anywhere in the package except in the benchmark. ``` $ grin "original\(" ./benchmark_originality.py: 22 : def check_original(new_submission, other_submissions): 30...

I think a good addition to la would be la.dot() and/or a dot method: lar1.dot(lar2, join='inner', fill=np.nan) where fill is used when the join method ('outer', 'left', 'right') creates new...

wish

Current repr: ``` I[2] lar = la.rand(label=[['r1', '2'], ['c1', 'c2']]) I[3] lar O[3] label_0 r1 2 label_1 c1 c2 x array([[ 0.82931648, 0.62778716], [ 0.27239571, 0.5053495 ]]) ``` Could instead...