Difference between revisions of "Scratchpad"

From Family History Book
Line 21: Line 21:
 
* [https://www.hackster.io/mjrobot/tinyml-made-easy-image-classification-cb42ae Image Classification with TinyML] using ESP32S3
 
* [https://www.hackster.io/mjrobot/tinyml-made-easy-image-classification-cb42ae Image Classification with TinyML] using ESP32S3
 
* [https://www.hackster.io/taunoerik/capture-images-with-grove-vision-ai-sensor-c8906c Image Capture with Grove Vision AI Sensor]
 
* [https://www.hackster.io/taunoerik/capture-images-with-grove-vision-ai-sensor-c8906c Image Capture with Grove Vision AI Sensor]
 +
* [https://wiki.seeedstudio.com/Train-Deploy-AI-Model-Grove-Vision-AI/ Train & Deploy AI Model with Grove Vision AI]
  
 
==Discord Tips==
 
==Discord Tips==

Revision as of 14:10, 16 May 2023


Back to Private


Learning

Courses to Take

Tech Stuff

Wio Terminal Links

TinyML

Discord Tips

  • To include some code in your post, surround the code in single backticks (`) for inline code, or triple backticks for a block of code.
  • You can add an optional language marker to get syntax highlighting for that language. Common markers are py, c, and sh.
`​`​`py
# Check for equals.
if a == b:
    print("Match")
`​`​`
becomes:
# Check for equals.
if a == b:
    print("Match")