Recent posts

[Django] N+1 Query 문제

Date:

본 게시글은 교내 웹/앱 개발 동아리에서 django 세미나를 수강하며 공부한 내용 중 일부를 정리한 것입니다.

[DL/Tabular] CTR Prediction - Avazu Dataset

Date:

Click-through rate prediction is the task of predicting the likelihood that something on a website (such as an advertisement) will be clicked. (출처: Papers...

[Room DB] 중복 데이터 없이 DB 초기화하기

Date:

DAO를 이용해 DB와 통신할 때, @Insert를 이용하여 DB에 INSERT Query를 보내는 함수를 만드는 경우가 있다. 이때 onConflict = IGNORE를 뒤에 붙여주면 중복 데이터 없이 DB를 초기화할 수 있다.