Skip to content

Commit

Permalink
Finished Talk
Browse files Browse the repository at this point in the history
  • Loading branch information
ejboettcher committed Dec 31, 2023
1 parent e7b8ad7 commit 8a62ec4
Show file tree
Hide file tree
Showing 60 changed files with 6,777 additions and 147 deletions.
20 changes: 10 additions & 10 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## GemCity ML: No /Low Code ML Tutorial
### July 20, 2023
### Dec 30, 2023
### Evelyn J. Boettcher

![WTM](./data/WTM_Logo_Stacked_Horizontal_Color.png)
![WTM](./talk/data/WTM_Logo_Stacked_Horizontal_Color.png)

Evelyn J. Boettcher will go through a Google Women Techmakers educational tutorial on how to make an image classifier application with No/Low Code.
Evelyn J. Boettcher's tutorial based on a Google Women Techmakers educational tutorial on how to make an image classifier application with No/Low Code.

This tutorial is designed to encourage kids to go into Computer Science by gently introducing them to AI and Machine learning. No Coding or ML experience needed.

Expand All @@ -14,18 +14,18 @@ This is a step-by-step guide to build an ML image application

| Subject | Image |
|:---- |:----------------------------------|
| Train a model | ![](./data/teachable_machine.png) |
| Export Model | ![](./data/export_model.png) |
| Integrat Model | ![](./data/evelyn_peace.png) |
| Train a model | ![](./talk/data/teachable_machine.png) |
| Export Model | ![](./talk/data/export_model.png) |
| Integrate Model | ![](./talk/data/evelyn_peace.png) |



### In this Repo

* Lesson Plan
* Slide Deck
* Web Application
* Student Low Code Web Application
* [Lesson Plan](./docs/lessonplan.pdf)
* [Slide Deck](./docs/slide_deck.html)
* [Web Application](./docs/application_demo/index.html)
* [Student Low Code Web Application](./docs/application_demo/)



Expand Down
2 changes: 1 addition & 1 deletion docs/application_demo/my_model.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function predict() {
const prediction = await model.predict(webcam.canvas);
let myEmoji = "❓";
let max_i = maxPredictions + 1;
let max_prob = 0.35;
let max_prob = 0.40;
for (let i = 0; i < maxPredictions; i++) {
const classPrediction =
prediction[i].className + ": " + prediction[i].probability.toFixed(2);
Expand Down
File renamed without changes.
Binary file added docs/img/computer_on_fire.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/lessonplan.pdf
Binary file not shown.
Loading

0 comments on commit 8a62ec4

Please sign in to comment.