이형준Hyungjoon LeeHyungjoon Lee이형준
PORTFOLIO / 2026

적은 데이터로도학습하는 AI를만듭니다.Building AIthat learnsfrom scarce data.

01

무엇을 하는 사람인가What I Do

Graph Neural Networks · LLM · Few-shot

데이터의 한계가
AI의 한계가 되지 않도록.
So the limits of data
never become the limits of AI.
라벨링 데이터의 부족과
높은 비용 문제를 극복하는
AI를 설계하고 구현합니다.
I design and build AI that
overcomes the scarcity and
high cost of labeled data.

저의 연구는 하나의 질문을 공유합니다 — 모델이 스스로의 불확실성을 알 때, 무엇을 다르게 할 수 있는가. 그래프에서는 애매한 연결을 잘라내고 확신하는 영역을 강화하는 증강으로, 테이블 데이터에서는 LLM의 의미 추론으로 피처를 만드는 방식으로 답을 찾았습니다.My research shares a single question — when a model knows its own uncertainty, what can it do differently? On graphs, the answer is augmentation that cuts ambiguous links and reinforces confident regions; on tabular data, it is building features through the semantic reasoning of LLMs.

연구에만 머무르지 않습니다. 멀티모달 치매 예측 앱의 데이터 파이프라인과 모델 학습을 맡아 배포까지 끌고 갔고, LLM API 유출 탐지 웹 서비스의 언어모델 파인튜닝을 담당했습니다.It doesn't stop at research. I owned the data pipeline and model training of a multimodal dementia-risk app and carried it through to deployment, and handled the language-model fine-tuning of a web service that detects LLM-API data leaks.

Tech Stack
Python C++ PyTorch PyTorch-Geometric scikit-learn Transformers Hugging Face
Notion Slack GitHub Figma
Research Interest
Graph Neural Networks Large Language Models Few-shot Learning Contrastive Learning Uncertainty
02

주요 작업Selected Work

Papers · Shipped systems
Work01
[SCI] IEEE ACCESS · Under Review

GCL-UP: Graph Contrastive Learning via Uncertainty-aware Perturbation for Few-Shot Node Classification

저자: 이형준, 김준태Authors: Hyungjoon Lee, Juntae Kim

대부분의 그래프 대조학습은 엣지를 무작위로 흔들어 증강을 만듭니다. 제안한 GCL-UP는 대신 예측 불확실성을 신호로 씁니다 — 애매한 영역의 연결은 끊고, 확신하는 영역엔 유사한 노드를 새로 잇습니다. 그렇게 만든 두 개의 뷰로 대조학습을 수행합니다.Most graph contrastive learning builds augmentations by perturbing edges at random. The proposed GCL-UP instead uses prediction uncertainty as its signal — severing links in ambiguous regions and drawing new edges between similar nodes in confident ones. Contrastive learning is then run over the two resulting views.

Cora·Citeseer·Coauthor-CS 세 벤치마크의 1~5샷 전 구간에서 최신 기법과 대등하거나 앞섰고, 백본(GCN/GAT/GraphSAGE)에 구애받지 않는 구조적 개선임을 확인했습니다.Across the full 1–5 shot range on the Cora, Citeseer, and Coauthor-CS benchmarks it matched or outperformed state-of-the-art methods, confirming a structural gain that holds regardless of backbone (GCN / GAT / GraphSAGE).

+9.7%p.vs GCN 백본vs. GCN backbone
+3.1%p.vs 최고 baselinevs. best baseline
3datasets인용 네트워크 벤치마크citation-network benchmarks
Graph Neural Networks Graph Contrastive Learning Uncertainty Quantification Graph Perturbation Few-shot Learning
GCL-UP 논문 첫 페이지 (IEEE Access)
GitHub
Work02
[KCI] KCC 2026 · Accepted

레이블 희소 환경에서의 신뢰도 기반 적응형 그래프 신경망 규제 기법Confidence-Based Adaptive Graph Neural Network Regularization under Label Scarcity

