🎓 Currently pursuing a M.S. in Computer Science and Engineering at Seoul National University (서울대학교)
🔬 Research Interests: My goal is to improve the efficiency and performance of language models without retraining or fine-tuning.
- LLM Decoding
- LLM Optimization
- Information Retrieval
🏛️ Lab: Language and Data Intelligence Laboratory (ldi.snu.ac.kr), under the supervision of Prof. Hwang (황 교수님).
class Romain extends Student {
final String username;
String location;
String[] skills;
Romain() {
username = "romsto";
location = "South Korea"; // "France"
skills = {"Large Language Models", "Deep Learning", "Software Engineering"};
}
Education[] getEducation() {
Education[] myEducation = new Education[2];
// Currently attending
myEducation[1] = new EducationBuilder().degree(Degree.MASTER_OF_SCIENCE)
.university("Seoul National University")
.subjects("AI", "Natural Language Processing", "LLM", "Transformers")
.attending();
myEducation[0] = new EducationBuilder().degree(Degree.MASTER_OF_ENGINEERING)
.university("IMT Mines Alès")
.subjects("Computer Science", "AI", "General Engineering")
.finished();
return myEducation;
}
String[] getGoals() {
return {"Feed my curiosity", "Contribute to humanity", "Accelerate & Improve LLMs"};
}
String getContact() {
return "romsto@snu.ac.kr";
}
}