ParanoidTire
ParanoidTire t1_j9hdrte wrote
Reply to comment by Mad-Independence in [D] Simple Questions Thread by AutoModerator
Have you tried doing what the message suggested, i.e. checking the logs? Otherwise I would suggest contacting their support directly.
ParanoidTire t1_j9hdc4h wrote
Reply to comment by slickvaguely in [D] Simple Questions Thread by AutoModerator
Yes this is actually commonly done and a. Core ingredient in object detection. Look up faster r-cnn
ParanoidTire t1_j9hd4r5 wrote
Reply to comment by TheGamingPhoenix_000 in [D] Simple Questions Thread by AutoModerator
Welcome to the world of research. You can find all that stuff in so called "papers", i.e. publications. To get started I would suggest to have a look at one of the most influential architectures: resnet. Just Google "resnet paper" and your good to go (too lazy to fetch the citation, but it's by he et al.)
ParanoidTire t1_j9hc4uq wrote
Reply to comment by Mnbvcx0001 in [D] Simple Questions Thread by AutoModerator
My journey started years ago by wanting to understand the DQN paper. Hintons coersera course was a nice start and after that it was just going down the rabbit hole which are citations. It takes a lot of effort in the beginning because every single sentence you read will introduce new topics to you that you never heard before. But after a while these become second nature and you won't spend any second thoughts on them anymore. It just takes preserverance and will imo.
ParanoidTire t1_j9hbd77 wrote
Reply to comment by GaseousOrchid in [D] Simple Questions Thread by AutoModerator
I have years of grievances with io. It's really difficult to have something that is both flexible, performant, and can scale to terabytes of data with complex strucuture. As soon as you leave the nice cv or nlp domain you are on your own. Raw c type arrays loaded manually from disk in a separate Cuda stream can sometimes be really be your best shot.
ParanoidTire t1_j9hatq5 wrote
Reply to comment by Rubberdiver in [D] Simple Questions Thread by AutoModerator
Leave it be? Or put in the effort and learn programming and numeric methods in general, e.g. HMMs. "I'm far from a professional mountain biker but I want to race down this difficult trail"
ParanoidTire t1_j9hdztb wrote
Reply to comment by Khal_Doggo in [D] Simple Questions Thread by AutoModerator
No idea what nmf is, but normalization is usually a critical step for any ML algo. Min max normalization is common, as well as z normalization. If your data needs to be positive, adding the minimum is indeed a way to guarantee this.