All Projects → hmahajan99 → Decision-Tree-Implementation

hmahajan99 / Decision-Tree-Implementation

Licence: other
A python 3 implementation of decision tree (machine learning classification algorithm) from scratch

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Decision-Tree-Implementation

ml
Base machine learning image and environment.
Stars: ✭ 15 (-21.05%)
Mutual labels:  sklearn
flask-angular-data-science
Repository for a data science starter app using Flask, Angular and Docker. https://medium.com/@dvelsner/deploying-a-simple-machine-learning-model-in-a-modern-web-application-flask-angular-docker-a657db075280
Stars: ✭ 84 (+342.11%)
Mutual labels:  sklearn
Machine-Learning-Models
In This repository I made some simple to complex methods in machine learning. Here I try to build template style code.
Stars: ✭ 30 (+57.89%)
Mutual labels:  decision-tree
machine-learning-templates
Template codes and examples for Python machine learning concepts
Stars: ✭ 40 (+110.53%)
Mutual labels:  sklearn
rig
RIG - A Randomised ID Card Generator
Stars: ✭ 20 (+5.26%)
Mutual labels:  pdf-generation
KivyMLApp
The repository host the API for the ML model via FastAPI, Flask and contains android app development files using KivyMD.
Stars: ✭ 54 (+184.21%)
Mutual labels:  sklearn
grasp
Essential NLP & ML, short & fast pure Python code
Stars: ✭ 58 (+205.26%)
Mutual labels:  decision-tree
scikitcrf NER
Python library for custom entity recognition using Sklearn CRF
Stars: ✭ 17 (-10.53%)
Mutual labels:  sklearn
ml course
"Learning Machine Learning" Course, Bogotá, Colombia 2019 #LML2019
Stars: ✭ 22 (+15.79%)
Mutual labels:  sklearn
Optimal Classification Trees
Three MIP models for optimal classification tree: OCT, binOCT, flowOCT
Stars: ✭ 23 (+21.05%)
Mutual labels:  decision-tree
tymon
An AI Assistant More Than a Toolkit
Stars: ✭ 46 (+142.11%)
Mutual labels:  sklearn
designfactory-app
A project that generates pdf documents from design templates from Figma + your own data via the GUI or REST API.
Stars: ✭ 30 (+57.89%)
Mutual labels:  pdf-generation
Android-PDF
Create PDF in Android using iText
Stars: ✭ 53 (+178.95%)
Mutual labels:  pdf-generation
techloop-ml-plus
Archives and Tasks for ML+ sessions
Stars: ✭ 23 (+21.05%)
Mutual labels:  sklearn
get smarties
Dummy variable generation with fit/transform capabilities
Stars: ✭ 23 (+21.05%)
Mutual labels:  sklearn
api2pdf.php
PHP client library for the Api2Pdf.com REST API - Convert HTML to PDF, URL to PDF, Office Docs to PDF, Merge PDFs, HTML to Image, URL to Image, HTML to Docx, HTML to Xlsx, PDF to HTML, Thumbnail preview of office files
Stars: ✭ 42 (+121.05%)
Mutual labels:  pdf-generation
topic modelling financial news
Topic modelling on financial news with Natural Language Processing
Stars: ✭ 51 (+168.42%)
Mutual labels:  sklearn
dhtml2pdf
Simple, free and very easy to use PHP API that allows you to see, download or get the binary of the PDF generated from the HTML of an URL.
Stars: ✭ 27 (+42.11%)
Mutual labels:  pdf-generation
Deception-Detection-on-Amazon-reviews-dataset
A SVM model that classifies the reviews as real or fake. Used both the review text and the additional features contained in the data set to build a model that predicted with over 85% accuracy without using any deep learning techniques.
Stars: ✭ 42 (+121.05%)
Mutual labels:  sklearn
foreshadow
An automatic machine learning system
Stars: ✭ 29 (+52.63%)
Mutual labels:  sklearn

Decision Tree Implementation

A python 3 implementation of decision tree commonly used in machine learning classification problems. Currently, only discrete datasets can be learned. (The algorithm treats continuous valued features as discrete valued ones)

Features

You can fit the classifier over the training data(using either gain ratio or gini index as metric), make predictions and get the score(mean accuracy) for testing data as well. The machine learning decision tree model after fitting the training data can be exported into a PDF. On comparison of inbuilt sklearn's decision tree with our model on the same training data, the results were similar.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].