- 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."
- 自然語(yǔ)言處理實(shí)戰(zhàn):預(yù)訓(xùn)練模型應(yīng)用及其產(chǎn)品化
- Network Automation Cookbook
- Python Game Programming By Example
- Learn Scala Programming
- Windows Presentation Foundation Development Cookbook
- Reactive Programming With Java 9
- Backbone.js Blueprints
- Hands-On Microservices with Kotlin
- JavaScript動(dòng)態(tài)網(wǎng)頁(yè)開(kāi)發(fā)詳解
- Scala謎題
- Spring快速入門(mén)
- Haskell Data Analysis Cookbook
- Julia高性能科學(xué)計(jì)算(第2版)
- Python圖形化編程(微課版)
- Fast Data Processing with Spark(Second Edition)