Uncategorized

Exploring OpenAI’s ChatGPT – Building Apps in Multi-Languages with ChatGPT

ChatGPT is an amazing AI service created by OpenAI. It has ushered us into the next generation of search engines that is powered by LLM (Large Language Models) and NLP systems. Let us explore this awesome service. First of all you will need to create an account (email and phonenumber as well as the basic …

Exploring OpenAI’s ChatGPT – Building Apps in Multi-Languages with ChatGPT Read More »

How to Fix Gunicorn Connection In Use (‘127.0.0.1’, 8000) Error

In deploying web applications on a server specifically flask application, we use gunicorn, a wsgi software or server to run our flask app. However you may face certain issues and one of the commonest issue is the connection in use error. This occurs when there is something listening on the port that gunicorn is bound …

How to Fix Gunicorn Connection In Use (‘127.0.0.1’, 8000) Error Read More »

How to Split Dataset into Training and Testing Dataset For Machine Learning

One of the most important activities when building models is the ability to test and evaluate your model and have something to compare with that shows that your model actually worked. In order to do this you will need to have enough data to train and build a working model and also to test the …

How to Split Dataset into Training and Testing Dataset For Machine Learning Read More »

Building A Calculator with Streamlit Components and HTML

Streamlit components have so much potential. With the introduction of the components system in streamlit, we can now build additional features and integrate into the web apps we have been building. You can check out the docs on the components here. In this tutorial we will explore one of the components  – .html(). We will …

Building A Calculator with Streamlit Components and HTML Read More »

Building A Simple Bioinformatics App with Streamlit and BioPython

Bioinformatics which is also called Biological Data Science is an awesome and fascinating field of  science. In this tutorial we will build a simple app using Streamlit to do some basic sequence analysis and dot plot of two DNA sequences. We will be using BioPython and NeatBio to do our processing of our sequence and …

Building A Simple Bioinformatics App with Streamlit and BioPython Read More »