
Artificial Intelligence
文章平均质量分 90
AI related notes
KnightHacker2077
CSNOOB
展开
-
Pandas
panda datafram and series.原创 2022-09-11 08:57:10 · 515 阅读 · 1 评论 -
Python Language Megadoc
python language quick guide原创 2022-09-05 13:50:04 · 466 阅读 · 0 评论 -
Big data 001 -- what is big data?
Introduction to what big data is, and create definitions.原创 2022-08-26 02:38:12 · 601 阅读 · 0 评论 -
Linear Algebra 002 -- Changing basis
Changing BasisBasis transformation matrix: the basis vectors in my basis as columnsbasis vectors are [3,1] and [1,1]transformation matrix * vector in new basis = vector in my basisnew basis vector: [3/2, 1/2], my basis vector: [5, 2]Moving the..原创 2022-01-03 15:11:02 · 308 阅读 · 0 评论 -
ML 001 -- Nearest Neighbor, KNN, Embedding
Set up tensorflow on M1 pro:Github tutorial:GitHub - mrdbourke/m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.https://github.com/mrdbourke/m1-machine-learning-test Youtube tutorial:https://www.youtube.com/watch?v..原创 2021-12-22 09:58:49 · 213 阅读 · 0 评论 -
Linear Algebra -- Intro to vector
Linear combinationspicturesFor vector u, v, wSometimes, 3 vectors fill a plane instead of a space, criteria as follows --For vector u, v, w,if you can find c, d so that w = cu + dv, then w lies on the plane ofcu + dv, and u+v+w alsoformsthe...原创 2021-12-21 04:10:27 · 338 阅读 · 0 评论 -
Beautiful_Soup 自学笔记 001 -- 创建Beautiful Soup对象, Features Argument, TreeBuilder & Parsers
Beautiful_Soup 自学笔记 0011. 创建Beautiful Soup对象方法一:通过string来创建# Method 1 -- Create from Stringhello = "<p>Hello</p>"soup_str = BeautifulSoup(hello)方法二:通过URL来创建# Method 2 -- Create from URLurl = 'https://mcc.osu.edu/events.aspx'page =原创 2020-12-18 17:47:22 · 369 阅读 · 1 评论