-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.htm
149 lines (145 loc) · 6.75 KB
/
index.htm
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="images/favicon.ico" rel="icon" type="image/ico">
<link href="css/ai.css" rel="stylesheet">
<link href="css/menus.css" rel="stylesheet">
<meta name="keywords" content="Javascript, AI , Kunstmatige Intelligentie, k-means, ann, apriori, basket analysis, neural network">
<meta name="description" content="Cursus Kunstmatige Intelligentie">
<meta name="author" content="John Val, Hans van den Burg, Hennie Huijgens, Daniël Haitink, Tim Steenvoorden,Jochem Baas">
<title>Artificiële Intelligentie</title>
<script language="JavaScript" type="text/javascript">
<!--
function zetFrameHoogte()
{
// height window
const htobj=document.getElementById("toonschermAI");
const menuObj=document.getElementById("theMenu");
if(htobj)
{
const h=window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
const topCanvas=htobj.getBoundingClientRect().top;
// console.log("Top canvas " + topCanvas);
// console.log("heigt " + h);
// console.log("window.innerHeight " + window.innerHeight);
htobj.style.height=(h-topCanvas)+"px";
htobj.height=(h-topCanvas);
}
if(menuObj)
{
const iconObj=document.getElementById("iconh");
const width = window.innerWidth
|| document.documentElement.clientWidth
|| document.body.clientWidth;
if(width > 1024 )
{
menuObj.style.display="block";
if(iconObj) iconObj.style.display="none";
}
else
{
menuObj.style.display="none";
if(iconObj) iconObj.style.display="inline-block";
}
}
}
function toggleMenu()
{
var menuObj=document.getElementById("theMenu");
var iconObj=document.getElementById("iconh");
if(menuObj.style.display=="block")
{
menuObj.style.display="none";
iconObj.style.display="inline-block";
}
else
{
menuObj.style.display="block";
iconObj.style.display="none";
}
}
window.onresize=zetFrameHoogte;
//-->
</script>
</head>
<body onload="zetFrameHoogte();" class="index">
<div class="sidenav links" id="theMenu">
<a id="icon" onclick="toggleMenu();">❌</a>
<a href="introductie.html" id="introductie" class="Ahoofdstuk" target="NtoonschermAI">Introductie</a>
<hr>
<div class="noitem">Algemeen</div>
<hr>
<div class="dropdown">
<button class="dropbtn Ahoofdstuk" >Achtergrond ▶</button>
<div class="dropdown-content">
<a class="Aparagraaf" href="inleiding_achtergrond.html" target="NtoonschermAI">Inleiding</a>
<a class="Aparagraaf" href="achtergrond_introductie.html" target="NtoonschermAI">Introductie</a>
<a class="Aparagraaf" href="achtergrond_geschiedenis.html" target="NtoonschermAI">Geschiedenis en toekomst</a>
<a class="Aparagraaf" href="achtergrond_intelligentie.html" target="NtoonschermAI">Wanneer is iets intelligent</a>
<a class="Aparagraaf" href="achtergrond_praktijk.html" target="NtoonschermAI">In de praktijk</a>
<a class="Aparagraaf" href="terugkoppeling_achtergrond.html" target="NtoonschermAI">Terugkoppeling</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn Ahoofdstuk">Ethiek ▶</button>
<div class="dropdown-content">
<a class="Aparagraaf" href="inleiding_ethiek.html" target="NtoonschermAI">Inleiding</a>
<a class="Aparagraaf" href="ethiek_gevarenAI.html" target="NtoonschermAI">Gevaren van AI</a>
<a class="Aparagraaf" href="ethiek_FAST.html" target="NtoonschermAI">De FAST principes</a>
<a class="Aparagraaf" href="ethiek_FAIR.html" target="NtoonschermAI">FAIR data</a>
<a class="Aparagraaf" href="terugkoppeling_ethiek.html" target="NtoonschermAI">Terugkoppeling</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn Ahoofdstuk">Technieken ▶</button>
<div class="dropdown-content">
<a class="Aparagraaf" href="inleiding_technieken.html" target="NtoonschermAI">Inleiding</a>
<a class="Aparagraaf" href="techniek_introductie.html" target="NtoonschermAI">Introductie</a>
<a class="Aparagraaf" href="techniek_machine_learning.html" target="NtoonschermAI">Machine learning</a>
<a class="Aparagraaf" href="techniek_associatie_analyse.html" target="NtoonschermAI">Associatie analyse</a>
<a class="Aparagraaf" href="techniek_cluster_analyse.html" target="NtoonschermAI">Cluster analyse</a>
<a class="Aparagraaf" href="techniek_neurale_netwerken.html" target="NtoonschermAI">Neurale netwerken</a>
<a class="Aparagraaf" href="techniek_eigen_quickdraw.html" target="NtoonschermAI">Eigen quickdraw</a>
<a class="Aparagraaf" href="techniek_multi_agent.html" target="NtoonschermAI">Multi-agentsystemen</a>
<a class="Aparagraaf" href="terugkoppeling_technieken.html" target="NtoonschermAI">Terugkoppeling</a>
</div>
</div>
<hr>
<div class="noitem">Verdieping</div>
<hr>
<div class="dropdown">
<button class="dropbtn Ahoofdstuk">Ethiek en AI ▶</button>
<div class="dropdown-content">
<a class="Aparagraaf" href="inleiding_ethiekenai.html" target="NtoonschermAI">Inleiding</a>
<a class="Aparagraaf" href="ethiek_fast_fair.html" target="NtoonschermAI">FAST en FAIR</a>
<a class="Aparagraaf" href="ethiek_standaarden_richtlijnen.html" target="NtoonschermAI">AI-standaarden en -richtlijnen</a>
<a class="Aparagraaf" href="ethiek_engheidsmatrix.html" target="NtoonschermAI">De engheidsmatrix</a>
<a class="Aparagraaf" href="ethiek_opdracht_essay.html" target="NtoonschermAI">Opdracht: Essay ethiek en AI</a>
<a class="Aparagraaf" href="ethiek_opdracht_ontwerp.html" target="NtoonschermAI">Opdracht: ontwerp een AI toepassing</a>
</div>
</div>
<hr>
<div class="dropdown">
<button class="dropbtn Ahoofdstuk">Neurale netwerken ▶</button>
<div class="dropdown-content">
<a class="Aparagraaf" href="inleiding_neurale_netwerken.html" target="NtoonschermAI">Inleiding</a>
<a class="Aparagraaf" href="neurale_netwerken_leren.html" target="NtoonschermAI">Hoe een neuraal netwerk leert.</a>
<a class="Aparagraaf" href="neurale_netwerken_meer_lagen.html" target="NtoonschermAI">Op weg naar meer lagen</a>
<a class="Aparagraaf" href="neurale_netwerken_tensorflow.html" target="NtoonschermAI">Opdracht: Tensorflow app</a>
<a class="Aparagraaf" href="neurale_netwerken_chatbot.html" target="NtoonschermAI">Opdracht: Chatbot</a>
</div>
</div>
<hr>
<a href="docentenhandreiking.html" id="overons" class="noitem" target="NtoonschermAI">Handreiking docent</a>
<hr>
<a href="over_ons.html" id="overons" class="noitem" target="NtoonschermAI">Over ons</a>
</div>
<div class="main">
<header id="toptitel" ><a id="iconh" class="links" onclick="toggleMenu();">≡</a> Kunstmatige intelligentie</header>
<iframe class='pagina' id="toonschermAI" name="NtoonschermAI" src="introductie.html"></iframe>
</div>
</body>
</html>