FYP2_WEEK 3 (DESIGNING MACHINE LEARNING MODEL)

During week 3 of the project, my focus shifted towards the design of the Artificial Neural Network (ANN) model for the Malaysian Sign Language Recognition System. To accomplish this, I made the decision to utilize an ANN as the machine learning model, which is illustrated in the provided image. The ANN architecture encompasses several key components, including an input layer, two hidden layers, and an output layer. The input layer is composed of 42 neurons, which receive the relative x and y coordinates of the 21 keypoints extracted from the MediaPipe hand landmark model. These coordinates serve as the fundamental input data for the ANN model. Moving on to the hidden layers, the first hidden layer consists of 20 neurons, while the second hidden layer is comprised of 10 neurons. Both of these hidden layers employ the Rectified Linear Unit (ReLU) activation function, a non-linear function that aids in capturing complex patterns and relationships within the data. The output layer of the A...