├── .gitignore ├── LICENSE ├── README.md ├── README_french.md ├── docs ├── .nojekyll ├── README.md ├── _sidebar.md ├── chapter1 │ ├── chapter1.md │ └── chapter1_FR.md ├── chapter10 │ └── chapter10.md ├── chapter11 │ └── chapter11.md ├── chapter12 │ └── chapter12.md ├── chapter13 │ └── chapter13.md ├── chapter14 │ └── chapter14.md ├── chapter15 │ └── chapter15.md ├── chapter16 │ └── chapter16.md ├── chapter2 │ ├── chapter2.md │ ├── chapter2_FR.md │ └── resources │ │ └── images │ │ ├── roc.pdf │ │ ├── roc.png │ │ └── roc.pptx ├── chapter3 │ └── chapter3.md ├── chapter4 │ ├── chapter4.md │ └── resources │ │ ├── 4_11.pptx │ │ ├── 4_11_a.pdf │ │ ├── 4_11_b.pdf │ │ ├── 4_11_c.pdf │ │ └── 4_11_d.pdf ├── chapter5 │ └── chapter5.md ├── chapter6 │ └── chapter6.md ├── chapter7 │ └── chapter7.md ├── chapter8 │ └── chapter8.md ├── chapter9 │ └── chapter9.md ├── errata.md └── index.html └── res ├── example.png ├── nangua.jpg ├── nangua_v2.jpg ├── pumpkin.png ├── qrcode.jpeg ├── xigua.jpg ├── yanggao1.jpg └── yanggao2.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/README.md -------------------------------------------------------------------------------- /README_french.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/README_french.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/chapter1/chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter1/chapter1.md -------------------------------------------------------------------------------- /docs/chapter1/chapter1_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter1/chapter1_FR.md -------------------------------------------------------------------------------- /docs/chapter10/chapter10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter10/chapter10.md -------------------------------------------------------------------------------- /docs/chapter11/chapter11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter11/chapter11.md -------------------------------------------------------------------------------- /docs/chapter12/chapter12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter12/chapter12.md -------------------------------------------------------------------------------- /docs/chapter13/chapter13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter13/chapter13.md -------------------------------------------------------------------------------- /docs/chapter14/chapter14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter14/chapter14.md -------------------------------------------------------------------------------- /docs/chapter15/chapter15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter15/chapter15.md -------------------------------------------------------------------------------- /docs/chapter16/chapter16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter16/chapter16.md -------------------------------------------------------------------------------- /docs/chapter2/chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter2/chapter2.md -------------------------------------------------------------------------------- /docs/chapter2/chapter2_FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter2/chapter2_FR.md -------------------------------------------------------------------------------- /docs/chapter2/resources/images/roc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter2/resources/images/roc.pdf -------------------------------------------------------------------------------- /docs/chapter2/resources/images/roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter2/resources/images/roc.png -------------------------------------------------------------------------------- /docs/chapter2/resources/images/roc.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter2/resources/images/roc.pptx -------------------------------------------------------------------------------- /docs/chapter3/chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter3/chapter3.md -------------------------------------------------------------------------------- /docs/chapter4/chapter4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter4/chapter4.md -------------------------------------------------------------------------------- /docs/chapter4/resources/4_11.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter4/resources/4_11.pptx -------------------------------------------------------------------------------- /docs/chapter4/resources/4_11_a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter4/resources/4_11_a.pdf -------------------------------------------------------------------------------- /docs/chapter4/resources/4_11_b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter4/resources/4_11_b.pdf -------------------------------------------------------------------------------- /docs/chapter4/resources/4_11_c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter4/resources/4_11_c.pdf -------------------------------------------------------------------------------- /docs/chapter4/resources/4_11_d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter4/resources/4_11_d.pdf -------------------------------------------------------------------------------- /docs/chapter5/chapter5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter5/chapter5.md -------------------------------------------------------------------------------- /docs/chapter6/chapter6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter6/chapter6.md -------------------------------------------------------------------------------- /docs/chapter7/chapter7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter7/chapter7.md -------------------------------------------------------------------------------- /docs/chapter8/chapter8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter8/chapter8.md -------------------------------------------------------------------------------- /docs/chapter9/chapter9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/chapter9/chapter9.md -------------------------------------------------------------------------------- /docs/errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/errata.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/docs/index.html -------------------------------------------------------------------------------- /res/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/example.png -------------------------------------------------------------------------------- /res/nangua.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/nangua.jpg -------------------------------------------------------------------------------- /res/nangua_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/nangua_v2.jpg -------------------------------------------------------------------------------- /res/pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/pumpkin.png -------------------------------------------------------------------------------- /res/qrcode.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/qrcode.jpeg -------------------------------------------------------------------------------- /res/xigua.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/xigua.jpg -------------------------------------------------------------------------------- /res/yanggao1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/yanggao1.jpg -------------------------------------------------------------------------------- /res/yanggao2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datawhalechina/pumpkin-book/HEAD/res/yanggao2.jpg --------------------------------------------------------------------------------