├── .editorconfig ├── .github └── workflows │ ├── README.md │ ├── pr-close-signal.yaml │ ├── pr-comment.yaml │ ├── pr-post-remove-branch.yaml │ ├── pr-preflight.yaml │ ├── pr-receive.yaml │ ├── sandpaper-main.yaml │ ├── sandpaper-version.txt │ ├── update-cache.yaml │ └── update-workflows.yaml ├── .gitignore ├── AUTHORS ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── config.yaml ├── episodes ├── 01-welcome.md ├── 02-AI-in-a-Nutshell.md ├── 03-AI-ML-concepts.md ├── 04-what-is-ml-good-at.md ├── 05-managing-data-bias.md ├── 06-applying-machine-learning.md ├── 07-ecosystem.md └── fig │ ├── 05-business-use-ocr.png │ ├── 05-business-use-ocr.svg │ ├── 05-model-choices-application.svg │ ├── 05-model-choices-external.svg │ ├── 05-model-choices-spacy.svg │ ├── 05-model-choices.png │ ├── 05-predictions-to-actions.png │ ├── 05-predictions-to-actions.svg │ ├── 05-using-model.png │ ├── 05-using-model.svg │ ├── ep-02-4-plots.png │ ├── ep-02-ai-graph.png │ ├── ep-02-date_feature_engineering.png │ ├── ep-03-bird-collection.jpg │ ├── ep-03-cnn-diagram.png │ ├── ep-03-pixplot-github.png │ ├── ep-03-saam_umap.png │ ├── ep-03-titanic_newspaper_cv.png │ ├── ep-04-Google_Inclusive_Activity_1.png │ └── ep-04-Google_Inclusive_Activity_2.png ├── index.md ├── instructors └── instructor-notes.md ├── learners ├── discuss.md ├── reference.md └── setup.md ├── profiles └── learner-profiles.md └── site └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/pr-close-signal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/pr-close-signal.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-post-remove-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/pr-post-remove-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/pr-preflight.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/pr-receive.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/sandpaper-main.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-version.txt: -------------------------------------------------------------------------------- 1 | 0.16.10 2 | -------------------------------------------------------------------------------- /.github/workflows/update-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/update-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/update-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.github/workflows/update-workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Mark Bell 2 | Nora McGregor 3 | Daniel van Strien 4 | Mike Trizna 5 | -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- 1 | FIXME: describe how to cite this lesson. -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/config.yaml -------------------------------------------------------------------------------- /episodes/01-welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/01-welcome.md -------------------------------------------------------------------------------- /episodes/02-AI-in-a-Nutshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/02-AI-in-a-Nutshell.md -------------------------------------------------------------------------------- /episodes/03-AI-ML-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/03-AI-ML-concepts.md -------------------------------------------------------------------------------- /episodes/04-what-is-ml-good-at.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/04-what-is-ml-good-at.md -------------------------------------------------------------------------------- /episodes/05-managing-data-bias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/05-managing-data-bias.md -------------------------------------------------------------------------------- /episodes/06-applying-machine-learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/06-applying-machine-learning.md -------------------------------------------------------------------------------- /episodes/07-ecosystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/07-ecosystem.md -------------------------------------------------------------------------------- /episodes/fig/05-business-use-ocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-business-use-ocr.png -------------------------------------------------------------------------------- /episodes/fig/05-business-use-ocr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-business-use-ocr.svg -------------------------------------------------------------------------------- /episodes/fig/05-model-choices-application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-model-choices-application.svg -------------------------------------------------------------------------------- /episodes/fig/05-model-choices-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-model-choices-external.svg -------------------------------------------------------------------------------- /episodes/fig/05-model-choices-spacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-model-choices-spacy.svg -------------------------------------------------------------------------------- /episodes/fig/05-model-choices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-model-choices.png -------------------------------------------------------------------------------- /episodes/fig/05-predictions-to-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-predictions-to-actions.png -------------------------------------------------------------------------------- /episodes/fig/05-predictions-to-actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-predictions-to-actions.svg -------------------------------------------------------------------------------- /episodes/fig/05-using-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-using-model.png -------------------------------------------------------------------------------- /episodes/fig/05-using-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/05-using-model.svg -------------------------------------------------------------------------------- /episodes/fig/ep-02-4-plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-02-4-plots.png -------------------------------------------------------------------------------- /episodes/fig/ep-02-ai-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-02-ai-graph.png -------------------------------------------------------------------------------- /episodes/fig/ep-02-date_feature_engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-02-date_feature_engineering.png -------------------------------------------------------------------------------- /episodes/fig/ep-03-bird-collection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-03-bird-collection.jpg -------------------------------------------------------------------------------- /episodes/fig/ep-03-cnn-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-03-cnn-diagram.png -------------------------------------------------------------------------------- /episodes/fig/ep-03-pixplot-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-03-pixplot-github.png -------------------------------------------------------------------------------- /episodes/fig/ep-03-saam_umap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-03-saam_umap.png -------------------------------------------------------------------------------- /episodes/fig/ep-03-titanic_newspaper_cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-03-titanic_newspaper_cv.png -------------------------------------------------------------------------------- /episodes/fig/ep-04-Google_Inclusive_Activity_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-04-Google_Inclusive_Activity_1.png -------------------------------------------------------------------------------- /episodes/fig/ep-04-Google_Inclusive_Activity_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/episodes/fig/ep-04-Google_Inclusive_Activity_2.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/index.md -------------------------------------------------------------------------------- /instructors/instructor-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/instructors/instructor-notes.md -------------------------------------------------------------------------------- /learners/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/learners/discuss.md -------------------------------------------------------------------------------- /learners/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/learners/reference.md -------------------------------------------------------------------------------- /learners/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/learners/setup.md -------------------------------------------------------------------------------- /profiles/learner-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/profiles/learner-profiles.md -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryCarpentry/lc-machine-learning/HEAD/site/README.md --------------------------------------------------------------------------------