All Projects → music1353 → Pyhowfun

music1353 / Pyhowfun

Licence: mit
🌻 提供一系列的 Python 教學,讓初學者或是有程式基礎的人,快速融入 Python 的世界

Projects that are alternatives of or similar to Pyhowfun

Quilt
Quilt is a self-organizing data hub for S3
Stars: ✭ 1,007 (+2297.62%)
Mutual labels:  jupyter-notebook
Icml2020
Notebook for comprehensive analysis of authors, organizations, and countries of ICML 2020 papers.
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Bayesgan
Tensorflow code for the Bayesian GAN (https://arxiv.org/abs/1705.09558) (NIPS 2017)
Stars: ✭ 1,011 (+2307.14%)
Mutual labels:  jupyter-notebook
Openpmd Viewer
🐍 Python visualization tools for openPMD files
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Slow disentanglement
Towards Nonlinear Disentanglement in Natural Data with Temporal Sparse Coding
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Infectious disease modelling
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Tigertoolbox
Toolbox repository for Tiger team
Stars: ✭ 1,003 (+2288.1%)
Mutual labels:  jupyter-notebook
Ntm Tensorflow
"Neural Turing Machine" in Tensorflow
Stars: ✭ 1,013 (+2311.9%)
Mutual labels:  jupyter-notebook
Siren Fastai2
Unofficial implementation of 'Implicit Neural Representations with Periodic Activation Functions'
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Keras Pytorch Avp Transfer Learning
We pit Keras and PyTorch against each other, showing their strengths and weaknesses in action. We present a real problem, a matter of life-and-death: distinguishing Aliens from Predators!
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Algorithms
🍣 Implementations of fundamental algorithms and data structures. Happy Hacktoberfest!
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Mitx Foundations Of Computer Science
The Foundations of Computer Science XSeries, offered by the M.I.T. Department of Electrical Engineering and Computer Science, is a sequence of courses that introduce key concepts of computer science and computational thinking. Students apply these concepts and build their engineering skills by completing software and hardware design problems. Additionally, students test their understanding by taking a series of exams.
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Machine Learning From Scratch
Succinct Machine Learning algorithm implementations from scratch in Python, solving real-world problems (Notebooks and Book). Examples of Logistic Regression, Linear Regression, Decision Trees, K-means clustering, Sentiment Analysis, Recommender Systems, Neural Networks and Reinforcement Learning.
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Bdaca
Course Materials Big Data and Automated Content Analysis
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Tensorflow Seq2seq Tutorials
Dynamic seq2seq in TensorFlow, step by step
Stars: ✭ 1,011 (+2307.14%)
Mutual labels:  jupyter-notebook
Practical dl
DL course co-developed by YSDA, HSE and Skoltech
Stars: ✭ 1,006 (+2295.24%)
Mutual labels:  jupyter-notebook
Mp
公众号《林骥》的文章和代码
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Computervision Recipes
Best Practices, code samples, and documentation for Computer Vision.
Stars: ✭ 8,214 (+19457.14%)
Mutual labels:  jupyter-notebook
Tensorflow Programs And Tutorials
Implementations of CNNs, RNNs, GANs, etc
Stars: ✭ 1,012 (+2309.52%)
Mutual labels:  jupyter-notebook
Deeptrading
Deep Neural Network Trading collection of Tensorflow Jupyter notebooks
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook

Python 好好玩

提供一系列的 Python 教學,讓初學者或是有程式基礎的人,快速融入 Python 的世界

❗提醒:有時 Github 對於 .ipynb 會渲染失敗,可以使用 nbviewer 瀏覽教程

Python Anaconda

環境

編輯器:Anaconda Jupyter Notebook

Python版本:Python 3.6

課程內容

  • LESSON 1 Python基本程式設計

    介紹 Python 特有的資料型態及語法

  • LESSON 2 模組module

    介紹 Python 常用的模組,並有簡單的範例

  • LESSON 3 物件導向 (Object-oriented, OO)

    介紹 Python 的物件導向

  • LESSON 4 爬蟲實戰 - 高鐵時刻

    利用 LESSON 2 學到的一些爬蟲模組,實作爬取高鐵時刻表

  • LESSON 5爬蟲實戰 - 爬取圖片

    爬取網路圖片教學

  • LESSON 6 爬蟲實戰 - 用Selenium爬取圖片

    使用 Selenium 這個自動化測試套件,藉由控制瀏覽器,批量的爬取圖片

環境建置 & 編輯器

推薦 Anaconda 的 Jupyter Notebook 作為入門的編輯器

可以在網頁直接編輯並執行,並且自動安裝好大部分的模組 (或稱套件、module、模塊)

Anaconda 下載官方網站:點我

Imgur

➜ 選擇對應的作業系統

Imgur

➜ 下載 Python 3.6 版本

  1. Windows

    Imgur

    ➜ 下載完成後,可以找到 Anaconda Navigator 並執行

    Imgur

    ➜ 執行 Anaconda Navigator 後,點擊 notebook 上的 Launch 按鈕,便可執行編輯器

    Imgur

    Imgur

    ➜ 點擊右上角的 New,並選擇要創建的檔案類型。點擊 Python3 便可建立新的文件

    Imgur

    Imgur

    ➜ 使用 Ancaonda Prompt,可直接執行 python 命令,或是利用 pip 安裝相關套件

  2. Mac OSX

    Imgur

    ➜ 執行 Anaconda Navigator

    Imgur

    ➜ 點擊 notebook 上的 Launch 按鈕,便可執行編輯器

    Imgur

    Imgur

    Imgur

    ➜ 點擊右上角的 New,並選擇要創建的檔案類型。點擊 Python3 便可建立新的文件

    Imgur

    ➜ 透過終端機 (Terminal),可直接執行 python 命令,或是利用 pip 安裝相關套件

Jupyter Notebook 教學

請參閱 Jupyter Notebook 教學

License

2018, Ching-Hsuan Su

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].