Sequential Model - Keras

  Рет қаралды 82,018

Data Talks

Data Talks

Күн бұрын

Пікірлер: 66
@carmenfieruta4578
@carmenfieruta4578 4 жыл бұрын
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!
@jimscott1392
@jimscott1392 5 жыл бұрын
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.
@theodoretourneux5662
@theodoretourneux5662 2 жыл бұрын
amazing! concise, clear and exactly what I was looking for! I wish this was the first video I had watched
@IWNL-KenWuKong
@IWNL-KenWuKong 5 жыл бұрын
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.skinner4383
@b.f.skinner4383 4 жыл бұрын
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 :)
@prashantpal1248
@prashantpal1248 2 жыл бұрын
for predictions model.predict_classes is a depreciated function. can someone please tell me what to use instead of it???
@constanceunderberg910
@constanceunderberg910 2 жыл бұрын
Hey, can you help me with troubles I have regarding tensorflow?
@pgf2940
@pgf2940 4 жыл бұрын
i just want to ask how do you determine how many neurons and input shape you should put
@abeyassefa2775
@abeyassefa2775 6 жыл бұрын
Elegant, precise and concise. Thank you, sir!
@amirsadafi3030
@amirsadafi3030 3 жыл бұрын
This was really outstanding video, Thank you very much.
@rizkikaramadhani9721
@rizkikaramadhani9721 4 жыл бұрын
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!
@DataTalks
@DataTalks 4 жыл бұрын
These days you'll want to be using tensorflow directly - so install tensorflow and use tf.keras.layers! Hope that helps!
@rizkikaramadhani9721
@rizkikaramadhani9721 4 жыл бұрын
thankyou!
@mtg7848
@mtg7848 2 жыл бұрын
hello, is there a link where these codes are written and the explanations are written?
@DataTalks
@DataTalks 2 жыл бұрын
Totally! All of the code is here: github.com/knathanieltucker/a-bit-of-deep-learning-and-keras/tree/master/notebooks
@Pippa1351
@Pippa1351 3 жыл бұрын
How do you know what dense dimensionality you want?
@DataTalks
@DataTalks 3 жыл бұрын
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
@sagarvyavahare2558
@sagarvyavahare2558 4 жыл бұрын
Can we use sequential models in keras for offline cursive handwritten recognition system
@DataTalks
@DataTalks 4 жыл бұрын
You can! You'll probably use an RNN which is a specific layer in keras
@IWNL-KenWuKong
@IWNL-KenWuKong 5 жыл бұрын
Could you also show how to do one hot encoding? Im getting some errors when passing in multidimensional arrays into the fit function.
@DataTalks
@DataTalks 5 жыл бұрын
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-fi2sm
@ImranKhan-fi2sm 5 жыл бұрын
Can you please explain Conv1D for sequence prediction problem specially time series prediction.
@DataTalks
@DataTalks 5 жыл бұрын
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
@robosergTV
@robosergTV 6 жыл бұрын
reason you are not using the adam optimizer?
@DataTalks
@DataTalks 6 жыл бұрын
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
@robosergTV
@robosergTV 6 жыл бұрын
thanks!
@gomorrahproductions1020
@gomorrahproductions1020 3 жыл бұрын
"ogres onions and deep learning". ahahah i love it man you make this very enjoyable. keep it up
@stackexchange7353
@stackexchange7353 4 жыл бұрын
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.
@DataTalks
@DataTalks 4 жыл бұрын
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)
@pkl520
@pkl520 7 жыл бұрын
big thanks to bring us such great tutorial~!
@pythonnumpytutorials9955
@pythonnumpytutorials9955 3 жыл бұрын
Mate , its amazing
@deferler
@deferler 6 жыл бұрын
definitely one of the best tutorial i found on keras
@isleguard
@isleguard 7 жыл бұрын
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
@DataTalks
@DataTalks 7 жыл бұрын
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-5749
@louie-5749 5 жыл бұрын
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.
@IntegralDeLinha
@IntegralDeLinha 3 жыл бұрын
Thanks!! That was useful!
@huannguyentrong1249
@huannguyentrong1249 3 жыл бұрын
Nice video, Thank you !
@shinidied107
@shinidied107 4 жыл бұрын
This video is very helpful! Thank you!
@krishnasashank6116
@krishnasashank6116 4 жыл бұрын
Great Video! Helped a lot! Thanks Pal!
@NattapongPUN
@NattapongPUN 7 жыл бұрын
Thanks, How to deploy on cloud platform?
@DataTalks
@DataTalks 7 жыл бұрын
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).
@zahidadeel25
@zahidadeel25 7 жыл бұрын
very nice notebooks and very good explanation. Thanks.
@anjorobles7504
@anjorobles7504 2 жыл бұрын
is sequential model is a pre trained model?
@DataTalks
@DataTalks 2 жыл бұрын
Not necessarily! Sequential is just a way to construct models with keras. They can be pretrained but not necessarily!
@anjorobles7504
@anjorobles7504 2 жыл бұрын
@@DataTalks thankyou for the clarification
@nickbulitka3213
@nickbulitka3213 5 жыл бұрын
Hi I like videos (keep it up). Just wondering if any of your code is available (say on github)?
@DataTalks
@DataTalks 5 жыл бұрын
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-nb8nf
@Rohit-nb8nf 6 жыл бұрын
Instead of dummy data ,why don't you show with some dataset like reuters data with LSTM or RNN ,,,?
@GeneralTerzX
@GeneralTerzX 5 жыл бұрын
bc this was taken directly from keras.io and he just went their guide
@FezanRafique
@FezanRafique 5 жыл бұрын
Great tutorial, thanks :)
@imzwaza6784
@imzwaza6784 8 ай бұрын
thank you sir
@plortopod9908
@plortopod9908 4 жыл бұрын
Oh this is that guy from the Minecraft Monday Show
@shawnveltman1482
@shawnveltman1482 6 жыл бұрын
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?
@DataTalks
@DataTalks 6 жыл бұрын
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!
@PatrickBateman12420
@PatrickBateman12420 6 жыл бұрын
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.
@DataTalks
@DataTalks 6 жыл бұрын
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.
@jrgantunes
@jrgantunes 5 жыл бұрын
Thank you, you are the best
@petergiangrasso5519
@petergiangrasso5519 4 жыл бұрын
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
@billynye9436
@billynye9436 2 жыл бұрын
based and sigma pilled
@surinamelephant786
@surinamelephant786 7 жыл бұрын
incredibly usefull ...
@shristiadhikari
@shristiadhikari 2 жыл бұрын
I'm watching at 66,666 views, scary!
@zubairuddinkhan5075
@zubairuddinkhan5075 4 жыл бұрын
so low voice ... dislike
Max pooling layer | Computer Vision with Keras p.5
20:01
Pysource
Рет қаралды 3,5 М.
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Functional - Keras
12:10
Data Talks
Рет қаралды 16 М.
Build a Sequential model | Computer Vision with Keras p.2
17:27
302 - Tuning deep learning hyperparameters​ using GridSearchCV
18:45
Transformers (how LLMs work) explained visually | DL5
27:14
3Blue1Brown
Рет қаралды 4,2 МЛН
Keras Explained
9:20
Siraj Raval
Рет қаралды 246 М.
Batch normalization | What it is and how to implement it
13:51
AssemblyAI
Рет қаралды 67 М.