목록2024/10
반응형
(4)
s5unnyjjj's LOG
LeetCode사용 언어: Python문제 링크: https://leetcode.com/problems/add-two-numbers/ *** 본 문제를 푸는 과정을 공유하려 한다.▶ 차근차근 하나씩 단계를 나누어 보았으며, 크게 3개의 STEP으로 나누어진다. (이 역시 그림으로 그려보니 수월했다.) ▶ 그렇게 각 단계를 포함한 기능들 코드로 작성하면 아래와 같다. class Solution: def addTwoNumbers(self, l1: Optional[ListNode], l2: Optional[ListNode]) -> Optional[ListNode]: reverse_l1 = self.reverse(l1) final_l1 = self.changeList(revers..
Link: https://bdtechtalks.com/2021/01/11/concept-whitening-interpretable-neural-networks/ Deep learning doesn’t need to be a black box - TechTalksConcept whitening is a technique that helps create interpretable deep learning models without incurring performance penalties.bdtechtalks.com 기사 제목: Deep learning doesn't need to be a black box 기술 동향에 관하여 소개하는 것으로 알려진 TechTalks에 소개된 기사를 읽고 작성한 내용입니다.1...
강의 제목: Sequence Models & Attention Mechanism - Basic Models - Picking the Most Likely Sentence - Beam Search 강사: Prof. Andrew Ng VP & Chief Scientist of Baidu; Co Chairman and Co Founder of Coursera; and an Adjunct 위 강의를 보고 내용을 작성하였습니다.1. Basic Models * Sequence models are useful for everything from machine translation to speech recognition - Translation French sentence like Jane visite I’Afr..
Link: https://dl.acm.org/doi/10.1145/3372135 Measuring internet speed: current challenges and future recommendations: Communications of the ACM: Vol 63, No 12Speed testing methods have flourished over the last decade, but none without at least some limitations.dl.acm.org 인터넷 속도 측정에 관한 megazine 을 읽고 요약한 내용을 작성하였습니다.1. Introduction * The accuracy of measurement is critical to assessments - The m..