I looked at your video a week ago and I think you give really good explanations. Today, I wanted to give another listen to your video and I could hardly find your channel again. I am so glad I found it in the end. You are cool. Congratulations!
@jimscott13925 жыл бұрын
This channel is perhaps the most approachable, best set of instruction on data science and deep learning for beginners that I have found. I can't express how grateful I am for your videos. Thank you.
@theodoretourneux56622 жыл бұрын
amazing! concise, clear and exactly what I was looking for! I wish this was the first video I had watched
@IWNL-KenWuKong5 жыл бұрын
Thank you for going through these documents. Sometimes I don't get these things when reading through them myself and you do a great explanation of what each of methods do and require.
@b.f.skinner43834 жыл бұрын
You're amazing! I've been struggling to learn Keras for ages and this has just made everything so palatable and simple to understand, thank you :)
@prashantpal12482 жыл бұрын
for predictions model.predict_classes is a depreciated function. can someone please tell me what to use instead of it???
@constanceunderberg9102 жыл бұрын
Hey, can you help me with troubles I have regarding tensorflow?
@pgf29404 жыл бұрын
i just want to ask how do you determine how many neurons and input shape you should put
@abeyassefa27756 жыл бұрын
Elegant, precise and concise. Thank you, sir!
@amirsadafi30303 жыл бұрын
This was really outstanding video, Thank you very much.
@rizkikaramadhani97214 жыл бұрын
hi, i just installed the keras in my Jupiter but wen i tried to install the keras.layers, it won't work. does anybody know how to solve this? big thanks!
@DataTalks4 жыл бұрын
These days you'll want to be using tensorflow directly - so install tensorflow and use tf.keras.layers! Hope that helps!
@rizkikaramadhani97214 жыл бұрын
thankyou!
@mtg78482 жыл бұрын
hello, is there a link where these codes are written and the explanations are written?
@DataTalks2 жыл бұрын
Totally! All of the code is here: github.com/knathanieltucker/a-bit-of-deep-learning-and-keras/tree/master/notebooks
@Pippa13513 жыл бұрын
How do you know what dense dimensionality you want?
@DataTalks3 жыл бұрын
I go over a little bit of that here: kzbin.info/www/bejne/moPGaqWopq2pl7c&ab_channel=DataTalks. Ultimately the answer is that it depends - but check the above video for other heuristics
@sagarvyavahare25584 жыл бұрын
Can we use sequential models in keras for offline cursive handwritten recognition system
@DataTalks4 жыл бұрын
You can! You'll probably use an RNN which is a specific layer in keras
@IWNL-KenWuKong5 жыл бұрын
Could you also show how to do one hot encoding? Im getting some errors when passing in multidimensional arrays into the fit function.
@DataTalks5 жыл бұрын
Absolutely! Feel free to check out my video here that goes through feature transformations kzbin.info/www/bejne/d53TpH-ma6t2a5I Or comment some code/email me. I'd be happy to help!
@ImranKhan-fi2sm5 жыл бұрын
Can you please explain Conv1D for sequence prediction problem specially time series prediction.
@DataTalks5 жыл бұрын
Definitely check out my next series Deep Learning Building Blocks for a deep dive in this particular topic. But if you are hankering for an example now, check out this blog article by deepmind: deepmind.com/blog/article/wavenet-generative-model-raw-audio
@robosergTV6 жыл бұрын
reason you are not using the adam optimizer?
@DataTalks6 жыл бұрын
No real reason here. It will depend on your specific problem for which optimizer you choose. Leslie N. Smith has some good work showing when and where you'd use each
@robosergTV6 жыл бұрын
thanks!
@gomorrahproductions10203 жыл бұрын
"ogres onions and deep learning". ahahah i love it man you make this very enjoyable. keep it up
@stackexchange73534 жыл бұрын
Do you happen to have a video on embedding? I'm working with the fake news challenge data set from fakenewschallenge.org. You have headline - article body pairs, which I can't for the life of me figure out how to feed them into tokenizer.fit_on_texts(). I've experimented using a data frame with two columns ['Headlines', 'articleBody'], but word_index returns 3268, which I can't tell if that's right.
@DataTalks4 жыл бұрын
I do! You can check out: kzbin.info/www/bejne/a2LCnp-PosisgM0 or kzbin.info/www/bejne/mJq0koOZpLtrd5Y (the latter is a bit more theoretical while the former is more practical)
@pkl5207 жыл бұрын
big thanks to bring us such great tutorial~!
@pythonnumpytutorials99553 жыл бұрын
Mate , its amazing
@deferler6 жыл бұрын
definitely one of the best tutorial i found on keras
@isleguard7 жыл бұрын
Good Tutorials but having problems deciding which model to use for a state-machine: Sequential or Dense? The inputs are current and previous states as a vector (or not?) and an error description (1-4) for minor, major, critical and failed
@DataTalks7 жыл бұрын
Right. So the answer is both. You should be using a Sequential model certainly. The layers you should be using in the model can be Dense (or they could be a 1D Convolution). Your inputs will be the current and the previous state, and you will use a Softmax activation for output. This will work for Sequences of the same length. If you want to use sequences of varying lengths, you will need to use an LSTM. Feel free to ask any clarifications if need be :)
@louie-57495 жыл бұрын
You rock. But now "a liiiitle bit of deep learning and a whole lotta Keras" will always play in my head when I run ctrl+return on my jupyter notebook.
@IntegralDeLinha3 жыл бұрын
Thanks!! That was useful!
@huannguyentrong12493 жыл бұрын
Nice video, Thank you !
@shinidied1074 жыл бұрын
This video is very helpful! Thank you!
@krishnasashank61164 жыл бұрын
Great Video! Helped a lot! Thanks Pal!
@NattapongPUN7 жыл бұрын
Thanks, How to deploy on cloud platform?
@DataTalks7 жыл бұрын
Great question! I'll be doing an in person talk about doing just that (if you follow me on twitter, @knatetucker, I'll announce that there). Otherwise there is a 50% chance that I'll do a series on the Google Cloud Platform and how to train and host a keras model there (probably in 3 months).
@zahidadeel257 жыл бұрын
very nice notebooks and very good explanation. Thanks.
@anjorobles75042 жыл бұрын
is sequential model is a pre trained model?
@DataTalks2 жыл бұрын
Not necessarily! Sequential is just a way to construct models with keras. They can be pretrained but not necessarily!
@anjorobles75042 жыл бұрын
@@DataTalks thankyou for the clarification
@nickbulitka32135 жыл бұрын
Hi I like videos (keep it up). Just wondering if any of your code is available (say on github)?
@DataTalks5 жыл бұрын
Absolutely! Here is the link: github.com/knathanieltucker/a-bit-of-deep-learning-and-keras/tree/master/notebooks. There are more link goodies in the description too!
@Rohit-nb8nf6 жыл бұрын
Instead of dummy data ,why don't you show with some dataset like reuters data with LSTM or RNN ,,,?
@GeneralTerzX5 жыл бұрын
bc this was taken directly from keras.io and he just went their guide
@FezanRafique5 жыл бұрын
Great tutorial, thanks :)
@imzwaza67848 ай бұрын
thank you sir
@plortopod99084 жыл бұрын
Oh this is that guy from the Minecraft Monday Show
@shawnveltman14826 жыл бұрын
Thanks, fantastic video & series! Regarding the shuffle, you said you couldn't imagine a case where you wouldn't shuffle your values - but for NLP , or sequential data issues (ie predict stock price, predict next purchase for customer based on past purchases, etc), wouldn't you want to preserve the order?
@DataTalks6 жыл бұрын
Great point. So with data that is not sampled independently (like a sentence or time series data) we should be careful how we shuffle (or perhaps not shuffle at all). Many NLP tasks break there dataset up into sentences and treat each sentence as a sample (and in some datasets this does violate the IID assumption for your data). Or for time series applications people sometimes don't shuffle the data at all. But in other instances they will block the data together into groups (of maybe 10 data points) and then feed those into the model as samples. These should be shuffled. So I guess I was a bit too hasty when saying you should shuffle all your datasets :). Great point!
@PatrickBateman124206 жыл бұрын
Not really. In NLP, (e.g. Kaggle Toxic NLP competition) let's say you have 100,000 rows. The first 10,000 rows are labeled 1, the other 90,000 rows are labeled 0. Now you need to reshuffle the rows (not the text) for training. Without doing so, you most likely mess up the train/test split.
@DataTalks6 жыл бұрын
I think Shawn was pointing out that you don't want to shuffle the sentences themselves, ie. intra-sample. But you would certainly want to shuffle the order of the sentences in some NLP applications.
@jrgantunes5 жыл бұрын
Thank you, you are the best
@petergiangrasso55194 жыл бұрын
I was so confused about layers until you compared them to ogres and onions - Now I get it! hahah jk this is a great video thank you