-
Notifications
You must be signed in to change notification settings - Fork 0
/
course_machine_learning.html
134 lines (104 loc) · 3.01 KB
/
course_machine_learning.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
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Course</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="K.Code">
<meta name="keywords" content="K.Code,プログラミング,プログラミングスクール,学生,学生から始めるプログラミング,学生から始められるプログラミングスクール,学生用プログラミングスクール,学生向けのプログラミングスクール,中学,高校,大学">
<link rel="stylesheet" href="css/style_course_machine_learning.css">
<link rel="stylesheet" href="css/slide.css">
<script src="js/openclose.js"></script>
<script src="js/fixmenu.js"></script>
<script src="js/scroll.js"></script>
<script src="js/fixmenu_pagetop.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(window).scroll(function() {
var windowH = $(window).height(),
scrollY = $(window).scrollTop();
$('#python-other h2, #python-other h3, #python-other h4').each(function() {
var elPosition = $(this).offset().top;
if (scrollY > elPosition - windowH) {
$(this).addClass("fadein");
}else{
$(this).removeClass("fadein");
}
});
});
</script>
<!--フェードイン-->
</head>
<body>
<header>
<div class="fix-background White">
<nav id="menubar">
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#course">Course</a></li>
<li><a href="index.html#schedule">Schedule</a></li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="contents">
<div class="fix-background python-programing-competitions">
<div id="python-app">
<h2>Machine Learning</h2>
<h3>
</br>
Level ★★★★☆
</h3>
<h4>
</br>
AIの領域の一つである機械学習を利用して、回帰問題と分類問題を解くコースです。</br>
</h4>
</div>
</div>
<div id="python-other">
<div class="fix-background python-programing-competitions-final">
<h2>Course</h2>
<h3>
</br>
・ 全15回</br>
・ Zoomによるオンライン授業</br>
</br>
</h3>
<h4>
KaggleやLeetCodeを扱うにあたり、それぞれのアカウント登録が必要です。</br>
</h4>
</div>
</div>
<!--/#about-->
<div class="bg2">
<h6>Contact</h6>
</div>
<div id="contact">
<div class="fix-background KCode_Contact">
<p class="c"><a href="index.html"><img src="images/K_Code_label(white_transparency).png" alt="" width="150px"></a></p>
<nav id="menubar_last">
<ul>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#course">Course</a></li>
<li><a href="index.html#schedule">Schedule</a></li>
</ul>
</nav>
<p>
Mail: [email protected]<br>
AM9:00〜PM10:00</p>
</div>
</div>
</div>
<!--/#contents-->
</div>
<!--/#container-->
<footer>
<small>Copyright© K.Code All Rights Reserved.</small>
<span class="pr">Web Design: Kaito Narimoto</span>
</footer>
<!--ページの上部に戻る「↑」ボタン-->
<!--<p class="nav-fix-pos-pagetop"><a href="#">↑</a></p>-->
</body>
</html>