Skip to content

Commit d324059

Browse files
Merge pull request #6 from virtual-labs/dev
Dev
2 parents 2ff94e1 + 40f9e81 commit d324059

File tree

122 files changed

+11785
-711
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+11785
-711
lines changed

experiment/procedure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
STEP1: Select a corpus
1+
STEP 1: Select a corpus
22

3-
STEP2: Apply add one smoothing and calculate bigram probabilities using the given bigram counts,N and V. Fill the table and hit `Submit`
3+
STEP 2: Apply add one smoothing and calculate bigram probabilities using the given bigram counts,N and V. Fill the table and hit `Submit`
44

5-
STEP3: If incorrect (red), see the correct answer by clicking on show answer or repeat Step 2
5+
STEP 3: If incorrect (red), see the correct answer by clicking on show answer or repeat Step 2

experiment/simulation/exp5/content.html renamed to experiment/simulation/content.html

Lines changed: 144 additions & 128 deletions
Large diffs are not rendered by default.

experiment/simulation/css/bootstrap.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

experiment/simulation/css/common.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
@charset "utf-8";
2+
/* CSS for styling header of the page */
3+
4+
/* reset default browser CSS */
5+
6+
body, div, h1,h2,h3,p,img,header,section,aside, footer, button{
7+
margin:0; padding:0; list-style:none;
8+
}
9+
10+
a {
11+
text-decoration: none; /* no underlines */
12+
color: #961b25;/* dusty read */
13+
}
14+
15+
a:hover {
16+
color:#6f92a7; /*dusty blue */
17+
}
18+
19+
:focus {
20+
outline:0; /* no outline on focus */
21+
}
22+
23+
h1,h2,h3 {
24+
font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif; /* web safe colors */
25+
font-weight: normal;
26+
}
27+
28+
article {
29+
margin:0;
30+
padding:0;
31+
position:relative;
32+
display:block;
33+
}

experiment/simulation/css/default.css

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,3 +273,56 @@ color: #444 !important; text-shadow: none; }
273273
-ms-text-size-adjust:none; }
274274
}
275275

276+
#lab-footer, .footer {
277+
float:left;
278+
margin-top: 50px;
279+
margin-bottom: 100px;
280+
text-align: center;
281+
282+
width: 90%;
283+
}
284+
285+
286+
287+
288+
nav#lab-article-navigation1, nav#experiment-article-navigation1
289+
{
290+
height:90px;
291+
margin: 0 auto;
292+
width:1024px;
293+
background: url(../images/content_bg.jpg);
294+
}
295+
nav#lab-article-navigation1 ul, nav#experiment-article-navigation1 ul
296+
{
297+
/*margin-left:21px;*/
298+
}
299+
300+
nav#lab-article-navigation1 ul li, nav#experiment-article-navigation1 ul li
301+
{
302+
float: left;
303+
list-style: none;
304+
margin-right: 0.3em;
305+
}
306+
307+
nav#lab-article-navigation1 ul li img, nav#experiment-article-navigation1 ul li img
308+
{
309+
width:50px;
310+
height:50px;
311+
}
312+
nav#lab-article-navigation1 ul li a:link, nav#experiment-article-navigation1 ul li a:link,
313+
nav#lab-article-navigation1 ul li a:visited, nav#experiment-article-navigation1 ul li a:visited
314+
{
315+
color:#02568e;
316+
text-decoration: underline;
317+
float: right;
318+
font-size: 16px;
319+
text-transform:uppercase;
320+
padding: 9px;
321+
}
322+
323+
nav#lab-article-navigation1 ul li a:hover, nav#experiment-article-navigation1 ul li a:hover,
324+
nav#lab-article-navigation1 ul li a:focus, nav#experiment-article-navigation1 ul li a:focus
325+
{
326+
color: #ffffff;
327+
background-color:#02568e;
328+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
span.term {
2+
font-family: monospace;
3+
font-style: normal;
4+
font-weight: bold;
5+
color: #556B2F;
6+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/* Pretty printing styles. Used with prettify.js. */
2+
3+
.str { color: #080; }
4+
.kwd { color: #008; }
5+
.com { color: #800; }
6+
.typ { color: #606; }
7+
.lit { color: #066; }
8+
.pun { color: #660; }
9+
.pln { color: #000; }
10+
.tag { color: #008; }
11+
.atn { color: #606; }
12+
.atv { color: #080; }
13+
.dec { color: #606; }
14+
pre.prettyprint { padding: 2px; border: 1px solid #888 }
15+
16+
/* Specify class=linenums on a pre to get line numbering */
17+
ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
18+
li.L0,
19+
li.L1,
20+
li.L2,
21+
li.L3,
22+
li.L5,
23+
li.L6,
24+
li.L7,
25+
li.L8 { list-style-type: none }
26+
/* Alternate shading for lines */
27+
li.L1,
28+
li.L3,
29+
li.L5,
30+
li.L7,
31+
li.L9 { background: #eee }
32+
33+
@media print {
34+
.str { color: #060; }
35+
.kwd { color: #006; font-weight: bold; }
36+
.com { color: #600; font-style: italic; }
37+
.typ { color: #404; font-weight: bold; }
38+
.lit { color: #044; }
39+
.pun { color: #440; }
40+
.pln { color: #000; }
41+
.tag { color: #006; font-weight: bold; }
42+
.atn { color: #404; }
43+
.atv { color: #060; }
44+
}

0 commit comments

Comments
 (0)