- Mastering Machine Learning for Penetration Testing
- Chiheb Chebbi
- 182字
- 2021-06-25 21:03:01
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "First, check your Python version with the python --version command."
A block of code is set as follows:
from keras import [what_to_use]
from keras.models import Sequential
from keras.layers import Dense
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
model = Sequential()
# N = number of neurons
# V = number of variable
model.add(Dense(N, input_dim=V, activation='relu'))
# S = number of neurons in the 2nd layer
model.add(Dense(S, activation='relu'))
model.add(Dense(1, activation='sigmoid')) # 1 output
Any command-line input or output is written as follows:
>>> import tensorflow as tf
>>> Message = tf.constant("Hello, world!")
>>> sess = tf.Session()
>>> print(sess.run(Message))
Bold: Indicates a new term, an important word, or words that you see onscreen.
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- 物聯網與北斗應用
- GPS/GNSS原理與應用(第3版)
- 物聯網檢驗檢測技術
- 重新定義Spring Cloud實戰
- Windows Server 2003 Active Directory Design and Implementation: Creating, Migrating, and Merging Networks
- 通信簡史:從信鴿到6G+
- 數字通信同步技術的MATLAB與FPGA實現:Altera/Verilog版(第2版)
- NB-IoT物聯網技術解析與案例詳解
- Spring 5.0 Projects
- Kong網關:入門、實戰與進階
- 網絡設計與應用(第2版)
- Learning Windows 8 Game Development
- Android UI Design
- 物聯網工程概論
- Laravel Application Development Cookbook