All Projects → aws-samples → aws-mlu-explain

aws-samples / aws-mlu-explain

Licence: other
Visual, Interactive Articles About Machine Learning: https://mlu-explain.github.io/

Programming Languages

javascript
184084 projects - #8 most used programming language
Jupyter Notebook
11667 projects
HTML
75241 projects
CSS
56736 projects
SCSS
7915 projects
Svelte
593 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to aws-mlu-explain

leaflet heatmap
简单的可视化湖州通话数据 假设数据量很大,没法用浏览器直接绘制热力图,把绘制热力图这一步骤放到线下计算分析。使用Apache Spark并行计算数据之后,再使用Apache Spark绘制热力图,然后用leafletjs加载OpenStreetMap图层和热力图图层,以达到良好的交互效果。现在使用Apache Spark实现绘制,可能是Apache Spark不擅长这方面的计算或者是我没有设计好算法,并行计算的速度比不上单机计算。Apache Spark绘制热力图和计算代码在这 https://github.com/yuanzhaokang/ParallelizeHeatmap.git .
Stars: ✭ 13 (-71.74%)
Mutual labels:  d3, dataviz, datavisualization
Dex
Dex : The Data Explorer -- A data visualization tool written in Java/Groovy/JavaFX capable of powerful ETL and publishing web visualizations.
Stars: ✭ 1,238 (+2591.3%)
Mutual labels:  d3, dataviz, datavisualization
Architecturetree
Draw and share your software architecture without diagramming software. Uses d3.js and Angular.js.
Stars: ✭ 211 (+358.7%)
Mutual labels:  d3, dataviz
Keen Dataviz.js
Data Visualization Charting Library
Stars: ✭ 215 (+367.39%)
Mutual labels:  d3, dataviz
silky-charts
A silky smooth D3/React library
Stars: ✭ 38 (-17.39%)
Mutual labels:  d3, dataviz
Eventdrops
A time based / event series interactive visualization using d3.js
Stars: ✭ 1,164 (+2430.43%)
Mutual labels:  d3, dataviz
Teamchatviz
#teamchatviz
Stars: ✭ 146 (+217.39%)
Mutual labels:  d3, dataviz
reusable-d3-charts
Reusable charts built with D3. Built on Web standards, fully customisable.
Stars: ✭ 33 (-28.26%)
Mutual labels:  d3, dataviz
Treedu
Graphical Disk Usage command for the terminal, using Node.js, d3.js, blessed, and Drawille
Stars: ✭ 10 (-78.26%)
Mutual labels:  d3, dataviz
multi-chart
lit-element building blocks for charts and visualization (based on d3.js v5)
Stars: ✭ 24 (-47.83%)
Mutual labels:  d3, dataviz
lineage
Family Tree Data Expression Engine
Stars: ✭ 90 (+95.65%)
Mutual labels:  d3, dataviz
datalith
Simple, batteries included, components to build beautiful data visualizations
Stars: ✭ 29 (-36.96%)
Mutual labels:  d3, dataviz
Vue D3 Workshop
Workshop content material and excercises for Suncoast Developers
Stars: ✭ 63 (+36.96%)
Mutual labels:  d3, dataviz
V Chart Plugin
Easily bind a chart to the data stored in your Vue.js components.
Stars: ✭ 188 (+308.7%)
Mutual labels:  d3, datavisualization
D3 Parliament
A parliament chart based on D3js
Stars: ✭ 44 (-4.35%)
Mutual labels:  d3, dataviz
ddplot
Create D3 based SVG graphics easily from R
Stars: ✭ 43 (-6.52%)
Mutual labels:  d3, dataviz
react-d3-integration
An example on how to integrate D3 into React
Stars: ✭ 14 (-69.57%)
Mutual labels:  d3, dataviz
Mozaik
Mozaïk is a tool based on nodejs / react / redux / nivo / d3 to easily craft beautiful dashboards
Stars: ✭ 3,546 (+7608.7%)
Mutual labels:  d3, dataviz
Ngx Charts
📊 Declarative Charting Framework for Angular
Stars: ✭ 4,057 (+8719.57%)
Mutual labels:  d3, dataviz
FlowViz
A Power BI template that provides easy to understand, actionable flow metrics and predictive analytics for your agile teams using Azure DevOps, Azure DevOps Server and/or TFS.
Stars: ✭ 150 (+226.09%)
Mutual labels:  dataviz, datavisualization

MLU-Explain Logo & Title

This repository holds the code used for Amazon's MLU-Explain educational articles on machine learning. MLU-Explain exists to illustrate core machine learning concepts using visual essays in a fun, informative, and accessible manner.

This material exists as supplementary educational material for Machine Learning University (MLU), which provides anybody, anywhere, at any time access to the same machine learning courses used to train Amazon’s own developers on machine learning.

Articles

Currently, there are 5 articles published:

Random Forest

Random Forest Article Image

Title: Random Forest

Summary: Learn how the majority vote and well-placed randomness can extend the decision tree model to one of machine learning's most widely-used algorithms, the Random Forest.

Code: /code/random-forest/

Authors: Jenny Yeon, Jared Wilber

Decision Trees

Decision Trees Article Image

Title: Decision Trees

Summary: Explore one of machine learning's most popular supervised algorithms: the Decision Tree. Learn how the tree makes its splits, the concepts of Entropy and Information Gain, and why going too deep is problematic.

Code: /code/decision-tree/

Authors: Jared Wilber, Lucía Santamaría

Bias Variance Tradeoff

Bias Variance Tradeoff Article Image

Title: The Bias Variance Tradeoff

Summary: Understand the tradeoff between under- and over-fitting models, how it relates to bias and variance, and explore interactive examples related to LASSO and KNN.

Code: /code/bias-variance/

Authors: Jared Wilber, Brent Werness

Double Descent: A Visual Introduction

Double Descent Article Image

Title: Double Descent

Summary: Meet the double descent phenomenon in modern machine learning: what it is, how it relates to the bias-variance tradeoff, the importance of the interpolation regime, and a theory of what lies behind.

Code: /code/double-descent/

Authors: Jared Wilber, Brent Werness

Double Descent 2: A Mathematical Explanation

Double Descent 2 Article Image

Title: Double Descent 2

Summary: Deepen your understanding of the double descent phenomenon. The article builds on the cubic spline example introduced in Double Descent 1, describing in mathematical detail what is happening.

Code: /code/double-descent2/

Authors: Brent Werness, Jared Wilber

Running Locally

This article holds code for each articles, as well as the generated builds from the code (e.g. the static assets comprising the articles).

First, clone this repo.

git clone https://github.com/aws-samples/aws-mlu-explain.git

Next, cd into the article of interest and install the required libraries.

# e.g. bias variance tradeoff article
cd bias-variance
# install libraries
npm install

Now, to run the development version:

npm start

To build and view the static assests:

# build assets
npm run build
# view generated article
cd dist/
# run local server
python3 -m http.server # or just `live-server`

License Summary

This open source articles are made available under the Creative Commons Attribution-ShareAlike 4.0 International License. See LICENSE file.

The sample and reference code within this open source book is made available under a modified MIT license. See the LICENSE-SAMPLECODE file.

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].