Thomas Dybdahl Ahle

Results 127 comments of Thomas Dybdahl Ahle

I haven't run all the algos, but I do think the logit plot makes things easier to read: ![glove-100-angular](https://user-images.githubusercontent.com/946355/104250962-02cca080-546f-11eb-9698-16b52cd32a8a.png) In particular, I think for a plot like http://ann-benchmarks.com/glove-25-angular_10_angular.html that is...

It turns out to be [pretty easy in matplotlib 3.3](https://mpltest2.readthedocs.io/en/stable/users/next_whats_new/2018-11-25-JMK.html) - and upgrading doesn't break anything in ann-benchmarks. alpha = 3 ax.set_xscale('function', functions=( (lambda x: 1-(1-x)**(1/alpha)), (lambda x: 1-(1-x)**alpha))) This...

This is the standard linear scale for comparison. ![glove-100-angular](https://user-images.githubusercontent.com/946355/104518323-ddb76980-55f7-11eb-9859-9c4196a153e2.png)

This is alpha=2. With minor grid lines: ![glove-100-angular-logit](https://user-images.githubusercontent.com/946355/104589321-f7919480-5669-11eb-8bb5-4623ebbe1114.png) With evenly spaced major gridlines: ![glove-100-angular-logit](https://user-images.githubusercontent.com/946355/104589250-daf55c80-5669-11eb-8244-cbf246c7c41c.png) (not sure the minor gridlines make sense here, since you can't guess what values they represent.)...

Hi Martin, I get `fatal error: Unable to locate credentials`.

It somehow doesn't find those files. It seems to be because they don't have the suffix hdf5. Maybe my ann-benchmarks version is too new? E.g. in the `glove-100-angular.zip` zip file...

Alright, here you go. Certainly a bit more uniform in terms of where "the action" is in the plot. If you upload the data, I can test glove-25 too, on...

Alright, here is alpha 3, 2, 1 (same as linear) and logit for glove-25. ![glove-25-angular_a3](https://user-images.githubusercontent.com/946355/104755311-8e3d7e80-575a-11eb-848c-d324ff1b5063.png) ![glove-25-angular_a2](https://user-images.githubusercontent.com/946355/104755317-909fd880-575a-11eb-9f95-aaf646a2946f.png) ![glove-25-angular_alpha=1](https://user-images.githubusercontent.com/946355/104755319-91386f00-575a-11eb-80c3-9e3350b1ba12.png) ![glove-25-angular_logit](https://user-images.githubusercontent.com/946355/104755321-91d10580-575a-11eb-9db4-b2b451bc1503.png) The plots make it clear that there is a lot of difference...

I also tried doing alpha=4 with axis labels looking more like the logit plot: ![glove-25-angular](https://user-images.githubusercontent.com/946355/104757735-b9759d00-575d-11eb-8c86-e80c73c2b9d5.png)

Hi Felix, I'm indeed interested in individual gradient l2 norms. If I can't get them on all my parameters, that's fine. But it would be nice if the normal _non...