Projects
Research on applying (Evidential Neural Network) and meta learning scheme to Molecular Property Prediction. Supervised molecular property prediction is widely recognized for its usefulness in various applications. However, challenges arise due to inadequate and imbalanced labeled data, making the learning process difficult. Additionally, ensuring the reliability of predictions is crucial, particularly in cost and safety-critical fields like drug discovery. EM3P2 utilizes an evidential graph isomorphism network classifier trained on multi-task molecular property datasets, incorporating a model-agnostic meta-learning (MAML) approach. (Code Link)
Simple project applying LINK PREDICTION method using PYG on DACON job_recommendation dataset. There were a lot of things to consider.
1. Building Node_representation of RESUME NODE and RECRUITMENT NODE from Tabular data. (used BERT model to get embedding of string feature)
2.Building Heteregenous graph
3. Hetereogenous GNN
4. How to rank the links
Followed the (PYG tutorial) and was able to apply it on new data. (Code Link)
Toy project from Reinforcement Learning class. Reproduced DQN using Gymnasium cartpole. DQN serves as an entry-level implementation for understanding RL and its application in Deep Neural Networks. Using the Cartpole environment provided by OpenAI Gym, we can observe how the agent learns to balance the pole by training it with the DQN algorithm. (Code Link)
Toy project from Human Centered AI class. Time series data consists of observations made at specific time points, which can be analyzed to understand past dependencies and predict future patterns. Audio classification, particularly in the field of music, involves categorizing audio recordings based on factors like genre, instruments, and tempo. Traditional machine learning methods are used in this project to extract features from the audio data, such as Amplitude Envelope, RMS Energy, ZCR, Spectral Centroid, Bandwidth, MFCC, and chroma features. These features are then used to train models like RandomForestClassifier, SVM, and LogisticRegression to classify music and achieve accuracy in the classification task.(Code Link)