Re: mir-stat

2020-10-11 Thread tastyminerals via Digitalmars-d-announce
On Thursday, 8 October 2020 at 16:40:01 UTC, 9il wrote: It is a pleasure to announce the Dlang Statistical Package by John Michael Hall. [...] Awesome! Are there any plans to add functions for inferential stats?

Re: tsv-utils 2.0 release: Named field support

2020-08-02 Thread tastyminerals via Digitalmars-d-announce
On Sunday, 26 July 2020 at 20:28:56 UTC, Jon Degenhardt wrote: Hi all, I'm happy to announce a new major release of eBay's TSV Utilities. The 2.0 release supports named field selection in all of the tools, a significant usability enhancement. [...] Really nice to see the update! tsv-utils

Re: Dlang: The Complete D programming Language Course

2020-07-23 Thread tastyminerals via Digitalmars-d-announce
On Thursday, 23 July 2020 at 18:03:10 UTC, aberba wrote: On Thursday, 23 July 2020 at 15:24:09 UTC, bachmeier wrote: On Thursday, 23 July 2020 at 01:13:25 UTC, aberba wrote: Found this introductory course from Udemy on D Complete introduction to programming in D. Learn by doing assignments

Re: Origins of the D Programming Language now published by ACM!

2020-06-18 Thread tastyminerals via Digitalmars-d-announce
On Saturday, 13 June 2020 at 03:16:05 UTC, Walter Bright wrote: https://dl.acm.org/doi/abs/10.1145/3386323 Many, many thanks to Mike Parker and Andrei Alexandrescu for their endless hours spent fixing the mess I originally wrote. Thank you. Printed and started reading today before work. A

Re: Pretty-printing D arrays with Mir

2020-06-11 Thread tastyminerals via Digitalmars-d-announce
On Sunday, 31 May 2020 at 22:40:09 UTC, tastyminerals wrote: I often print arrays to see how they look and their contents. NumPy has a nice way of pretty-printing the arrays, and I was lacking this in D. For the sake of practice, I wrote a small package. It uses mir.ndslice but works for both

Re: Pretty-printing D arrays with Mir

2020-06-11 Thread tastyminerals via Digitalmars-d-announce
On Monday, 1 June 2020 at 21:25:02 UTC, jmh530 wrote: On Monday, 1 June 2020 at 19:51:34 UTC, tastyminerals wrote: [...] Yeah, mir is kind of bare bones for some stuff. I had meant to include the link before https://github.com/libmir/numir/pull/10 If you look at some of the unittests you can

Re: This Right In: PLDI 2020 will take place online and registration is FREE. Closes on Jun 5, so hurry!

2020-06-05 Thread tastyminerals via Digitalmars-d-announce
On Thursday, 4 June 2020 at 12:46:51 UTC, Andrei Alexandrescu wrote: PLDI (Programming Language Design and Implementation) is a top academic conference. This year PLDI will be held online and registration is free. This is an amazing treat. https://conf.researchr.org/home/pldi-2020 Workshops

Re: Pretty-printing D arrays with Mir

2020-06-02 Thread tastyminerals via Digitalmars-d-announce
On Sunday, 31 May 2020 at 22:40:09 UTC, tastyminerals wrote: I often print arrays to see how they look and their contents. NumPy has a nice way of pretty-printing the arrays, and I was lacking this in D. For the sake of practice, I wrote a small package. It uses mir.ndslice but works for both

Re: Tensorflow wrapper for D

2020-06-01 Thread tastyminerals via Digitalmars-d-announce
On Monday, 1 June 2020 at 20:04:01 UTC, tastyminerals wrote: On Sunday, 31 May 2020 at 14:43:46 UTC, 9il wrote: by Shigeki Karita https://github.com/ShigekiKarita/tfd Nice to see changes in DL domain for D. I wonder what happened to https://github.com/ShigekiKarita/grain, looks dormant

Re: Tensorflow wrapper for D

2020-06-01 Thread tastyminerals via Digitalmars-d-announce
On Sunday, 31 May 2020 at 14:43:46 UTC, 9il wrote: by Shigeki Karita https://github.com/ShigekiKarita/tfd Nice to see changes in DL domain for D. I wonder what happened to https://github.com/ShigekiKarita/grain, looks dormant now. Also, looks like tfd needs a lot of work too with autograd

Re: Pretty-printing D arrays with Mir

2020-06-01 Thread tastyminerals via Digitalmars-d-announce
On Sunday, 31 May 2020 at 23:10:44 UTC, jmh530 wrote: On Sunday, 31 May 2020 at 22:40:09 UTC, tastyminerals wrote: I often print arrays to see how they look and their contents. NumPy has a nice way of pretty-printing the arrays, and I was lacking this in D. For the sake of practice, I wrote a

Pretty-printing D arrays with Mir

2020-05-31 Thread tastyminerals via Digitalmars-d-announce
I often print arrays to see how they look and their contents. NumPy has a nice way of pretty-printing the arrays, and I was lacking this in D. For the sake of practice, I wrote a small package. It uses mir.ndslice but works for both standard D arrays and Mir Slices. import pretty_array;