-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathC1_W1_Assignment.html
24 lines (24 loc) · 1.11 KB
/
C1_W1_Assignment.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head></head>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-vis@latest"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="https://cdn.plot.ly/plotly-2.8.3.min.js"></script>
<body>
<h1 style="text-align: center">Breast Cancer Classification</h1>
<p style="text-align: center">
This is a classification problem where the goal is to predict whether a<br />
patient has cancer or not. The data is from the Wisconsin Breast Cancer<br />
Diagnostic (WCD) Database. The data is a set of features that describe<br />
a patient's characteristics. The goal is to predict whether the patient<br />
has cancer or not.
</p>
<div id="data-table"></div>
<h3 style="text-align: center">
The model is training in the browser.<br />
You can see its progress in the console of you browser (inspect elements).
</h3>
</body>
<script src="data_ploting.js"></script>
<script src="model_training.js" lang="js"></script>
</html>