Difference between revisions of "Watch me Build a Retail Startup"
Line 16: | Line 16: | ||
== SmartSneaks == | == SmartSneaks == | ||
I've built a demo app called SmartSneaks that lets a user convert a song or image into a generated shoe design! This is an example of how AI can be used to transform retail by giving users a more personalized experience. The tools I used to build this are the Flutter framework for mobile development and the Flask framework for web development. There are 3 learning objectives in this video including how to build a deep learning API for your mobile app, how to generate images with a generative adversarial network, and how to calculate image similarity with OpenCV. [http://github.com/llSourcell/Build-a-Retail-Startup Build a Retail Startup | Siraj Raval - GitHub] | I've built a demo app called SmartSneaks that lets a user convert a song or image into a generated shoe design! This is an example of how AI can be used to transform retail by giving users a more personalized experience. The tools I used to build this are the Flutter framework for mobile development and the Flask framework for web development. There are 3 learning objectives in this video including how to build a deep learning API for your mobile app, how to generate images with a generative adversarial network, and how to calculate image similarity with OpenCV. [http://github.com/llSourcell/Build-a-Retail-Startup Build a Retail Startup | Siraj Raval - GitHub] | ||
+ | |||
+ | [http://github.com/llSourcell/Build-a-Retail-Startup/blob/master/Retail_Startup.ipynb Jupyter Notebook for project] | ||
+ | |||
* [http://flutter.dev/ Flutter] is Google’s portable UI toolkit for building natively-compiled applications for mobile, web, and desktop from a single codebase. | * [http://flutter.dev/ Flutter] is Google’s portable UI toolkit for building natively-compiled applications for mobile, web, and desktop from a single codebase. | ||
Line 36: | Line 39: | ||
Check out [http://becominghuman.ai/creating-restful-api-to-tensorflow-models-c5c57b692c10 this post] on how to create your own [[Generative Adversarial Network (GAN)]] API with [[TensorFlow]] and [[Python#Flask |Flask]]. Deploy it to [http://www.heroku.com/ Heroku] and call it from [http://flutter.dev/ Flutter]. | Check out [http://becominghuman.ai/creating-restful-api-to-tensorflow-models-c5c57b692c10 this post] on how to create your own [[Generative Adversarial Network (GAN)]] API with [[TensorFlow]] and [[Python#Flask |Flask]]. Deploy it to [http://www.heroku.com/ Heroku] and call it from [http://flutter.dev/ Flutter]. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<youtube>fF6f0nzlfUA</youtube> | <youtube>fF6f0nzlfUA</youtube> | ||
+ | <youtube>yz6dNf7X7SA</youtube> |
Revision as of 20:50, 30 July 2019
YouTube search... ...Google search
- How do I leverage AI?
- Watch me Build a Marketing Startup | Siraj Raval
- Watch me Build a Healthcare Startup | Siraj Raval
- Watch me Build a Finance Startup | Siraj Raval
- Watch me Build a Trading Bot | Siraj Raval
SmartSneaks
I've built a demo app called SmartSneaks that lets a user convert a song or image into a generated shoe design! This is an example of how AI can be used to transform retail by giving users a more personalized experience. The tools I used to build this are the Flutter framework for mobile development and the Flask framework for web development. There are 3 learning objectives in this video including how to build a deep learning API for your mobile app, how to generate images with a generative adversarial network, and how to calculate image similarity with OpenCV. Build a Retail Startup | Siraj Raval - GitHub
- Flutter is Google’s portable UI toolkit for building natively-compiled applications for mobile, web, and desktop from a single codebase.
- Dart is a client-optimized language for fast apps on any platform
- Firebase | Google's service & mobile development platform
- Payments
- Spotify
- Spotipy! a lightweight Python library for the Spotify Web API. With Spotipy you get full access to all of the music data provided by the Spotify platform.
- Spotify.py a primarily, asyncronous library (everything down to the HTTP client is asyncio friendly).
- TensorFlow 2.0 (with Keras)
- OpenCV Open Computer Vision - work with images and/or videos and wish to add a variety of classical and state-of-the-art vision algorithms to their toolbox.
- Flask microframework for Python
Check out this post on how to create your own Generative Adversarial Network (GAN) API with TensorFlow and Flask. Deploy it to Heroku and call it from Flutter.