Month: February 2022

Text Annotation Using Label Studio On DagsHub

Dagshub is the platform where people build data science project. It is built on the shoulders of open source tools that we are mostly familiar with in the Data science and AI field.One of the cool features of Dagshub is the Annotations feature. It is an integration of Label Studio into Dagshub, making it easier …

Text Annotation Using Label Studio On DagsHub Read More »

How to Fix TypeError: ‘ ‘ object is not subscriptable

Object Oriented Programming is a vital feature when it comes to writing code. In Python, everything can be seen as an object and one of the ways of creating objects in python is via ‘Class’.A Class is like an object constructor, or a “blueprint” for creating objects.When working with classes one of the errors you …

How to Fix TypeError: ‘ ‘ object is not subscriptable 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 »