Confidence in KTP-OCR using Pytesseract
| | |

Confidence in KTP-OCR using Pytesseract

In previous blog, we already learn how to crop an image https://about.lovia.id/getting-cordinate-and-cropping-an-image-with-opencv/. Then we will learn how to got confidence using pytesseract, After much searching, there was some some ways to got confidence in my KTP-OCR. Pytesseract give us a lot of syntax that can we use, such as : #this line of code will…

RASA Form Actions: Calling SatukanCinta API
| | |

RASA Form Actions: Calling SatukanCinta API

Hi there! This post is the continuation of the blog post before. In this post, I’ll be giving a tutorial in getting the information if user has registered an account in SatukanCinta. So the information needed to check if the user has registered an account is full name, email, and also phone number.Here we are…

Maximizing KTP-OCR Performance using Regular Expression
| |

Maximizing KTP-OCR Performance using Regular Expression

Regular expression (or RE) specifies a set of strings that matches it; the functions in this module let you check if a particular string matches a given regular expression (or if a given regular expression matches a particular string, which comes down to the same thing). we will maximize the performance of KTP-OCR using RE….

RASA Form Actions: Calling Weather API
| | | |

RASA Form Actions: Calling Weather API

Hi there! This is the continuation of the post before. If you want to understand detailed explanation about Forms you can check out this article here. Here I’m building chatbot that provides the information about weather situation in a city. What we have to prepare first is the intents. We can add new intents in…

Integrating RASA chatbot assistant to Facebook Messenger
| | | |

Integrating RASA chatbot assistant to Facebook Messenger

Here is tutorial on how we can integrate RASA chatbot assistant to Facebook Messenger. Here we’ll be using ngrok to expose a local server on the internet, so make sure you have installed ngrok before.If you haven’t installed ngrok, you can install it here. Make sure you have created an account in facebook for developers…

Components in RASA NLU
| |

Components in RASA NLU

In RASA, user messages is excecuted for every sequence of components. All components executed in RASA can be customized to meet any requirements in pipeline defined in config.yml file. We can even build our own (custom) component in RASA NLU. Configurating the Right Components Every components have different functions whether its for pre-processing text, intent…

Getting Coordinate and Cropping an Image with OpenCV
| |

Getting Coordinate and Cropping an Image with OpenCV

OpenCV is popular library for computer vision. OpenCV is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. OpenCV uses machine learning to detect object/faces in picture. for detecting face,…

Forms in RASA
| |

Forms in RASA

When building a chatbot as conversational assistant, we may need some of user’s information in order to answers and give suggestions to the user in a right context.This proccess of collecting the user’s required information is called slot filling. (If you want to understand better about slots, you may want to check out the previous…

Build Contextual AI Assistant (Chatbot)
| | |

Build Contextual AI Assistant (Chatbot)

We have discussed about chatbot and why should we build a chatbot on the previous post https://about.lovia.id/build-your-first-rasa-chatbot/. On the previous post, we build a simple chatbot that asks a user’s feeling and tries to cheer the user up when they’re sad.This time we are going to set our game up and build a contextual chatbot…