Skip to content

Instantly share code, notes, and snippets.

View fuad021's full-sized avatar
🐢
Slow Learner

Fuad Al Abir fuad021

🐢
Slow Learner
View GitHub Profile
# -*- coding: utf-8 -*-
# =============================================
# Author: Fuad Al Abir
# Date: 31 Oct 2020
# Problem: Performance Evaluation
# Course: CSE 3210
# =============================================
# libraries
@fuad021
fuad021 / k-means.py
Last active November 28, 2020 05:45
# -*- coding: utf-8 -*-
# =============================================
# Author: Fuad Al Abir
# Date: 22 Feb 2020
# Problem: K-Means
# Course: CSE 3210
# =============================================
def initCenter(_dataList, k):
@fuad021
fuad021 / id3.py
Last active November 28, 2020 05:45
Python Implementation of Iterative Dichotomiser 3
# -*- coding: utf-8 -*-
# =============================================
# Author: Fuad Al Abir
# Date: 12 Feb 2020
# Problem: Decision Tree - Iterative Dichotomiser 3
# Course: CSE 3210
# =============================================
# =============================================