What do first-order and second-order Markov processes have in common concerning next word prediction?
The naive Bayer classifier is trained over 1600 movie reviews and then tested over 400 reviews.
Here is the resulting confusion matrix:
190 (TP) 10(FN)
80 (FP) 120(TN)
What are the precision, recall, and the F1-score values?
You develop a Python script "logisticpy" to evaluate the logistic function denoted as f(y) for a given value y that includes the following Pig code:
Register 'logistic.py' using jython as udf;
z = FOREACH y GENERATE $0, udf.logistic ($0);
DUMP z;
What is the expected output when the Pig code is executed?
In a connected, undirected graph of 5 nodes with 10 edges, how many more edges need to be added to make the clustering coefficient of every node equal 1 ?