0% found this document useful (0 votes)
5 views

python_cheatsheet_3

Uploaded by

spanidea.kaon1
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

python_cheatsheet_3

Uploaded by

spanidea.kaon1
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

[Test Sheet] Help Alice Find Her Coding Dad!

+ BONUS

Solve puzzle 332! Solve puzzle 93!

Solve puzzle 137!


Solve puzzle 441!

+ BONUS
Solve puzzle 369!

Solve puzzle 377!

+ BONUS

Solve puzzle 366!

„Continuous Improvement in Your Coffee Break Python!“


[Cheat Sheet] 6 Pillar Machine Learning Algorithms
Complete Course: https://academy.finxter.com/

Linear Regression K­Means Clustering


https://blog.finxter.com/logistic­regression­in­one­line­python/ https://blog.finxter.com/tutorial­how­to­run­k­means­
clustering­in­1­line­of­python/

K Nearest Neighbors Support Vector Machine


https://blog.finxter.com/k­nearest­neighbors­as­a­
python­one­liner/
Classification
https://blog.finxter.com/support­vector­machines­python/

Support vector

A: 50𝑚2 , $34,000
Logic skills

B: 55𝑚2 , $33,500
House Price ($)

C: 45𝑚2 , $32,000
A
B
$99,500
D‘: 52𝑚2 ,
3 Decision
C 3NN
≈ (52𝑚2 , $33,167)
boundary
Computer Scientist
2
D: (52𝑚 , ? ) Artist
House Size (square meter)
Creativity skills

Decision Tree Classification Multilayer Perceptron


https://blog.finxter.com/decision­tree­learning­in­one­line­python/
https://blog.finxter.com/tutorial­how­to­create­your­first­neural­
network­in­1­line­of­python­code/

Like maths?
N
Y

„Study Like language?


computer
Y N
science!“

„Study Like painting?


linguistics!“
Y N

„Study art!“
„Study history!“

„Continuous Improvement in Your Coffee Break Python!“


The Simple Git Cheat Sheet – A Helpful Illustrated Guide
The Centralized Git Workflow

• Every coder has own copy of project


• Independence of workflow Git Master Branch
• No advanced branching and merging needed

Remote Repository:
Master Branch

Alice Bob
git init

Clone Create new repository


git clone alice@host:/path/repos

Clone repository
Clone
git add main.py </> git clone bob@host:/path/repos
Add file „main.py“ to project

git commit –m “new file” „new file“

Commit change and add message


„new file“ to the master branch

git push origin master

Send master branch to remote


repository Push
</>

„new file“

Pull
git pull </>

Update local repository


with master branch „new file“

git add * </> </>


Add all changes to master

git rm main.py </>


Remove file „main.py“ from
master branch

git commit –m “add 2, rem 1” „add 2,


rem 1“
Commit change and add
message to the master

git push origin master


</> </> Send master branch to
Push remote repository

„A Puzzle A Day </>


to Learn, Code,
and Play!“ „add 2, rem 1“

You might also like