1. 모델링 전략 모델링을 사용하는 이유 - 여러 하위 수준의 문제를 포함하는 복잡한 문제 - 데이터가 충분한 대표성을 띄지 않는 경우 ex 1) 정적 특징과 동적 특징을 모두 사용해 악성코드를 탐지 1. 하나의 모델에 정적/동적 특징을 모두 학습 좋은 특징 선별, 학습 매개변수 설정 2. 여러 모델 조합 (stacking) 각 특징별 모델 학습, 모델의 분석 결과를 종합하여 결론 1차 모델의 결과는 true/false, 확률 등 여러 stacking 모델 디자인 - 여러 특징 정보 중 카테고리에 맞추어 각각 다른 모델에 학습 - 한 가지 모델로 결과를 낸 뒤 결과값에 따라 다른 모델 적용 (ex. 정적 분석 정보 기반으로 학습 후 값의 범위에 따라 동적 분석 정보 추가 학습) - 클러스터링하여 각 군집..
https://leetcode.com/problems/longest-common-prefix/ Longest Common Prefix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 난이도: Easy Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Not..
https://leetcode.com/problems/palindrome-number/ Palindrome Number - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 난이도: Easy Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Follow up: Coud you solve it without c..
https://leetcode.com/problems/two-sum/ Two Sum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 난이도: Easy Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and y..