Giter Site home page Giter Site logo

huhuhang / aibydoing-feedback Goto Github PK

View Code? Open in Web Editor NEW
53.0 3.0 2.0 20 KB

动手实战人工智能系列教程,希望从监督学习开始,带你入门机器学习和深度学习。我尝试剖析和推导每一个基础算法的原理,将数学过程写出来,同时基于 Python 代码对公式进行实现,做到公式和代码的一一对应。与此同时,我也会利用主流的开源框架重复同样的过程,帮助读者看出手动实现和主流框架实现之间的区别。

Home Page: https://aibydoing.com

ai deep-learning hands-on jupyter labs machine-learning pandas python pytorch scikit-learn

aibydoing-feedback's Issues

Tips on reading aibydoing.com

First of all, thank you for your selfless contribution and open source such high-quality content!
It is recommended to add "previous chapter" and "next chapter" exchange buttons to the web page, which can greatly improve the reading experience. Thank you!

There is running error for Chapter 3.9.1 sample code

Please check the sample code to read a csv fine online at Chapter 3.9.1.

import pandas as pd

df = pd.read_csv(
    "https://cdn.aibydoing.com/hands-on-ai/files/course-5-boston.csv"
)
df.head()

This may throw a HTTP 403 error. And adding 'User-Agent' parameter could resolve this issue. For example:

import pandas as pd
storage_options = {'User-Agent': 'Mozilla/5.0'}
df = pd.read_csv(
    "https://cdn.aibydoing.com/hands-on-ai/files/course-5-boston.csv",
storage_options=storage_options)
df.head()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.