Homeowners Coverage (towneinsurance.com)
12/27/2023
Home owner's coverage A B C D E F, what does those mean?
12/13/2023
MS SQL learning note
- comments: /* comments */ or --comments
- Right click on a table -> "Select TOP 1000 Rows" will run the script below:
- SELECT TOP (1000) [RoomID]
- ,[RoomNumber]
- ,[BedType]
- ,[Rate]
- FROM Table.[ROOMS]
12/12/2023
11/14/2023
11/11/2023
10/26/2023
10/22/2023
10/21/2023
8/07/2023
7/08/2023
binary search problem
Generic Binary Search Snippet
left = 0 right = len(nums)-1 while left <= right: #update mid mid = left+(right-left)//2 if "find the element" do something # return mid index elif "cut the left half" left = mid+1 else "cut the right half" right = mid-1 return "no found" # if not found, return left index
7/05/2023
7/02/2023
Having vs Where Clause in SQL
It is not a predefined rule but in a good number of the SQL queries, we use WHERE prior to GROUP BY and HAVING after GROUP BY. The Where clause acts as a pre filter where as Having as a post filter.
https://www.geeksforgeeks.org/having-vs-where-clause-in-sql/
4/23/2023
presentation material
Useful photos on probalistic Bayesian Deep learning model
https://towardsdatascience.com/bayesian-inference-and-transformers-3dc473ac1af2
Explain poster predictive distribution
https://www.youtube.com/watch?v=R9NQY2Hyl14
Sammuer Muller video (author):
https://www.youtube.com/watch?v=XnngBWe2WYE&t=1906s
Few shot learning
https://www.analyticsvidhya.com/blog/2021/05/an-introduction-to-few-shot-learning/
4/09/2023
3/18/2023
订阅:
评论 (Atom)
