-
Hi @tombewley, hope you're well! We met at ICML in Vienna this summer and last week I've finally come around to adding T-CREx here to our package (#476). I've focused on merely reproducing the worked example in the paper, so there are some missing pieces still (#473) but the basic implementation is done and documented here. I thought I'd open this thread in the hope that you might be able to lend a second pair of eyes, ensure that everything is done correctly and discuss some questions that have come up along the way. Questions
Regarding Q2 and Q3 I might just be missing something. I might have more questions, when I find an opportunity to dive deeper and come back to #473. If you don't mind, I'll ping you here again. Finally, if you would like to contribute here, you are of course more than welcome, although I understand you probably have lots of other things going on. In any case, very interesting work - thanks for sharing it at ICML. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @pat-alt, it's great to hear from you, and I really appreciate the effort you're making in this implementation! I'm very happy to answer these questions (and any more you have going forward):
Hopefully this clears things up a bit! Let me know if you need more clarification. A small request from me too: could you add the citation for the accepted ICML paper in the References section of your documentation page? The ICML URL is here. |
Beta Was this translation helpful? Give feedback.
Hi @pat-alt, it's great to hear from you, and I really appreciate the effort you're making in this implementation! I'm very happy to answer these questions (and any more you have going forward):
make_moons
from thescikit-learn
Python package. Specifically, we usedmake_moons(n_samples=5000, noise=0.3, random_state=0)
. I'm not sure whether you can call that function identically in Julia, especially as the seeding may behave differently, but you probably know better than me.