Machine Learning Automation using EvalML Library

This article was published as a part of the Data Science Blogathon Introduction Machine Learning is one of the fastest-growing technology in the modern era. New innovations in the field of ML and AI are made each and every day which supports the world to leap forward. Earlier for a person entering into the ML field finds it difficult to create accurate machine learning models, but now AutoML Libraries are created which helps the beginners to create an accurate model with […]

Read more

A simple bot to extract text from images with python

Text from image (OCR) A bot that extract text from images using the Tesseract OCR. Usage What do I need? A AWS key configured locally, see here. NodeJS. I tested with v8.9.0. A Telegram account. Installing # Install the Serverless Framework $ npm install serverless -g # Install the necessary plugins $ npm install # Get a bot from Telegram, sending this message to @BotFather $ /newbot # Put the token received into a file called serverless.env.yml, like this $ […]

Read more

Hands-on Experience With GPT3!

This article was published as a part of the Data Science Blogathon. Yes, you read it right. In this article, I will give you a hands-on experience of GPT3. I was lucky enough to get access to private beta after waiting for 8 months 🙂 Introduction Last week I was exploring with GPT-3. I was thinking I will learn it in a data it two. But boy it took me a lot of time to learn it. I was very surprised […]

Read more

A collection of text processing tools for Python

ChirpText ChirpText is a collection of text processing tools for Python 3. It is not meant to be a powerful tank like the popular NTLK but a small package which you can pip-install anywhere and write a few lines of code to process textual data. Simple file data manipulation using an enhanced open() function (txt, gz, binary, etc.) CSV helper functions Parse Japanese text with mecab library (Does not require mecab-python3 package even on Windows, only a binary release (i.e. […]

Read more

Build a model which will take keywords as inputs and generate sentences as outputs

keytotext Idea is to build a model which will take keywords as inputs and generate sentences as outputs. Model: Keytotext is based on the Amazing T5 Model: k2t: Model k2t-tiny: Model k2t-base: Model mrm8488/t5-base-finetuned-common_gen (by Manuel Romero): Model Training Notebooks can be found in the Training Notebooks Folder Note: To add your own model to keytotext Please read Models Documentation Usage: Example usage: Example Notebooks can be found in the Notebooks Folder pip install keytotext UI: UI: pip install streamlit-tags […]

Read more

A python library that helps you read text from an unknown charset encoding

Charset Normalizer Library that help you read text from unknown charset encoding. Project motivated by chardet, I’m trying to resolve the issue by taking another approach. All IANA character set names for which the Python core library provides codecs are supported. Introduction This library aim to assist you in finding what encoding suit the best to content. It DOES NOT try to uncover the originating encoding, in fact this program does not care about it. By originating we means the […]

Read more

AIML – A Language for Chatbots

This article was published as a part of the Data Science Blogathon. What is a Chatbot? Chatbots are intelligent digital assistants which may address customer’s basic and predictable queries. They offer numerous services via chatting and perform basic customer service operations. Chatbots work 24/7 and hence they provide assistance when offices are closed on holidays. There are a variety of synonyms for chatbot, including “talkbot,” “bot,” “IM bot,” “interactive agent” or “artificial conversation entity.“ Most organizations have already started implementing […]

Read more

Predict an emoji that is associated with a text

Sentiment Analysis Sentiment analysis in computational linguistics is a general term for techniques that quantify sentiment or mood in a text. Can you tell from a text whether the writer is happy? Angry? Disappointed? Can you put their happiness on a 1-5 scale? Robust tools for sentiment analysis are often very desirable for companies, for example. Imagine that a company has just launched a new product GizmoX. Now the management wants to know how customers feel about it. Instead of […]

Read more

Stock Price Movement Based On News Headline

Don’t look for the needle in the haystack. Just buy the haystack! I hope you all are well. Hurray!! finally today our theme is similar to our beautiful quote😅. I always look for new ideas to share my knowledge, because I heard that “Knowledge shared is knowledge squared😊”. Most of you already know something about Share Market. In this article, we will explore something new and interesting. So let’s dig deeper into our today’s theme. This article is actually based […]

Read more

Text Classification in Turkish Texts with Bert

Text_and_Audio_classification_with_Bert Text Classification in Turkish Texts with Bert. Project Interface Goal= Correctly guessing the classification of texts and audios BERT_Text_Classification It is a text classification task implementation transformers (by HuggingFace) with BERT. It contains several parts: –Data pre-processing –BERT tokenization and input formating –Train with BERT –Evaluation –Save and load saved model Text-classification-transformers Text classification tasks are most easily encountered in the area of natural language processing and can be used in various ways. However, the given data needs to […]

Read more
1 9 10 11 12 13 22