ProdigyManlet
ProdigyManlet t1_iw6x6sf wrote
Earlier this year wrote a custom U-Net inspired model for semantic image segmentation in PyTorch. This one I designed to be fully modular so that it's really simple to change the architecture from a config file. Writing the code eloquently took some time, I like the idea of generating blocks of layers to keep the model neat rather than layer by layer (e.g. block includes conv layer, bn, activation, etc.). Probably going to try and do a GAN soon
ProdigyManlet t1_iw6wcls wrote
Reply to comment by cruddybanana1102 in [D] When was the last time you wrote a custom neural net? by cautioushedonist
Yeah so many factors involved and little things that aren't ever mentioned in the paper. Implementing a few models and algorithms from papers made me realise how poorly they're written a lot of the time. Code publishing really is essential for validation
ProdigyManlet t1_iy5xbam wrote
Reply to comment by trutheality in [D] What method is state of the art dimensionality reduction by olmec-akeru
Why's UMAP not good for downstream clustering?