Learner Reviews & Feedback for Structuring Machine Learning Projects by DeepLearning.AI
About the Course
Top reviews
WG
Mar 18, 2019
Though it might not seem imminently useful, the course notes I've referred back to the most come from this class. This course is could be summarized as a machine learning master giving useful advice.
ED
Aug 22, 2020
Excellent start for digging into topics that are not taught nowhere else. The author books 'Machine Learning Yearning' is a great next read that goes deeper in some of the aspects, really recommended.
4576 - 4600 of 5,745 Reviews for Structuring Machine Learning Projects
By Oumar B
•May 2, 2020
top
By 华卓隽
•May 11, 2019
666
By Diego F
•Sep 26, 2018
TOP
By Vikram M
•Sep 17, 2017
o
o
d
By laixiaohang
•Aug 27, 2017
很实战
By Keshav B
•Jun 10, 2020
<3
By Radoslav N
•Oct 15, 2019
ok
By Ming G
•Aug 25, 2019
gj
By Pham X V
•Nov 6, 2018
:
)
By Xiangning C
•Aug 19, 2017
好!
By Abdel R k a M
•Jul 15, 2022
O
By jkfx
•Dec 28, 2020
酷
By Valerii P
•Sep 17, 2020
!
By Parth P
•Apr 19, 2020
-
By Uday B C
•Sep 30, 2019
.
By sonal g
•Sep 28, 2019
f
By Ishmael M
•Jul 15, 2019
V
By Caoliangjie
•Feb 20, 2019
T
By Dayvid V
•Oct 31, 2018
f
By Michele C
•Jul 25, 2018
v
By Huifang L
•May 7, 2018
V
By Yujie C
•Feb 1, 2018
好
By Bapiraju J
•Oct 18, 2017
G
By StudyExchange
•Aug 21, 2017
V
By Aleksei A K
•Jun 22, 2023
This is an excellent course for those who want to develop applications that use neural networks meaningfully. However, I did not find hints on solving the problem of what data to put on the input level.
For example, for a neural network that evaluates a chess position, there can be at least 4 different approaches to this: 64 numbers or codes that describe the content of each of the cells of the chessboard; 32 numbers describing the position of chess pieces (or maybe 64 again, if we describe the position of each piece by vertical and horizontal lines, and not by the single cell number; 10 64-bit sets that give the placement of the same type of pieces (5 types, each from a pawn to a king, taking into account 2 colors) on a chessboard (this is the representation used by the leading chess programs to maximize the speed of enumeration of possible lines of moves); finally, just a variable length standard FEN string, which gives the generally accepted description of a chess position (however, also line-by-line for each of the horizontals, i.e., consisting of 8 parts). Before doing this by trial and error, I would like to hear some kind of "philosophy" about this.
Also, at the end of this course, I would like to try to work with the code in Notebook, as it was in the previous ones.