Skip to content

Commit

Permalink
to amend
Browse files Browse the repository at this point in the history
  • Loading branch information
elhele committed May 22, 2018
1 parent 9ea97ab commit 7e009c5
Show file tree
Hide file tree
Showing 22 changed files with 1,257 additions and 57 deletions.
Binary file added data/Mohler/processed/doc2vecbow.pickle
Binary file not shown.
29 changes: 29 additions & 0 deletions data/Mohler/processed/grading_correlation3skipvsROUGE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
3-skip-bigrams ROUGE

2.1 What is typically included in a class definition?
2.1 Data members (attributes) and member functions.
0.765 0.706

2.6 What is the difference between a function prototype and a function definition?
2.6 A function prototype includes the function signature, i.e., the name of the function, the return type, and the parameters' type. The function definition includes the actual body of the function.
0.235 0.412

3.3 How does the compiler handle inline functions?
3.3 It makes a copy of the function code in every place where a function call is made.
0.5 0.389

8.7 What operations would you need to perform to find a given element on a stack?
8.7 Pop all the elements and store them on another stack until the element is found, then push back all the elements on the original stack.
0.571 0.643

11.1 What are the elements typically included in a class definition?
11.1 Function members and data members.
0.412 0.353

11.2 What are the access-specifiers that can be used in a C++ class definition?
11.2 Private and public.
0.647 0.588

11.8 What is the main difference between a string of characters that is read into a variable of type string versus a variable of type char[]?
11.8 The char[] will automatically add a null \0 character at the end of the string.
0.647 0.471
22 changes: 22 additions & 0 deletions data/Mohler/processed/grading_correlationBLEUvsROUGE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
BLUE ROUGE
2.1 What is typically included in a class definition?
2.1 Data members (attributes) and member functions.
0.764 0.705 B
2.3 What is the difference between a constructor and a function?
2.3 A constructor is called whenever an object is created, whereas a function needs to be called explicitely. Constructors do not have return type, but functions have to indicate a return type.
0.294 0.353 R
2.6 What is the difference between a function prototype and a function definition?
2.6 A function prototype includes the function signature, i.e., the name of the function, the return type, and the parameters' type. The function definition includes the actual body of the function.
0.471 0.411 B
3.3 How does the compiler handle inline functions?
3.3 It makes a copy of the function code in every place where a function call is made.
0.500 0.389 B
8.7 What operations would you need to perform to find a given element on a stack?
8.7 Pop all the elements and store them on another stack until the element is found, then push back all the elements on the original stack.
0.571 0.643 R
11.1 What are the elements typically included in a class definition?
11.1 Function members and data members.
0.294 0.353 R
12.4 Briefly, how does selection sort work?
12.4 It selects the minimum from an array and places it on the first position, then it selects the minimum from the rest of the array and places it on the second position, and so forth.
0.333 0.467 R
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
doc2vec PV-DBOW
1 change: 1 addition & 0 deletions data/Mohler/processed/grading_correlationdoc2vec PV-DM.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
doc2vec PV-DM
Loading

0 comments on commit 7e009c5

Please sign in to comment.