- Machine Learning With Go
- Daniel Whitenack
- 297字
- 2021-07-08 10:37:24
Conventions
Many Go code snippets will not include package main and func main() {}. It is assumed that Go code snippets are compiled within this necessary structure, unless otherwise noted. It will also be assumed throughout the book that code example are compiled in a directory call myprogram and thus compiled to a myprogram binary. The reader will recognize, however, that the code could be copied to any folder in your GOPATH/src directory and/or compiled to a binary named according to the reader's preference.
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The next lines of code read the link and assign it to the to the BeautifulSoup function." A block of code is set as follows:
#import packages into the project from bs4 import BeautifulSoup from urllib.request import urlopen import pandas as pd
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
[default] exten => s,1,Dial(Zap/1|30)
exten => s,2,Voicemail(u100)
exten => s,102,Voicemail(b100)
exten => i,1,Voicemail(s0)
Any command-line input or output is written as follows:
C:\Python34\Scripts> pip install -upgrade pip C:\Python34\Scripts> pip install pandas
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "In order to download new modules, we will go to Files | Settings | Project Name | Project Interpreter."
- Kubernetes實戰
- Django開發從入門到實踐
- MySQL 8 DBA基礎教程
- Wireshark Network Security
- Xamarin.Forms Projects
- 人人都是網站分析師:從分析師的視角理解網站和解讀數據
- Visual Basic程序設計與應用實踐教程
- Nexus規模化Scrum框架
- Visual Basic程序設計實驗指導(第二版)
- 寫給程序員的Python教程
- Mastering Embedded Linux Programming
- Python預測分析與機器學習
- 新手學ASP.NET 3.5網絡開發
- Daniel Arbuckle's Mastering Python
- Getting Started with SQL Server 2014 Administration