Week 12: Dedup & Documentation (& Examples)

This week focused on finishing up documentation, a little bit of cleanup and one final task of implementation that would be helpful. DISTINCT The SELECT DISTINCT clause currently uses a DEDUP(x,ALL), which is notoriously slow for large tasks. Instead an alternative clause was suggested TABLE(x,{<cols>},<cols>,MERGE); //eg. for a t1 table with c1 and c2 TABLE(t1,{t1},c1,c2,MERGE); …

Week 11: Machine Learning Methods and Final Presentation

This week, was adding some more Machine Learning Methods, and a final Presentation for the work I’ve done through this period! Adding More Machine Learning Support A set of other A set of other training methods were also added. GLM was decided to be split into some of its more commonly used components. This expands …

Week 10: Train and Predict

This week’s focus was more on getting train and predict working, the last two remaining statements. There were also some minor bugfixes. Declarations Declarations are used on the .dhsql files that we’ve worked on in the past. They’re a really nice candidate for adding in a way for bundles to indicate their train methods. However …