Google Cloud Sprint June 2018: Difference between revisions
From Federal Burro of Information
Jump to navigationJump to search
No edit summary |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 23: | Line 23: | ||
* rating | * rating | ||
* related product recommendations | * related product recommendations | ||
Story: | |||
* users writes a list | |||
* as lines are added, products are suggested, refined. detergent ... suggestions would be name brands. | |||
** two thigns come back : 1. actual instances of carrot that are local, and 2. recommendation other products | |||
* auto fill | |||
<pre> | |||
drwxr-xr-x 2 ec2-user ec2-user 4096 Jun 19 21:52 . | |||
drwxrwxr-x 4 ec2-user ec2-user 4096 Jun 21 03:56 .. | |||
-rw-r--r-- 1 ec2-user ec2-user 9477776 Jun 19 03:46 CRM.csv | |||
-rw-r--r-- 1 ec2-user ec2-user 140005 Jun 19 21:38 DataSet_Summary.pdf | |||
-rw-r--r-- 1 ec2-user ec2-user 35314392 Jun 19 04:06 DFP.csv | |||
-rw-r--r-- 1 ec2-user ec2-user 6787959 Jun 19 04:16 Instore Transaction Data.csv | |||
-rw-r--r-- 1 ec2-user ec2-user 3638770 Jun 19 03:57 Product_Inventory.csv | |||
-rw-r--r-- 1 ec2-user ec2-user 6017340 Jun 19 04:08 Ratings.csv | |||
-rw-r--r-- 1 ec2-user ec2-user 7945 Jun 19 03:56 Stores.csv | |||
-rw-r--r-- 1 ec2-user ec2-user 12071423 Jun 19 04:24 Transaction Data.csv | |||
</pre> | |||
one mthod ofr comming up for a recommendations: | |||
== I euclidiant distance == | |||
given list X find a list that's clostes to existing lists. |
Latest revision as of 04:03, 21 June 2018
reg page: https://cloudplatformonline.com/2018-Toronto-Retail-Hackathon-Reg
Google group https://groups.google.com/a/hackworks.com/forum/#!forum/cloudsprint
qwik lab courses: ML APIs Beginner course or the Data/ML/AI Quest
https://google.qwiklabs.com/focuses/1019?parent=catalog&qlcampaign=77-518-hml-34
The plan
classical traveling sales team.
Subtems:
- front end
- back end
- ML
Compute best path
- price
- number of hops
- rating
- related product recommendations
Story:
- users writes a list
- as lines are added, products are suggested, refined. detergent ... suggestions would be name brands.
- two thigns come back : 1. actual instances of carrot that are local, and 2. recommendation other products
- auto fill
drwxr-xr-x 2 ec2-user ec2-user 4096 Jun 19 21:52 . drwxrwxr-x 4 ec2-user ec2-user 4096 Jun 21 03:56 .. -rw-r--r-- 1 ec2-user ec2-user 9477776 Jun 19 03:46 CRM.csv -rw-r--r-- 1 ec2-user ec2-user 140005 Jun 19 21:38 DataSet_Summary.pdf -rw-r--r-- 1 ec2-user ec2-user 35314392 Jun 19 04:06 DFP.csv -rw-r--r-- 1 ec2-user ec2-user 6787959 Jun 19 04:16 Instore Transaction Data.csv -rw-r--r-- 1 ec2-user ec2-user 3638770 Jun 19 03:57 Product_Inventory.csv -rw-r--r-- 1 ec2-user ec2-user 6017340 Jun 19 04:08 Ratings.csv -rw-r--r-- 1 ec2-user ec2-user 7945 Jun 19 03:56 Stores.csv -rw-r--r-- 1 ec2-user ec2-user 12071423 Jun 19 04:24 Transaction Data.csv
one mthod ofr comming up for a recommendations:
I euclidiant distance
given list X find a list that's clostes to existing lists.