blob: 1c2b14e4eb9a19c4abefc4510d67ca127e392db9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<?php
$key=$_POST["My_key"];
if($key=="")
$key="ab";//uniqid("");
include("../header_new.inc");
?>
<!-- Site navigation menu -->
<ul class="navbar">
<li><a href="../bn_file_load_gom.php">Learn a network model from data</a>
<li><a href="../home_upload.php">Make predictions using a known structure</a>
<li><a href="../help.php">Help</a>
<li><a href="../faq.php">FAQ</a>
<li><a href="../home.php">Home</a>
</ul>
<div id="outer">
<!-- Main content -->
<br>
<h2>Car Diagnosis [<a href="../example.php?My_key=examplecar15node|eIA">View network</a>]</h2>
</br>
<p>
Car Diagnosis is an example of Bayesian Network structure originally designed by Norsys Software Corp. The example structure shows the relationships between different parts of a car. This network includes 15 discrete variables. Label values of the variables are annotated in the following table. </br>
</br><table border="1">
<tr>
<th>Variables</th><th>Label 1</th><th>Label 2</th><th>Label 3</th>
</tr>
<tr>
<td>Voltage_at_plug</td><td>1=none</td><td>2=weak</td><td>3=strong</td>
</tr>
<tr>
<td>Car_cranks</td><td>1=False</td><td>2=True</td>
</tr>
<tr>
<td>Spark_plugs</td><td>1=fouled</td><td>2=too wide</td><td>3=okay</td>
</tr>
<tr>
<td>Spark_quality</td><td>1=very bad</td><td>2=bad</td><td>3=good</td>
</tr>
<tr>
<td>Distributer</td><td>1=faulty</td><td>2=okay</td>
</tr>
<tr>
<td>Spark_timing</td><td>1=very bad</td><td>2=bad</td><td>3=good</td>
</tr>
<tr>
<td>Car_starts</td><td>1=False</td><td>2=True</td>
</tr>
<tr>
<td>Headlights</td><td>1=off</td><td>2=dim</td><td>3=bright</td>
</tr>
<tr>
<td>Alternator</td><td>1=faulty</td><td>2=okay</td>
</tr>
<tr>
<td>Charging_system</td><td>1=faulty</td><td>2=okay</td>
</tr>
<tr>
<td>Battery_voltage</td><td>1=dead</td><td>2=weak</td><td>3=strong</td>
</tr>
<tr>
<td>Battery_age</td><td>1=very old</td><td>2=old</td><td>3=new</td>
</tr>
<tr>
<td>Main_fuse</td><td>1=blown</td><td>2=okay</td>
</tr>
<tr>
<td>Starter_system</td><td>1=faulty</td><td>2=okay</td>
</tr>
<tr>
<td>Starter_motor</td><td>1=faulty</td><td>2=okay</td>
</tr>
</table>
</br>
</p>
</div>
</body>
</html>
|