让未来触手可及 Tensorflow Machine Learning Cookbook

Total Page:16

File Type:pdf, Size:1020Kb

让未来触手可及 Tensorflow Machine Learning Cookbook www.aibbt.com 让未来触手可及 TensorFlow Machine Learning Cookbook Explore machine learning concepts using the latest numerical computing library — TensorFlow — with the help of this comprehensive cookbook Nick McClure BIRMINGHAM - MUMBAI www.aibbt.com 让未来触手可及 TensorFlow Machine Learning Cookbook Copyright © 2017 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: February 2017 Production reference: 1090217 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78646-216-9 www.packtpub.com www.aibbt.com 让未来触手可及 Credits Author Project Coordinator Nick McClure Shweta H Birwatkar Reviewer Proofreader Chetan Khatri Safis Editing Commissioning Editor Indexer Veena Pagare Mariammal Chettiyar Acquisition Editor Graphics Manish Nainani Disha Haria Content Development Editor Production Coordinator Sumeet Sawant Arvindkumar Gupta Technical Editor Cover Work Akash Patel Arvindkumar Gupta Copy Editor Safis Editing www.aibbt.com 让未来触手可及 About the Author Nick McClure is currently a senior data scientist at PayScale, Inc. in Seattle, WA. Prior to this, he has worked at Zillow and Caesar's Entertainment. He got his degrees in Applied Mathematics from The University of Montana and the College of Saint Benedict and Saint John's University. He has a passion for learning and advocating for analytics, machine learning, and artificial intelligence. Nick occasionally puts his thoughts and musings on his blog, http://fromdata.org/, or through his Twitter account, @nfmcclure. I am very grateful to my parents, who have always encouraged me to pursue knowledge. I also want to thank my friends and partner, who have endured my long monologues about the subjects in this book and always have been encouraging and listening to me. Writing this book was made easier by the amazing efforts of the open source community and the great documentation of many projects out there related to TensorFlow. A special thanks goes out to the TensorFlow developers at Google. Their great product and skill speaks volumes for itself, and is accompanied by great documentation, tutorials, and examples. www.aibbt.com 让未来触手可及 About the Reviewer Chetan Khatri is a Data Science Researcher with a total of 5 years of experience in research and development. He works as a Lead – Technology at Accionlabs India. Prior to that he worked with Nazara Games where he was leading Data Science practice as a Principal Big Data Engineer for Gaming and Telecom Business. He has worked with leading data companies and a Big 4 companies, where he has managed the Data Science Practice Platform and one of the Big 4 company's resources teams. He completed his master's degree in computer science and minor data science at KSKV Kachchh University and awarded a "Gold Medalist" by the Governer of Gujarat for his "University 1st Rank" achievements. He contributes to society in various ways, including giving talks to sophomore students at universities and giving talks on the various fields of data science, machine learning, AI, and IoT in academia and at various conferences. He has excellent correlative knowledge of both academic research and industry best practices. Hence, he always comes forward to remove the gap between Industry and Academia, where he has good number of achievements. He is the co-author of various courses, such as Data Science, IoT, Machine Learning/AI, and Distributed Databases in PG/UG cariculla at University of Kachchh. Hence, University of Kachchh became first government university in Gujarat to introduce Python as the first programming language in Cariculla and India's first government university to introduce Data Science, AI, and IoT courses in cariculla entire success story presented by Chetan at Pycon India 2016 conference. He is one of the founding members of PyKutch—A Python Community. Currently, he is working on Intelligent IoT Devices with Deep Learning , Reinforcement learning and Distributed computing with various modern architectures. I would like to thanks Prof. Devji Chhanga, head of the Computer Science Department, University of Kachchh, for guiding me to the correct path and for his valuable guidance in the field of data science research. I would also like to thanks Prof. Shweta Gorania for being the first to introduce Genetic Algorithms and Neural Networks. Last but not least I would like to thank my beloved family for their support. www.aibbt.com 让未来触手可及 www.PacktPub.com eBooks, discount offers, and more Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version atwww.PacktPub.com and as a print book customer, you are entitled to a discount on the eBook copy. Get in touch with us at [email protected] for more details. At www.PacktPub.com, you can also read a collection of free technical articles, sign up for a range of free newsletters and receive exclusive discounts and offers on Packt books and eBooks. https://www.packtpub.com/mapt Get the most in-demand software skills with Mapt. Mapt gives you full access to all Packt books and video courses, as well as industry-leading tools to help you plan your personal development and advance your career. Why Subscribe? f Fully searchable across every book published by Packt f Copy and paste, print, and bookmark content f On demand and accessible via a web browser www.aibbt.com 让未来触手可及 Customer Feedback Thank you for purchasing this Packt book. We take our commitment to improving our content and products to meet your needs seriously—that's why your feedback is so valuable. Whatever your feelings about your purchase, please consider leaving a review on this book's Amazon page. Not only will this help us, more importantly it will also help others in the community to make an informed decision about the resources that they invest in to learn. You can also review for us on a regular basis by joining our reviewers' club. If you're interested in joining, or would like to learn more about the benefits we offer, please contact us: [email protected]. www.aibbt.com 让未来触手可及 www.aibbt.com 让未来触手可及 Table of Contents Preface v Chapter 1: Getting Started with TensorFlow 1 Introduction 1 How TensorFlow Works 2 Declaring Tensors 5 Using Placeholders and Variables 7 Working with Matrices 10 Declaring Operations 12 Implementing Activation Functions 16 Working with Data Sources 19 Additional Resources 25 Chapter 2: The TensorFlow Way 27 Introduction 27 Operations in a Computational Graph 28 Layering Nested Operations 29 Working with Multiple Layers 32 Implementing Loss Functions 35 Implementing Back Propagation 41 Working with Batch and Stochastic Training 47 Combining Everything Together 51 Evaluating Models 55 Chapter 3: Linear Regression 61 Introduction 61 Using the Matrix Inverse Method 62 Implementing a Decomposition Method 64 Learning The TensorFlow Way of Linear Regression 67 Understanding Loss Functions in Linear Regression 70 Implementing Deming regression 74 i www.aibbt.com 让未来触手可及 Table of Contents Implementing Lasso and Ridge Regression 78 Implementing Elastic Net Regression 80 Implementing Logistic Regression 83 Chapter 4: Support Vector Machines 89 Introduction 90 Working with a Linear SVM 91 Reduction to Linear Regression 98 Working with Kernels in TensorFlow 102 Implementing a Non-Linear SVM 109 Implementing a Multi-Class SVM 113 Chapter 5: Nearest Neighbor Methods 119 Introduction 119 Working with Nearest Neighbors 121 Working with Text-Based Distances 125 Computing with Mixed Distance Functions 129 Using an Address Matching Example 133 Using Nearest Neighbors for Image Recognition 137 Chapter 6: Neural Networks 143 Introduction 143 Implementing Operational Gates 145 Working with Gates and Activation Functions 149 Implementing a One-Layer Neural Network 153 Implementing Different Layers 157 Using a Multilayer Neural Network 164 Improving the Predictions of Linear Models 170 Learning to Play Tic Tac Toe 176 Chapter 7: Natural Language Processing 185 Introduction 185 Working with bag of words 187 Implementing TF-IDF 193 Working with Skip-gram Embeddings 199 Working with CBOW Embeddings 208 Making Predictions with Word2vec 214 Using Doc2vec for Sentiment Analysis 221 Chapter 8: Convolutional Neural Networks 231 Introduction 232 Implementing a Simpler CNN 233 Implementing an Advanced CNN 240 Retraining Existing CNNs models 250 ii www.aibbt.com 让未来触手可及 Table of Contents Applying Stylenet/Neural-Style 254 Implementing DeepDream 261 Chapter 9: Recurrent Neural Networks 269 Introduction 269 Implementing RNN for Spam Prediction 271 Implementing an LSTM Model 277 Stacking multiple LSTM Layers 287 Creating Sequence-to-Sequence Models 290 Training a Siamese Similarity Measure 298 Chapter 10: Taking TensorFlow to Production 309 Introduction 309 Implementing unit tests 310 Using Multiple Executors 315 Parallelizing TensorFlow 318 Taking TensorFlow to Production 319 Productionalizing TensorFlow – An Example 322 Chapter 11: More with TensorFlow 327 Introduction 327 Visualizing graphs in Tensorboard 327 There's more… 331 Working with a Genetic Algorithm 334 Clustering Using K-Means 339 Solving a System of ODEs 344 Index 347 iii www.aibbt.com 让未来触手可及 www.aibbt.com 让未来触手可及 Preface TensorFlow was open sourced in November of 2015 by Google, and since then it has become the most starred machine learning repository on GitHub.
Recommended publications
  • ACS – the Archival Cytometry Standard
    http://flowcyt.sf.net/acs/latest.pdf ACS – the Archival Cytometry Standard Archival Cytometry Standard ACS International Society for Advancement of Cytometry Candidate Recommendation DRAFT Document Status The Archival Cytometry Standard (ACS) has undergone several revisions since its initial development in June 2007. The current proposal is an ISAC Candidate Recommendation Draft. It is assumed, however not guaranteed, that significant features and design aspects will remain unchanged for the final version of the Recommendation. This specification has been formally tested to comply with the W3C XML schema version 1.0 specification but no position is taken with respect to whether a particular software implementing this specification performs according to medical or other valid regulations. The work may be used under the terms of the Creative Commons Attribution-ShareAlike 3.0 Unported license. You are free to share (copy, distribute and transmit), and adapt the work under the conditions specified at http://creativecommons.org/licenses/by-sa/3.0/legalcode. Disclaimer of Liability The International Society for Advancement of Cytometry (ISAC) disclaims liability for any injury, harm, or other damage of any nature whatsoever, to persons or property, whether direct, indirect, consequential or compensatory, directly or indirectly resulting from publication, use of, or reliance on this Specification, and users of this Specification, as a condition of use, forever release ISAC from such liability and waive all claims against ISAC that may in any manner arise out of such liability. ISAC further disclaims all warranties, whether express, implied or statutory, and makes no assurances as to the accuracy or completeness of any information published in the Specification.
    [Show full text]
  • Archive Utility Download
    archive utility download mac Question: Q: finding archive utility app and uninstalling winzip? i have zip files that now default to WINZIP which i downloaded for a demo and never uninstalled. can someone remind me how to uninstall it again? ALSO, i am trying to set ZIPPED files to open with ARCHIVE UTILITY but i don't see anywhere to set this with the OPEN WITH dialogs. i checked in the UTILITY FOLDER in applications but it is not there. i forget if this is something obvious or what. Mac Pro, macOS 10.13. Posted on Jul 15, 2020 11:46 AM. Anyone who has purchased the product from the WinZip store* within 30 days can get a refund of the purchase price. If you want to arrange a refund, please contact WinZip Service or mail a request to: Mansfield, CT 06268-0540. Please include your name, order number, and postal address in your request. To qualify for a refund, please remove the software from any computers on which you've installed it. Also, please destroy the CD, if you received one. The best way to remove WinZip Mac from your computer is as follows: Click the WinZip icon on the dock Click the WinZip drop down menu and then the Uninstall menu item. Then contact WinZip Service, state that you have removed the software from any computers on which you've installed it (and have destroyed the CD if applicable), and also state that you will no longer be using the software. * Note: If you have purchased WinZip through the Apple Store and believe you are in need of a refund, you must contact the Apple Store.
    [Show full text]
  • SQL Server on Linux
    SQL Server on Linux Configuring and administering Microsoft's database solution Jasmin Azemović BIRMINGHAM - MUMBAI SQL Server on Linux Copyright © 2017 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: August 2017 Production reference: 1100817 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78829-180-4 www.packtpub.com Credits Author Copy Editor Jasmin Azemović Safis Editing Reviewer Project Coordinator Marek Chmel Nidhi Joshi Commissioning Editor Proofreader Amey Varangaonkar Safis Editing Acquisition Editor Indexer Tushar Gupta Pratik Shirodkar Content Development Editor Graphics Cheryl Dsa Tania Dutta Technical Editor Production Coordinator Prasad Ramesh Melwyn Dsa About the Author Jasmin Azemović is a university professor active in the database systems, information security, data privacy, forensic analysis, and fraud detection fields.
    [Show full text]
  • Expert Python Programming Third Edition
    Expert Python Programming Third Edition Become a master in Python by learning coding best practices and advanced programming concepts in Python 3.7 Michał Jaworski Tarek Ziadé BIRMINGHAM - MUMBAI Expert Python Programming Third Edition Copyright © 2019 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. Commissioning Editor: Kunal Chaudhari Acquisition Editor: Chaitanya Nair Content Development Editor: Zeeyan Pinheiro Technical Editor: Ketan Kamble Copy Editor: Safis Editing Project Coordinator: Vaidehi Sawant Proofreader: Safis Editing Indexer: Priyanka Dhadke Graphics: Alishon Mendonsa Production Coordinator: Shraddha Falebhai First published: September 2008 Second edition: May 2016 Third edition: April 2019 Production reference: 1270419 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78980-889-6 www.packtpub.com To my beloved wife, Oliwia, for her love, inspiration, and her endless patience.
    [Show full text]
  • CRIS Automated Interface Guide
    Automated Interface Guide Public and Standard Extracts v18.0 Crash Data and Analysis, Traffic Safety Division Table of Contents 1. Document Information ............................................. 3 1.1 Version Control ......................................................................................................................................... 3 2. Overview .................................................................... 5 3. CRIS Operating System and Browser Support Matrix 5 4. Public Interface ......................................................... 5 4.1 Self-Registration....................................................................................................................................... 5 4.2 Accessing Public Interface ...................................................................................................................... 9 4.3 Create Interface Request ..................................................................................................................... 10 4.4 Download Extracts ................................................................................................................................ 12 5. Standard Interface ................................................ 15 5.1 Self-Registration.................................................................................................................................... 15 5.2 Accessing Standard Interface .............................................................................................................
    [Show full text]
  • Unzip Rar Files Free Software
    Unzip rar files free software Packing / unpacking: 7z, XZ, BZIP2, GZIP, TAR, ZIP and WIM; Unpacking only: AR, ARJ, CAB, CHM, CPIO, We compared 7-Zip with WinRAR Archiver, Mozilla Firefox, Google Earth. 65 files 85 bytes, files And 7-Zip compresses to zip format % better than most of other zip compatible programs.​Download · ​7z Format · ​FAQ · ​Support. WinRAR, free and safe download. WinRAR latest version: The king of compressed files. WinRAR is a program that can be used to open, create and decompress. RAR files can be split into multi-volume archives when dealing with large file sets. Click 1-click Unzip and choose Unzip to PC or Cloud in the WinZip toolbar. Free RAR Extract Frog extracts RAR archive files. RAR files aren't uncommon, but some ZIP tools don't handle the format; even if they do, it's often quicker and. Unzip RAR is a free file decompressing (unzip) tool for RAR archives, it can quickly open and extract files and folders in RAR archives, simple and easy to use. Software provides preview function, it will read RAR archives and show all. free Rar files software. Open, extract 7Z ACE CAB RAR TAR ZIP archives, support + formats. Extract Rar files, free Zip Unzip software. PeaZip Portable. Free portable Zip software, extract Rar files. This is the best solution to bring a complete zip & unzip / unrar utility with you (i.e. on an USB drive), make it. To Open RAR files, you need to install WinRar which is not a free application. Files\RAR File Open Knife - Free Opener\); Use notepad to create a text file.
    [Show full text]
  • Linux Lite 1.0.2 – Basic Computer And
    computer literacy movement construction e - learning of a modern ITdesk.info – society project of computer e-education with an open access - digital literacy handbook human rights e - inclusion to education and information open access Linux Lite 1.0.2 – Basic computer and file managing HANDBOOK Author: Melani Max ITdesk.info – project of computer e-education with open access Original: Author: Gorana Čelebić Subtitle: Osnovno korištenje računala i upravljanje datotekama – Windows 7, priručnik ISBN: 978-953-56758-1-5 Publisher: Otvoreno društvo za razmjenu ideja (ODRAZI), Zagreb Expert review: EdukaCentar, ustanova za obrazovanje, Zagreb Proofreading: Ema Čišić Place and year of publication: Zagreb, 2011. Adjusted for the Linux Lite operating system by: Author: Melani Max Main title: ITdesk.info – projekt računalne e-edukacije sa slobodnim pristupom Subtitle: Linux Lite 1.0.2 - Basic computer and file managing, handbook Translation: Una Šijan Proof-reading: Manuela Sánchez Expert review: Kundan Singh Publisher: Otvoreno društvo za razmjenu ideja (ODRAZI), Zagreb ISBN: 978-953-56758-1-5 Place and year of publication: Zagreb, 2013. Copyright: Feel free to copy, print and re-distribute the whole or a part of this publication, including for the educational purposes, whether public or private educational organizations, but exclusively in non- commercial purposes (therefore, without charging the end users of publication) and with a reference to the source (source: www.ITdesk.info – computer e-education project with a free access). Derivative works without prior approval of the copywright holder (Open Society for the Exchange of Ideas-ODRAZI) are not permitted. Contact for permission for derivative works: [email protected]. ITdesk.info – project of computer e-education with open access PREFACE Today’s society is marked by a sudden growth and development of information technology (IT) field, which has resulted in society being greatly dependent, in a broader sense, on the knowledge and competence of the people working in the IT sector.
    [Show full text]
  • Senomix Timesheets for Mac OS X Self-Installed Server Installation
    Senomix Timesheets for Mac OS X Self-Installed Server Installation Guide v5.2 © 2017 Senomix Software Inc. www.senomix.com Table of Contents 1.0 - Timesheets Server Installation and Use .............................................. 1 2.0 - Server Operation ................................................................................ 7 3.0 - Network Configuration ........................................................................ 8 General Firewall Configuration ................................................................. 8 Network Configuration for External Connections ...................................... 8 VPN Troubleshooting ............................................................................... 9 4.0 - System Uninstall ............................................................................... 10 Appendix I - Installing the Server as a Daemon Process .......................... 11 Senomix Timesheets Macintosh OS X Installation Guide 1.0 - Timesheets Server Installation and Use The Senomix Timesheets Server is the program which will collect all of your office’s time and expense tracking data. To extract your Senomix Server data files from their .zip package, we recommend using the default Mac .zip archive program rather than a third-party tool (such as Zipeg, which can change the application permissions of your Senomix programs and prevent them from running). Please Note: If your server computer uses an anti-virus security system with active scanning, you must whitelist all Senomix applications running on
    [Show full text]
  • Open Rar Free
    Open rar free click here to download 7-Zip is free software with open source. The most of the code is under the GNU LGPL license. Some parts of the code are under the BSD 3- clause License. WinRAR, free and safe download. WinRAR latest WinRAR is a file compression program that can be used to open, create and decompress RAR, ZIP and. Open any RAR file in seconds, for free! New update: Now in addition to RAR, it handles dozens of popular archives, like 7Z, Zip, TAR, LZH, etc. RAR Opener is a . Free RAR files opener, extractor utility. How to open, extract RAR format free, unzip. Work with WinRar archives extraction. Windows, Linux unrar software. Zip, unzip, rar files online. Extract files from archive online, no installation, safe and free. Unzip, unrar decompression in cloud. Uncompress, unzipping tool. Archive Extractor is a small and easy online tool that can extract over 70 types of compressed files, such as 7z, zipx, rar, tar, exe, dmg and much more. WinZip opens RAR files. Use WinZip, the world's most popular zip file utility, to open and extract content from RAR files and other compressed file formats. You cannot put RAR File Open Knife on a portable or flash drive and have it function correctly. However, there is an alternative tool called “RarZille Free Unrar. If you want to create RAR files, WinRAR is your best bet. However, if you just need to extract a RAR file, the free and open source 7-Zip app is a. UnRarX is a free WinRAR- style tool for Mac which allows you to unzip RAR files.
    [Show full text]
  • Juhtolv-Fontsamples
    juhtolv-fontsamples Juhapekka Tolvanen Contents 1 Copyright and contact information 3 2 Introduction 5 3 How to use these PDFs 6 3.1 Decompressing ............................... 6 3.1.1 bzip2 and tar ............................. 8 3.1.2 7zip .................................. 11 3.2 Finding right PDFs ............................. 12 4 How to edit these PDFs 16 4.1 What each script do ............................ 16 4.2 About shell environment .......................... 19 4.3 How to ensure each PDF take just one page .............. 20 4.4 Programs used ................................ 20 4.5 Fonts used .................................. 23 4.5.1 Proportional Gothic ......................... 24 4.5.2 Proportional Mincho ........................ 26 4.5.3 Monospace (Gothic and Mincho) ................. 27 4.5.4 Handwriting ............................. 28 4.5.5 Fonts that can not be used .................... 29 5 Thanks 30 2 1 Copyright and contact information Author of all these files is Juhapekka Tolvanen. Author’s E-Mail address is: juhtolv (at) iki (dot) fi This publication has included material from these dictionary files in ac- cordance with the licence provisions of the Electronic Dictionaries Research Group: • kanjd212 • kanjidic • kanjidic2.xml • kradfile • kradfile2 See these WWW-pages: • http://www.edrdg.org/ • http://www.edrdg.org/edrdg/licence.html • http://www.csse.monash.edu.au/~jwb/edict.html • http://www.csse.monash.edu.au/~jwb/kanjidic_doc.html • http://www.csse.monash.edu.au/~jwb/kanjd212_doc.html • http://www.csse.monash.edu.au/~jwb/kanjidic2/ • http://www.csse.monash.edu.au/~jwb/kradinf.html 3 All generated PDF- and TEX-files of each kanji-character use exactly the same license as kanjidic2.xml uses; Name of that license is Creative Commons Attribution-ShareAlike Licence (V3.0).
    [Show full text]
  • Introducing Postgresql
    PostgreSQL Administration Cookbook 9.5/9.6 Edition Effective database management using PostgreSQL 9.5/9.6 Simon Riggs Gianni Ciolli Gabriele Bartolini BIRMINGHAM - MUMBAI PostgreSQL Administration Cookbook 9.5/9.6 Edition Copyright © 2017 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: April 2017 Production reference: 1250417 Published by Packt Publishing Ltd. Livery Place 35 Livery Street Birmingham B3 2PB, UK. ISBN 978-1-78588-318-7 www.packtpub.com Credits Authors Copy Editor Simon Riggs Safis Editing Gianni Ciolli Gabriele Bartolini Reviewer Project Coordinator Sheldon Strauch Shweta H Birwatkar Commissioning Editor Proofreader Amey Varangaonkar Safis Editor Acquisition Editor Indexer Ajith Menon Aishwarya Gangawane Content Development Editor Graphics Amrita Noronha Tania Dutta Technical Editor Production Coordinator Sneha Hanchate Melwyn Dsa About the Authors Simon Riggs is the CTO of 2ndQuadrant and an active PostgreSQL committer.
    [Show full text]
  • Capacitació Digital Bàsica I Navegacio I Comunicacio I
    Capacitació digital bàsica I NAVEGACIO I COMUNICACIO I NAVEGACIÓ I COMUNICACIÓ I - 1 Navegació i comunicació I ICONES VEURE TAMBÉ ex. VEURE EXEMPLE CONTINGUT COMPLEMENTARI PER SABER-NE MÉS ACTIVITAT SOLUCIÓ Navegació i comunicació I INDEX Presentació ..............................................................................4 Personalitzar el navegador .....................................................5 Barres d’eines ......................................................................................... 5 Complements i extensions ..................................................................... 8 Traductors i visualitzacions prèvies ...................................................... 13 Còpies del navegador .......................................................................... 16 Les barres de navegació ...................................................................... 17 Activitats ................................................................................................ 19 Localitzar informació ............................................................20 Els motors de cerca ............................................................................... 20 Altres eines de localització ................................................................... 24 Estratègies de cerca ............................................................................. 33 Cerca avançada ................................................................................... 34 Activitats ...............................................................................................
    [Show full text]