[Paper Review] MEM1: Learning to Synergize Memory and Reasoning for Efficient Long-Horizon AgentsFeb 8, 2026·3 min read
[Paper Review] Revolutionizing Speaker Recognition and Diarization: A Novel Methodology in Speech AnalysisJul 5, 2025·6 min read
[Paper Review] Development of a machine learning approach for prediction of red blood cell transfusion in patients undergoing Cesarean section at a single institutionThe current interest of mine is leaned towards the AI research applied to biomedical or healthcare domains. While scanning through papers, I spotted this paper and I decided to have a look at it. IndeApr 4, 2026·5 min read
[Paper Review] Training a Helpful and Harmless Assistant withReinforcement Learning from Human FeedbackMay 25, 2025·4 min read
[Paper Review] Object Recognition and Positioning with Neural Networks: Single Ultrasonic Sensor Scanning ApproachApr 27, 2025·6 min read
[Paper Review] DeepSeek-R1 Incentivizing Reasoning Capability in LLMs via Reinforcement LearningIt has not been a long time since DeepSeek was released. It was indeed a shock to those who are in AI industry. I was not familiar with LLM’s algorithm and the computing resource usage of the LLMs. All I was doing was to utilise the LLM APIs for deve...Apr 20, 2025·6 min read
[LeetCode] Top Interview 150 Problems Solving # 80 Remove Duplicates from Sorted Array IIUnderstanding the Problem An integer list of nums has numbers that could be either duplicate or non-duplicate. It is to leave 1-2 values for each number in the list in-place, which means it is nothing to do with returning any value from the method. #...Apr 2, 2025·3 min read
[LeetCode] Top Interview 150 Problems Solving # 151 Reverse Words in a StringUnderstanding the Problem A string is given with spaces. The string could be a single character or a complete sentence. It is to reverse the string by words. The spaces at the edges should be cut off. # example 1 Input: s = "the sky is blue" Output: ...Mar 28, 2025·2 min read
[LeetCode] Top Interview 150 Problems Solving # 392 Is SubsequenceUnderstanding the Problem Given strings s and t, it is to tell whether s is the subsequence to t. It is not finding if the characters in s exist in t. Well basically it is, but the sequence matters too. # example Input: s = "abc", t = "ahbgdc" Output...Mar 26, 2025·2 min read
[LeetCode] Top Interview 150 Problems Solving # 242 Valid AnagramUnderstanding the Problem It is to find valid anagram. Anagram is a word, as for this problem, which can be rearranged to be formed another word. In this problem, s and t strings are given with characters each, and they can form exactly the same word...Mar 25, 2025·2 min read
[LeetCode] Top Interview 150 Problems Solving # 205 Isomorphic StringsUnderstanding the Problem There are strings as s and t. The length of s and length of t are equal as len(s) == len(t). This problem requires deciding whether s and t are isomorphic, which means they have the same structure, or pattern. As an example,...Mar 24, 2025·3 min read