-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlanted_Forest.html
More file actions
executable file
·205 lines (151 loc) · 5.2 KB
/
Planted_Forest.html
File metadata and controls
executable file
·205 lines (151 loc) · 5.2 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<!--
Plain-Academic by Vasilios Mavroudis
Released under the Simplified BSD License/FreeBSD (2-clause) License.
https://github.com/mavroudisv/plain-academic
-->
<html lang="en">
<head>
<title>PlantedML</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-grey.css">
<link href='https://fonts.googleapis.com/css?family=Oswald:700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<style>
a:link {
color: #e85338;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #e85338;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: #e85338;
background-color: transparent;
text-decoration: underline;
}
</style>
<style>
.filterDiv {
display: none;
}
.show {
display: inline-block;
}
/* Style the buttons */
.btn {
border: none;
outline: none;
padding: 12px 16px;
background-color: #f1f1f1;
cursor: pointer;
}
.btn:hover {
background-color: #ddd;
}
.btn.active {
background-color: #666;
color: white;
outline-color: #e85338;
}
</style>
<style>
.filterDiv2 {
display: none;
}
.show {
display: inline-block;
}
/* Style the buttons */
.btn {
border: none;
outline: none;
padding: 4px 16px;
background-color: #f1f1f1;
cursor: pointer;
}
.btn2 {
border: none;
outline: none;
padding: 1px 10px;
background-color: #f1f1f1;
cursor: pointer;
}
.btn:hover {
background-color: #ddd;
}
.btn.active {
background-color: #666;
color: white;
outline-color: #e85338;
}
</style>
<style>
.center {
text-align: center
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse">
<div class="container">
<ul class="nav navbar-nav">
<li><a href="./index.html">Home</a></li>
<!-- <li><a href="./Projects.html">Projects</a></li> -->
<li><a href="./Planted_Forest.html">Random Planted Forest</a></li>
</ul>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<div class="row row-grid">
<!-- Contact Info on the Sidebar -->
<!-- Entries Column -->
<div class="col-md-7"> <!-- style="height: 100vh;"> -->
<h2>Random Planted Forest</h2>
<div style="margin-top:10%; text-align:justify;">
Key Features: <br><br>
<ul>
<li style="font-size:14px"> Maximal order of interaction can be specified. If an order smaller or equal of two is chosen, then the model is directly fully interpretable by plotting the one dimensional functions as curves and the two dimensional functions as heatmaps.</li><br>
<li style="font-size:14px"> While fully flexible the algorithm follows a structured path by growing a family of trees simultaneously along a functional ANOVA expansion. Below is an illustration of a family of planted trees. Higher order trees are descendants of lower order trees. Trees grow simultaneously and the height of the edges indicate the order at which splits occurred.</li>
<img src="planted_forest.jpg" alt= "image1" height="400">
<li style="font-size:14px"> A first simulation study in our paper shows very promising results. The random planted forest seems able to detect both jumps in the regression function as well as interactions between predictors. In particular in sparse settings, the random planted forest proved an unmatched combination of accuracy and flexibility. Below is an illustration of how the random planted forest shows excellent performance in the detection of jumps.</li>
<img src="Model5.jpg" alt= "image1" height="150">
</ul>
<br> <br>
<!-- <h3 id="pub">News</h3>
<p style="font-family:Helvetica Neue;font-size: 14px">
</p> -->
</div>
</div>
<div class="col-md-1">
</div>
<div class="col-md-4">
<div style="margin-top:10%; text-align:justify;">
<p style="font-family:Helvetica Neue;font-size: 14px">
<h3 id="pub">Material</h3>
<hr>
Paper: <a href="https://arxiv.org/abs/2012.14563" target=_blank>[arxiv]</a> <br>
Code: <a href="https://github.com/PlantedML/randomPlantedForest" target=_blank>[github]</a> <br>
Webpage: <a href="http://plantedml.com/randomPlantedForest/" target=_blank>[webpage] </a><br>
</div>
</div>
</div>
</div>
</body>
</html>