Тёмный
AIT Brain Lab
AIT Brain Lab
AIT Brain Lab
Подписаться
Established in 2019, we are bunch of engineers and scientists at Asian Institute of Technology, Thailand, specialize in the field of natural language processing, computer vision, and human-computer interaction. We conduct research on challenging AI problems.
Using AI to generate reports
2:21
Месяц назад
3.1 Deep Learning - Linear Regression
29:53
Месяц назад
Conversation Recommendation System
0:33
2 месяца назад
2.1 Unsupervised  - Clustering - K-Means
22:58
2 месяца назад
1.13 Supervised - Classification - AdaBoost
21:36
2 месяца назад
1.11 Supervised - Classification - Bagging
15:41
2 месяца назад
AIT Brain Lab - Paraphrase Thai Government
0:20
3 месяца назад
AIT Brain Lab - Chatbot Interview
1:29
3 месяца назад
1.3 Supervised - Regression (Regularization)
21:19
4 месяца назад
AIT Brain Lab - Liveness (Real Video)
0:17
5 месяцев назад
AIT Brain Lab - Liveness (Fake Video)
0:17
5 месяцев назад
AIT Brain Lab - Liveness (Fake Image)
0:15
5 месяцев назад
AIT Brain Lab - Counting Passengers
0:12
5 месяцев назад
AIT Brain Lab - Driver Activity
0:32
5 месяцев назад
Lecture 16 - Multimodal Learning
1:04:01
6 месяцев назад
Комментарии
@736939
@736939 7 дней назад
12:23 I would not do the id2word in loop, because then you have to repeat all of the things len(work_list) times and get n^2 complexion.
@invalidred
@invalidred 7 дней назад
Super! Love your hands on example based way to show concepts.
@invalidred
@invalidred 7 дней назад
Amazing content I learned a lot
@bocorember
@bocorember 9 дней назад
this is the best tutorial i have watched... thanks you sir.
@l1k2j3h400
@l1k2j3h400 12 дней назад
Very informative and philosophical concepts. Thanks for your sharing, Prof
@Mineraccount1
@Mineraccount1 13 дней назад
Hybrid intelligent
@RESPECT-bu1fr
@RESPECT-bu1fr Месяц назад
More video
@Simplifieddeeplearning
@Simplifieddeeplearning Месяц назад
please more video on ml algorithm i love the video
@Simplifieddeeplearning
@Simplifieddeeplearning Месяц назад
hello sir is there any need to learn scikit learn for a beginner who what to dive into deep learning using python, numpy, and pytorch
@MrKB_SSJ2
@MrKB_SSJ2 Месяц назад
I am making a usable BERT transformer in pure C. This video is extremely helpful as its providing me the clear clarity of the silar kinds of steps that I need to take. Thank you!
@MrKB_SSJ2
@MrKB_SSJ2 Месяц назад
24:55
@mdbayazid6837
@mdbayazid6837 2 месяца назад
Thanks Professor
@mdbayazid6837
@mdbayazid6837 2 месяца назад
Boosting and Adaboosting next please.❤
@Hdcqt751
@Hdcqt751 3 месяца назад
Such an awesome video.... Great job Dr Chaklam
@archit_474
@archit_474 5 месяцев назад
This is just amazing. Thank You for uploading the videos and the code
@archit_474
@archit_474 5 месяцев назад
Very Good Series
@ezekwu77
@ezekwu77 7 месяцев назад
Fascinating
@dominicdaniel2379
@dominicdaniel2379 8 месяцев назад
🤪 P r o m o s m
@A_20_GANDEEDSAKETHREDDY
@A_20_GANDEEDSAKETHREDDY 9 месяцев назад
Thank you
@H2O_____
@H2O_____ 9 месяцев назад
hey why i got this error like, trying to my model "ValueError: [E103] Trying to set conflicting doc.ents: '(2528, 2539, 'College Name')' and '(2528, 2532, 'College Name')'. A token can only be part of one entity, so make sure the entities you're setting don't overlap. To work with overlapping entities, consider using doc.spans instead."
@brainlabAIT
@brainlabAIT 9 месяцев назад
Hi! It seems like there is some overlap. Since 2528-2539 overlaps with 2528-2532, it won't work. You may use doc.span just like spacy has suggested: span1 = Span(doc, 2528, 2539, label="College Name") span2 = Span(doc, 2528, 2532, label="Something here") doc.spans = [span1, span2] for span in doc.spans: print(span.text, span.start, span.end, span.label_)
@brainlabAIT
@brainlabAIT 9 месяцев назад
train_accs.append(train_accs) should be train_accs.append(train_acc)