[Kaggle] Argania Tree Deforestation Detection (2)
·
🏃 Routine
https://bnmy6581.tistory.com/118 [Kaggle] Argania Tree Deforestation Detection (1) - EDA https://en.wikipedia.org/wiki/Argania Argania - Wikipedia From Wikipedia, the free encyclopedia Genus of trees Argania (Tashelhit: ⴰⵔⴳⴰⵏ Argan) is a genus of flowering plants containing the sole species Argania spinosa, known as argan, a tree end bnmy6581.tistory.com Feature Importance (remove B12, B9, B1, B..
[leetcode-121] Best Time to Buy and Sell Stock
·
🐢 One step
LeetCode-121 Best Time to Buy and Sell Stock : 싸게 사서 비싸게 팔아라! note : max(profit)myAnswer :::python class Solution: def maxProfit(self, prices: List[int]) -> int: len_prices = len(prices) if len_prices
[leetcode-238] Product of Array Except Self
·
🐢 One step
LeetCode-238 Product of Array Except Self : Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i]. note : Follow up: Can you solve the problem in O(1) extra space complexity? (The output array does not count as extra space for space complexity analysis.)Answer :::python class Solution: def productExceptSelf(self..
[leetcode-561] Array Partition
·
🐢 One step
LeetCode-561 Array Partition : find maximum (minimum list) note : len(list) = 2nmyAnswer :::python class Solution: def arrayPairSum(self, nums: List[int]) -> int: nums.sort() return sum(nums[::2]) Result : 267ms Memory: 16.7mb
[Whisper] (1) - Abstract & Introduction
·
👾 Deep Learning
https://github.com/openai/whisper GitHub - openai/whisper: Robust Speech Recognition via Large-Scale Weak Supervision Robust Speech Recognition via Large-Scale Weak Supervision - GitHub - openai/whisper: Robust Speech Recognition via Large-Scale Weak Supervision github.com Paper Review Abstract & Introduction 680,000 시간의 다국어 학습을 진행 시 fine-tuning 없이 zero-shot transfer benchmark 수준의 결과를 얻을 수 있다. ..
[leetcode-15] Three Sum
·
🐢 One step
LeetCode-15 Match Three sum : Notice that the solution set must not contain duplicate triplets. note : myAnswerMyAnswer(Time Limit Exceeded) O(n^2) :::python class Solution: def threeSum(self, nums: List[int]) -> List[List[int]]: a = [] nums.sort() for i, n in enumerate(nums): d = {} for j in range(i+1,len(nums)): complete = - (n + nums[j]) if complete in d: if sorted([n, nums[j], complete]) not..
[leetcode-42] Trapping Rain Water
·
🐢 One step
LeetCode-42 Trapping Rain Water : Trapping rain water. find volume note : Tip: swapAnswer :::python class Solution: def trap(self, height: List[int]) -> int: if not height: return 0 volume = 0 left, right = 0, len(height) - 1 left_max, right_max = height[left], height[right] while left
[Kaggle] Argania Tree Deforestation Detection (1) - EDA
·
🏃 Routine
https://en.wikipedia.org/wiki/Argania Argania - Wikipedia From Wikipedia, the free encyclopedia Genus of trees Argania (Tashelhit: ⴰⵔⴳⴰⵏ Argan) is a genus of flowering plants containing the sole species Argania spinosa, known as argan, a tree endemic to the calcareous semidesert Sous valley of southwest en.wikipedia.org Central wavelength (nm)Bandwidth (nm)Central wavelength (nm)Bandwidth (nm)Sp..
다했다