designers, and entrepreneurs of all skill levels, genders, religions, and backgrounds are welcome to learn, practice, and share Google technologies, services, and platforms. Our motto is “Be excellent to each other” if you see or experience anything different, please contact GDG Seattle organizers. 2
GCP essentials for those new to GCP 10:30AM Baseline: Data, ML, AI 12:00PM Lunch 12:30PM Continue labs in Baseline: Data, ML, AI 2PM Start labs in ML APIs 3PM Wrap up 3
Google Groups bit.ly/GoogleGroups-CloudStudyJam-GDGSeattle • All attendees should have free access to qwiklabs for 1 month • Must finish the Baseline: Data, ML, AI quest to earn a badge and get another month of free access. 4
Definitive Guide (on O’Reilly Safari) • Qwiklab: Data Science on the Google Cloud Platform • Coursera: ◦ Data Engineering on Google Cloud Platform Specialization ◦ Machine Learning with TensorFlow on Google Cloud Platform Specialization ◦ Advanced Machine Learning with TensorFlow on Google Cloud Platform Specialization • BigQuery book: Google BigQuery: The Definitive Guide • Data science book: Data Science on the Google Cloud Platform • Follow Margaret on Medium | Twitter to learn “ML and TensorFlow” 6
showed us during the Study Jam: Usa names query: SELECT name, SUM(IF(gender = 'M', number, 0)) AS is_male, SUM(IF(gender = 'F', number, 0)) AS is_female, SUM(number) AS tot FROM `bigquery-public-data.usa_names.usa_1910_current` group by name having is_male > 0 AND is_female > 0 AND is_male / (is_male + is_female) BETWEEN 0.3 and 0.7 order by tot desc limit 10 7