저자: 이형준, 김준태Authors: Hyungjoon Lee, Juntae Kim

노드별 엔트로피로 신뢰도를 정량화하고, 이를 그래프 구조에 직접 반영합니다. 신뢰도 높은 노드 쌍엔 엣지를 더해 정보 전파를 강화하고, 낮은 쌍의 엣지는 제거해 노이즈 전파를 억제합니다. 증강 그래프의 손실을 정규화 항으로 결합해 과적합을 완화합니다.It quantifies confidence per node via entropy and folds that directly into the graph structure. Edges are added between high-confidence node pairs to strengthen information flow and removed between low-confidence pairs to suppress noise propagation. The loss on the augmented graph is combined as a regularization term to ease overfitting.

+6.0%pvs best baseline
−5.6%pseed별 stdstd across seeds
GCN · GATBackbone-Agnostic
Graph Neural Networks Label Scarcity Prediction Confidence Adaptive Regularization Graph Augmentation Node Classification
신뢰도 기반 적응형 GNN 규제 논문 첫 페이지 (KCC 2026)
GitHub
Work03
[KCI] KCC 2025 · Accepted · 우수논문상[KCI] KCC 2025 · Accepted · Best Paper

LLM 기반 의미론적 특성 공학을 활용한 퓨-샷 테이블 학습 자동화 프레임워크An Automated Few-Shot Tabular Learning Framework Using LLM-Based Semantic Feature Engineering

저자: 이형준, 김준태Authors: Hyungjoon Lee, Juntae Kim

컬럼 이름과 메타데이터 사이의 attention으로 핵심 피처를 고르고, LLM이 그 위에서 비선형 변환·상호작용 피처를 생성하는 파이썬 코드를 직접 작성합니다. 생성된 피처를 feature-bagging으로 앙상블해, 데이터가 16샷뿐인 환경에서도 성능을 냅니다.It selects key features via attention between column names and metadata, then has an LLM write the Python code that generates nonlinear transformations and interaction features on top. The generated features are ensembled through feature bagging, delivering performance even with only 16 shots of data.

7개 공개 의료 데이터셋에서 TPOT·H2O·AutoGluon·MLJAR·TabPFN을 평균 성능으로 앞섰습니다.Across seven public medical datasets it outperformed TPOT, H2O, AutoGluon, MLJAR, and TabPFN on average.

0.763F17개 데이터 평균 F1-scoremean F1 across 7 datasets
5autoML평균 최고 성능best average performance
0.70%0.76%요소 제거: base→full 성능(Acc)ablation: base → full (Acc)
Large Language Models AutoML Feature Engineering Feature Bagging Few-shot Learning Tabular Data
LLM 퓨샷 테이블 학습 논문 첫 페이지 (KCC 2025)
DBpia GitHub
Work04
SHIPPED PROJECT · 어플리케이션SHIPPED PROJECT · Application

멀티모달 치매 위험 예측 앱Multimodal Dementia-Risk Prediction App

라이프스타일 + 생체정보로 치매 위험을 예측하는 모바일 서비스A mobile service that predicts dementia risk from lifestyle and biometric data

4인 팀의 데이터 전처리·모델 설계·학습을 담당했습니다. 라이프스타일(문답 14항목)과 스마트워치 생체정보(28항목 시계열)를 함께 쓰는 멀티모달 구조로, 서로 다른 사람에게서 수집돼 형식이 다르고 생체 데이터가 부족한 현실 제약을 지도 대조학습 + 도메인 적대 학습으로 풀었습니다. 위험도 시각화 리포트와 공공기관 연계 API까지 배포로 이어졌습니다.On a four-person team I led data preprocessing, model design, and training. The multimodal architecture combines lifestyle data (14 questionnaire items) with smartwatch biometrics (28-item time series); the real-world constraints of mismatched formats and scarce biometric data — collected from different people — were solved with supervised contrastive learning plus domain-adversarial training. It shipped all the way to a risk-visualization report and a public-agency integration API.

