Package | Description |
---|---|
edu.rutgers.md.engine |
Missed Detections computations; the only package needed for the command-line application.
|
Modifier and Type | Class and Description |
---|---|
class |
AvgPrediction
Contains information about a weighted average of several experts' predictions.
|
Modifier and Type | Field and Description |
---|---|
Vector<Prediction> |
AllPredictions.predictions
The experts' predictions
|
Modifier and Type | Method and Description |
---|---|
static Prediction |
Prediction.weightedAvg(Vector<Prediction> predictions)
Computes the weighted average of all predictions.
|
Modifier and Type | Method and Description |
---|---|
static Vector<Prediction> |
ImportCSV.processFile(int K,
LineNumberReader reader)
Parses a data file in CSV format, interpreting each non-blank (and non-comment) line of the file as the description of one expert's Prediction.
|
Modifier and Type | Method and Description |
---|---|
static Prediction |
Prediction.weightedAvg(Vector<Prediction> predictions)
Computes the weighted average of all predictions.
|
Constructor and Description |
---|
AllPredictions(Vector<Prediction> _predictions)
Constructs an AllPrediction object as a wrapper over a vector of
predictions . |