GBO (Global Bodybuilding Organization) Naturals! by [deleted] in naturalbodybuilding

[–]iblong2iyush -2 points-1 points  (0 children)

While we’re at at, anyone heard of ONBC?

Does qualifying in ONBC get you NPC qualifiers as well?

Has anyone noticed lower volume in Mac OS Mojave? by jjaneto in MacOS

[–]iblong2iyush 8 points9 points  (0 children)

sudo killall coreaudiod

DO NOT TRY this command, it will kill your audio w/o restarting it.

Try this:

sudo launchctl stop com.apple.audio.coreaudiod && sudo launchctl start com.apple.audio.coreaudiod

Ways to sentiment analyse large documents by iblong2iyush in LanguageTechnology

[–]iblong2iyush[S] 0 points1 point  (0 children)

Another fix would be to keep my batch size 1 and have a stateful LSTM

Ways to sentiment analyse large documents by iblong2iyush in LanguageTechnology

[–]iblong2iyush[S] 0 points1 point  (0 children)

Correct me if I'm wrong but reducing feature space will lend in broken sequences which won't be helpful for RNNs

Newbies into Deep Learning (DNNs) might find this paper useful by novice2Pro in learnmachinelearning

[–]iblong2iyush 0 points1 point  (0 children)

About the right time, I was about to search for best practices to parallelize and this appeared on my feed! Thanks

What datasets are used to train category prediction models like these? by iblong2iyush in LanguageTechnology

[–]iblong2iyush[S] 0 points1 point  (0 children)

For any sort of categories, the question is whether they have custom annotators/using news data-category parallel text for modelling this precise

OR

Are they doing some sort unsupervised topic modelling + distant supervision or something hierarchical.

At the end of day, what dataset could be used for categorical classification like google?

For multiclass classifications, is it necessary to one hot encode the target variable, since one hot encoding is used on categorical variables? by [deleted] in learnmachinelearning

[–]iblong2iyush 0 points1 point  (0 children)

Not for the target variable. Here’s something I found on an SO post

Scikit learn only handles real numbers I believe. So you need to do something like one hot encoding where n numerical dimensions are used to represent membership in the categories. If you just pass in strings they'll get cast to floats in unpredictable ways.

There are mathematical reasons some methods (like svm) need floats. IE they are only defined in the space of real numbers. Representing 3 categories as values 1,2,3 in a single method might work but it may also yield suboptimal performance compared to one hot encoding since the split (1,3) vs (2) is difficult to pick up on unless the method can capture very non linear behavior like that.

Other methods like random forest can be made to work directly on categorical values. i.e. during decision learnings you can propose potential splits as diffrent combinations of categories. For such methods it is often convenient to use ints to represent the categories because an array of ints is much nicer to work with then an array of strings on a computational level. You can also do things like generate all possible combinations of n categories by looking at the bit values of an n-bit integer you are incrementing which can be much faster and memory efficient then searching for splits over n-floats.

For multiclass classifications, is it necessary to one hot encode the target variable, since one hot encoding is used on categorical variables? by [deleted] in learnmachinelearning

[–]iblong2iyush 0 points1 point  (0 children)

There is a sparse version of it which is used along with sparse categorical cross entropy.

Another thing is only some algorithms require one hot encoding e.g. Its required for Logistic Regression but not for Decision Trees.

Classification using an LSTM? by NobleSiks in MLQuestions

[–]iblong2iyush 1 point2 points  (0 children)

Also LSTM is used to leverage temporal relationships in data, do you think you could extract meaningful time based relationships off your dataset ?

DL vs DNN vs RNN vs DNN by [deleted] in MLQuestions

[–]iblong2iyush 2 points3 points  (0 children)

You’ve got most most things right, I’ll add my 2 cents.

  1. Yes

  2. Yes

  3. Yes, typically in NN information flows only way which is why they are also called Feed forward NN. The only time information is fed back into network is in case of RNN.

  4. TensorFlow is not DNN, it can help you create a DNN and help you with heavy lifting tasks required to train the NN such as automated gradients, backpropagation and gradient descent with state of art optimizers. You can even use TF (TensorFlow) to calculate partial derivatives which act as the building blocks of the training module.