Multimodal Learning Supervised Contrastive Learning Generative Adversarial Network (GAN) Domain Adaptation Time-series
멀티모달 치매 위험 예측 앱 화면
GitHub
Work05
SHIPPED PROJECT · 웹 서비스SHIPPED PROJECT · Web Service

VERO

위험한 LLM API 호출을 탐지해 데이터 유출을 막는 웹 플랫폼A web platform that detects risky LLM-API calls to prevent data leaks

제5회 정보보호 SW 개발 공모전 출품작. 4인 팀에서 언어모델(BERT) 파인튜닝과 데이터 수집·전처리, 평가, 배포·서빙을 담당했습니다. 민감정보가 담긴 프롬프트를 걸러내 조직의 데이터가 외부 LLM으로 새는 것을 방지합니다.An entry in the 5th Information Security SW Development Competition. On a four-person team I handled language-model (BERT) fine-tuning along with data collection and preprocessing, evaluation, and deployment/serving. It filters out prompts that contain sensitive information, preventing an organization's data from leaking into external LLMs.

LLM Safety Fine-tuning Data Leakage Detection Model Serving & Deploy
VERO 서비스 화면
GitHub
Work06
SHIPPED PROJECT · 웹 서비스SHIPPED PROJECT · Web Service

FILM'E

독립예술영화관 정보를 한곳에 모으는 웹 플랫폼A web platform that gathers independent art-house cinema info in one place

5명으로 구성된 팀의 백엔드 팀장으로 회원가입·탈퇴, 카카오 소셜 로그인, 마이페이지, 백엔드 서버 배포를 담당했습니다. 독립영화관 정보 제공과 커뮤니티 기반 정보 공유, 마이페이지를 통한 개인 관람 기록 기능을 제공합니다.As the backend lead of a five-person team I built sign-up / withdrawal, Kakao social login, My Page, and backend server deployment. The service offers independent-cinema listings, community-based information sharing, and personal viewing records through My Page.

BackEnd Development Kakao OAuth Authorization / Member My Page Server Deployment
FILM'E 서비스 화면
GitHub YouTube
03

이력Record

Awards · Education · IP

수상 · 성취Awards

2026.082026 성균관대학교 멀티모달 AI Bias 챌린지2026 SKKU Multimodal AI Bias Challenge성균관대학교Sungkyunkwan University신뢰가능한인공지능연구단장상(특별상) · 9thTrustworthy AI Center Director's Award (Special) · 9th
2025.08우수 졸업생Outstanding Graduate동국대학교Dongguk UniversitySumma Cum Laude
2025.082025 Samsung Collegiate Programming Challenge : AI 챌린지2025 Samsung Collegiate Programming Challenge: AISamsung Research본선 진출 · 15thFinalist · 15th
2025.082025 한국소프트웨어종합학술대회(KCC 2025)Korea Computer Congress (KCC 2025)한국정보과학회Korean Institute of Information Scientists and Engineers학부생 우수논문상Best Undergraduate Paper
2025.03LG Aimers 6기 해커톤LG Aimers 6th HackathonLG AI ResearchTop 5% (36th of 794)
2025.03LG Aimers 5기 해커톤LG Aimers 5th HackathonLG AI ResearchTop 10% (78th of 780)
2021.122021 어드벤처디자인경진대회2021 Adventure Design Competition동국대학교Dongguk University단과대학상(장려상)College Award (Encouragement)
2021.09성적우수 장학금Academic Excellence Scholarship동국대학교Dongguk UniversityScholarship
2020.09성적우수 장학금Academic Excellence Scholarship동국대학교Dongguk UniversityScholarship

Learning,
Building,
Improving.

© 이형준 · Hyungjoon Lee © Hyungjoon Lee 2026