SlideShare a Scribd company logo
1 of 31
Download to read offline
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 1/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 2/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 3/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 4/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 5/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 6/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 7/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 8/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 9/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 10/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 11/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 12/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 13/31
Perception
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 14/31
In [1]:
. . .
import os
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos/Perceptio
!pwd
%run -i demo.py "input/in.jpg" "style/style_vangogh.jpg" "output/out"
os.system('cp output/out_at_iteration_3.png /home2/innolabs/Dropbox/C
os.system('cp input/in.jpg /home2/innolabs/Dropbox/Common/Augment-Tra
os.system('rm output/out_at_iteration_*.png')
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos")
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 15/31
L
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 16/31
Language
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 17/31
In [2]:
Perception & Language
a quaintlycostumed little couple still marvelling about o
n their own ground floor by the unnecessary light of a gu
ttering candle chapter the furniture that went mad now it
happened that in the early hours of whitmonday before mil
lie was hunted out for the day mr hall and mrs hall both
import os
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos")
%run -i lstm_text_gen.py
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 18/31
In [6]:
import os
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos")
## Image Caption generation -- using a previously pre-trained model
from pickle import load
from numpy import argmax
from keras.preprocessing.sequence import pad_sequences
from keras.applications.vgg16 import VGG16
from keras.preprocessing.image import load_img
from keras.preprocessing.image import img_to_array
from keras.applications.vgg16 import preprocess_input
from keras.models import Model
from keras.models import load_model
def extract_features(filename):
model = VGG16()
# Transfer Learning
model.layers.pop()
model = Model(inputs=model.inputs, outputs=model.layers[-1].output
image = load_img(filename, target_size=(224, 224))
image = img_to_array(image)
image = image.reshape((1, image.shape[0], image.shape[1], image.sh
image = preprocess_input(image)
feature = model.predict(image, verbose=0)
return feature
def word_for_id(integer, tokenizer):
for word, index in tokenizer.word_index.items():
if index == integer:
return word
return None
def cleanup_summary(summary):
index = summary.find('startseq ')
if index > -1:
summary = summary[len('startseq '):]
index = summary.find(' endseq')
if index > -1:
summary = summary[:index]
return summary
# Function to generate the caption for the image
def generate_caption(model, tokenizer, photo, max_length):
in_text = 'startseq'
for _ in range(max_length):
sequence = tokenizer.texts_to_sequences([in_text])[0]
sequence = pad_sequences([sequence], maxlen=max_length)
ytgt = model.predict([photo,sequence], verbose=0)
ytgt = argmax(ytgt)
word = word_for_id(ytgt, tokenizer)
if word is None:
break
in_text += ' ' + word
if word == 'endseq':
break
return in_text
tokenizer = load(open('tokenizer2.pkl', 'rb'))
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 19/31
Reasoning
two dogs are running through the water
max_length = 34
model = load_model('model2.h5') # Load the pre-trained model
photo = extract_features('image.jpeg')
caption = generate_caption(model, tokenizer, photo, max_length)
caption = cleanup_summary(caption)
print(caption)
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 20/31
In [7]:
Train on 227453 samples, validate on 56962 samples
Epoch 1/2
227453/227453 [==============================] - 24s 104u
s/step - loss: 0.8158 - acc: 0.5923 - val_loss: 0.8922 -
val_acc: 0.6205
Epoch 2/2
227453/227453 [==============================] - 21s 93u
s/step - loss: 0.7653 - acc: 0.6291 - val_loss: 0.8682 -
val_acc: 0.6421
import os
import matplotlib
%matplotlib inline
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos/autoencod
%run -i demo.py
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 21/31
Intuition
In [8]:
In [9]:
. . .
. . .
import os
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos")
from wand.image import Image as WImage
img = WImage(filename='DeepMind_Paper.pdf[0]')
img
img = WImage(filename='DeepMind_Paper.pdf[2]')
img
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 22/31
In [1]:
In [2]:
. . .
. . .
import os
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos/Intuition
%run -i breakout_dqn.py
from IPython.display import HTML
HTML("""
<div align="middle">
<video height="750" width="1000" controls>
<source src="Videos/DeepMind_playing_Atari_Breakout.mp4" type="v
</video></div>""")
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 23/31
In [3]:
Creativity
. . .
##11.30 to 17.30
##0.25 to 3:30 -- *
from IPython.display import HTML
HTML("""
<div align="middle">
<video width="90%" controls>
<source src="Videos/AlphaGo_Intuition.mp4" type="video/mp4">
</video></div>""")
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 24/31
In [4]:
. . .
import os
os.chdir("/home2/innolabs/Dropbox/Linux/Keras/gan/DeepDream")
%run -i deep_dream.py
os.system('cp images/dreams/CheshireCat/dreamy/CheshireCat_at_iteratio
os.system('cp images/source/download.jpeg /home2/innolabs/Dropbox/Com
os.chdir("/home2/innolabs/Dropbox/Common/Augment-Train/Demos")
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 25/31
In [5]:
. . .
##14.00 to 17:30
from IPython.display import HTML
HTML("""
<div align="middle">
<video width="90%" controls>
<source src="Videos/AI_Creativity.mp4" type="video/mp4">
</video></div>""")
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 26/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 27/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 28/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 29/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 30/31
2/5/2019 AIpreso
http://localhost:8888/notebooks/AIpreso.ipynb 31/31
In [ ]:

More Related Content

Similar to AI Presentation - Aug-2018

Simple (Marp Next custom theme)
Simple (Marp Next custom theme)Simple (Marp Next custom theme)
Simple (Marp Next custom theme)Tatsuya Sakaguchi
 
OG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizerOG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizerConnor McDonald
 
CGo for fun and profit
CGo for fun and profitCGo for fun and profit
CGo for fun and profitLiz Frost
 
20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing Course20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing CoursePierre Lindenbaum
 
Introduction of DiscoGAN
Introduction of DiscoGANIntroduction of DiscoGAN
Introduction of DiscoGANSeongcheol Baek
 
Arduino programming of ML-style in ATS
Arduino programming of ML-style in ATSArduino programming of ML-style in ATS
Arduino programming of ML-style in ATSKiwamu Okabe
 
Python Network Programming – Course Applications Guide
Python Network Programming – Course Applications GuidePython Network Programming – Course Applications Guide
Python Network Programming – Course Applications GuideMihai Catalin Teodosiu
 
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...Applitools
 
Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24
Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24
Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24Kei IWASAKI
 
Db2 For I Parallel Data Load
Db2 For I Parallel Data LoadDb2 For I Parallel Data Load
Db2 For I Parallel Data LoadThomas Wolfe
 
Measuring Software development with GrimoireLab
Measuring Software development with GrimoireLabMeasuring Software development with GrimoireLab
Measuring Software development with GrimoireLabValerio Cosentino
 
Getting more out of Matplotlib with GR
Getting more out of Matplotlib with GRGetting more out of Matplotlib with GR
Getting more out of Matplotlib with GRJosef Heinen
 
Apache Ignite In-Memory Computing Install memo
Apache Ignite In-Memory Computing Install memoApache Ignite In-Memory Computing Install memo
Apache Ignite In-Memory Computing Install memoNaoto MATSUMOTO
 
G*なクラウド 雲のかなたに ショートバージョン
G*なクラウド 雲のかなたに ショートバージョンG*なクラウド 雲のかなたに ショートバージョン
G*なクラウド 雲のかなたに ショートバージョンTsuyoshi Yamamoto
 

Similar to AI Presentation - Aug-2018 (20)

Simple (Marp Next custom theme)
Simple (Marp Next custom theme)Simple (Marp Next custom theme)
Simple (Marp Next custom theme)
 
OG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizerOG Yatra - upgrading to the new 12c+ optimizer
OG Yatra - upgrading to the new 12c+ optimizer
 
ChatGPT in Education
ChatGPT in EducationChatGPT in Education
ChatGPT in Education
 
dip.pdf
dip.pdfdip.pdf
dip.pdf
 
FP Using ES6+ (Cheat Sheet)
FP Using ES6+ (Cheat Sheet)FP Using ES6+ (Cheat Sheet)
FP Using ES6+ (Cheat Sheet)
 
CGo for fun and profit
CGo for fun and profitCGo for fun and profit
CGo for fun and profit
 
Evolution and AI
Evolution and AIEvolution and AI
Evolution and AI
 
20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing Course20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing Course
 
Introduction of DiscoGAN
Introduction of DiscoGANIntroduction of DiscoGAN
Introduction of DiscoGAN
 
Arduino programming of ML-style in ATS
Arduino programming of ML-style in ATSArduino programming of ML-style in ATS
Arduino programming of ML-style in ATS
 
Python Network Programming – Course Applications Guide
Python Network Programming – Course Applications GuidePython Network Programming – Course Applications Guide
Python Network Programming – Course Applications Guide
 
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...Visual Component Testing  -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
Visual Component Testing -- w/ Gil Tayar (Applitools) and Gleb Bahmutov (Cyp...
 
Learning
Learning Learning
Learning
 
Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24
Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24
Collaboration hack with slackbot - PyCon HK 2018 - 2018.11.24
 
Db2 For I Parallel Data Load
Db2 For I Parallel Data LoadDb2 For I Parallel Data Load
Db2 For I Parallel Data Load
 
Paexec -- distributed tasks over network or cpus
Paexec -- distributed tasks over network or cpusPaexec -- distributed tasks over network or cpus
Paexec -- distributed tasks over network or cpus
 
Measuring Software development with GrimoireLab
Measuring Software development with GrimoireLabMeasuring Software development with GrimoireLab
Measuring Software development with GrimoireLab
 
Getting more out of Matplotlib with GR
Getting more out of Matplotlib with GRGetting more out of Matplotlib with GR
Getting more out of Matplotlib with GR
 
Apache Ignite In-Memory Computing Install memo
Apache Ignite In-Memory Computing Install memoApache Ignite In-Memory Computing Install memo
Apache Ignite In-Memory Computing Install memo
 
G*なクラウド 雲のかなたに ショートバージョン
G*なクラウド 雲のかなたに ショートバージョンG*なクラウド 雲のかなたに ショートバージョン
G*なクラウド 雲のかなたに ショートバージョン
 

More from Wing Yuen Loon

DataRobot Essentials - Jan-2019
DataRobot Essentials - Jan-2019DataRobot Essentials - Jan-2019
DataRobot Essentials - Jan-2019Wing Yuen Loon
 
Cards and Payments Asia - Apr. 2016
Cards and Payments Asia - Apr. 2016Cards and Payments Asia - Apr. 2016
Cards and Payments Asia - Apr. 2016Wing Yuen Loon
 
Microsoft MCTS Certificate
Microsoft MCTS CertificateMicrosoft MCTS Certificate
Microsoft MCTS CertificateWing Yuen Loon
 
Coursera - Introduction to the Science of Cancer (Nov-2015)
Coursera - Introduction to the Science of Cancer (Nov-2015)Coursera - Introduction to the Science of Cancer (Nov-2015)
Coursera - Introduction to the Science of Cancer (Nov-2015)Wing Yuen Loon
 
MIA Big Data Analytics Conference 2015 - Aug. 2015
MIA Big Data Analytics Conference 2015 - Aug. 2015MIA Big Data Analytics Conference 2015 - Aug. 2015
MIA Big Data Analytics Conference 2015 - Aug. 2015Wing Yuen Loon
 
Cards and Payments Asia presentation - Apr. 2015
Cards and Payments Asia presentation - Apr. 2015Cards and Payments Asia presentation - Apr. 2015
Cards and Payments Asia presentation - Apr. 2015Wing Yuen Loon
 
Big Data World presentation - Sep. 2014
Big Data World presentation - Sep. 2014Big Data World presentation - Sep. 2014
Big Data World presentation - Sep. 2014Wing Yuen Loon
 

More from Wing Yuen Loon (7)

DataRobot Essentials - Jan-2019
DataRobot Essentials - Jan-2019DataRobot Essentials - Jan-2019
DataRobot Essentials - Jan-2019
 
Cards and Payments Asia - Apr. 2016
Cards and Payments Asia - Apr. 2016Cards and Payments Asia - Apr. 2016
Cards and Payments Asia - Apr. 2016
 
Microsoft MCTS Certificate
Microsoft MCTS CertificateMicrosoft MCTS Certificate
Microsoft MCTS Certificate
 
Coursera - Introduction to the Science of Cancer (Nov-2015)
Coursera - Introduction to the Science of Cancer (Nov-2015)Coursera - Introduction to the Science of Cancer (Nov-2015)
Coursera - Introduction to the Science of Cancer (Nov-2015)
 
MIA Big Data Analytics Conference 2015 - Aug. 2015
MIA Big Data Analytics Conference 2015 - Aug. 2015MIA Big Data Analytics Conference 2015 - Aug. 2015
MIA Big Data Analytics Conference 2015 - Aug. 2015
 
Cards and Payments Asia presentation - Apr. 2015
Cards and Payments Asia presentation - Apr. 2015Cards and Payments Asia presentation - Apr. 2015
Cards and Payments Asia presentation - Apr. 2015
 
Big Data World presentation - Sep. 2014
Big Data World presentation - Sep. 2014Big Data World presentation - Sep. 2014
Big Data World presentation - Sep. 2014
 

Recently uploaded

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 

Recently uploaded (20)

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

AI Presentation - Aug-2018