This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# ============================================= | |
# Author: Fuad Al Abir | |
# Date: 31 Oct 2020 | |
# Problem: Performance Evaluation | |
# Course: CSE 3210 | |
# ============================================= | |
# libraries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# ============================================= | |
# Author: Fuad Al Abir | |
# Date: 22 Feb 2020 | |
# Problem: K-Means | |
# Course: CSE 3210 | |
# ============================================= | |
def initCenter(_dataList, k): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# ============================================= | |
# Author: Fuad Al Abir | |
# Date: 12 Feb 2020 | |
# Problem: Decision Tree - Iterative Dichotomiser 3 | |
# Course: CSE 3210 | |
# ============================================= | |
# ============================================= |