Skip to content

Instantly share code, notes, and snippets.

View aeyage's full-sized avatar
🥷

Aiman Hakimi aeyage

🥷
View GitHub Profile
@aeyage
aeyage / cpc353-n-gram-of-dbs-bank.ipynb
Last active February 1, 2024 10:07
N-gram of DBS Bank
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aeyage
aeyage / cpc353-pos-tagging-of-dbs-bank.ipynb
Last active February 1, 2024 10:07
PoS Tagging of DBS Bank
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aeyage
aeyage / cpc251_project_part1_cancer6.ipynb
Last active June 18, 2023 12:01
Cervical Cancer Risk Classification
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aeyage
aeyage / cpc152-project-group-29.ipynb
Last active June 18, 2023 12:04
Wine Quality Classification
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aeyage
aeyage / radixSorting.java
Created May 17, 2023 23:45
Radix sort algorithms for integers and floating-point numbers written in Java
import java.util.LinkedList;
public class radixSorting
{
/* Function to get the largest element from an array
consists of integers */
private static int getMax(int[] arr)
{
// Find the maximum element in the array
int mx = arr[0];