Commit 0b8492be authored by Davis King's avatar Davis King

Fixing grammar

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402926
parent 37870e17
......@@ -178,19 +178,19 @@ int main()
sample(0) = 3.123;
sample(1) = 2;
cout << "This +1 example should have high probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This +1 example should have high probability. Its probability is: " << learned_pfunct(sample) << endl;
sample(0) = 3.123;
sample(1) = 9.3545;
cout << "This +1 example should have high probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This +1 example should have high probability. Its probability is: " << learned_pfunct(sample) << endl;
sample(0) = 13.123;
sample(1) = 9.3545;
cout << "This -1 example should have low probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This -1 example should have low probability. Its probability is: " << learned_pfunct(sample) << endl;
sample(0) = 13.123;
sample(1) = 0;
cout << "This -1 example should have low probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This -1 example should have low probability. Its probability is: " << learned_pfunct(sample) << endl;
......
......@@ -184,19 +184,19 @@ int main()
sample(0) = 3.123;
sample(1) = 2;
cout << "This +1 example should have high probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This +1 example should have high probability. Its probability is: " << learned_pfunct(sample) << endl;
sample(0) = 3.123;
sample(1) = 9.3545;
cout << "This +1 example should have high probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This +1 example should have high probability. Its probability is: " << learned_pfunct(sample) << endl;
sample(0) = 13.123;
sample(1) = 9.3545;
cout << "This -1 example should have low probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This -1 example should have low probability. Its probability is: " << learned_pfunct(sample) << endl;
sample(0) = 13.123;
sample(1) = 0;
cout << "This -1 example should have low probability. It's probability is: " << learned_pfunct(sample) << endl;
cout << "This -1 example should have low probability. Its probability is: " << learned_pfunct(sample) << endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment