Recording the progress of deploying the NLP project by fastAPI, docker and streamlit. FastAPI Create an api for others to use to generate scripts by sending a prompt. 1. Create a n
Notebook archive
Writing notes
Loose pages, technical margins, and small notes gathered into a readable stack.
-
-
OC Objective-C 程序的编译过程 通过命令查看某个OC源文件编译过程: clang -ccc-print-phases xxx.m Clang前端处理 1. Lexical Analysis (词法分析) 2. Grammatical Analysis (语法分析) 3. Semantic Analysis (语义分析) 4. Intermedi
-
iOS客户端开发工程师面试题记录 Objective-C 语言特性: 1.面向对象中的封装, 继承, 多态分别是什么? 体现在哪些地方? 是怎么使用的? 2.动态类型(id类型)是什么? 在OC中是怎么使用的? 为什么需要使用id类型? 它和其他的类型有什么区别吗? 3.动态绑定(关键词@selector)是什么? 在OC中是如何使用的? 为什么需要使用动态
-
Todo List 1. Neural Network Notes 2. K-neighbors and SVM method 3. Relu function 3. multiclass classification (softmax) and numerical round-off error (using linear output and 'from
-
Neural Network Model Why do we need Neural Network? --- There is a weakness in both linear regression and logistic regression: the model needs to do a large amount of calculation w
-
记录scikit learn库的使用 Logistic Regression --- Loading Dataset Split the train/test set Fit the Model Make Predictions Evaluate Accuracy