Live Link: Click Here
This repository contains the machine learning model for detecting the language of the given text. It has also been developed into a web-app.
The dataset is taken from here.
We have used scikit learn library to build the models, train it and test it along with numpy and pandas.
Steps for making the model:
-
Importing the required libraries.
-
Loading the dataset.
-
Data preprocessing - checking for nulls, duplicates, transforming text to lower case, etc.
-
Splitting into training and testing data
-
Training the model on train data.
-
Testing the model on test data.
-
Evaluating the model.
For making the web-app, we have used HTML, CSS for the frontend and Flask framework for the backend.