Class FaskVote
java.lang.Object
edu.cmu.tetrad.algcomparison.algorithm.multi.FaskVote
- All Implemented Interfaces:
Algorithm
,MultiDataSetAlgorithm
,HasKnowledge
,HasParameters
,TakesIndependenceWrapper
,UsesScoreWrapper
,TetradSerializable
,Serializable
@Algorithm(name="FASK-Vote",
command="fask-vote",
algoType=forbid_latent_common_causes,
dataType=Continuous)
@Bootstrapping
@Experimental
public class FaskVote
extends Object
implements MultiDataSetAlgorithm, HasKnowledge, UsesScoreWrapper, TakesIndependenceWrapper
Wraps the MultiFask algorithm for continuous variables.
Requires that the parameter 'randomSelectionSize' be set to indicate how many datasets should be taken at a time (randomly). This cannot given multiple values.
- Version:
- $Id: $Id
- Author:
- mglymour, josephramsey
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFaskVote()
Constructor for FaskVote.FaskVote
(IndependenceWrapper test, ScoreWrapper score) Constructor for FaskVote.FaskVote
(ScoreWrapper score) Constructor for FaskVote. -
Method Summary
Modifier and TypeMethodDescriptiongetComparisonGraph
(Graph graph) Returns that graph that the result should be compared to.Returns the data type that the search requires, whether continuous, discrete, or mixed.Returns a short, one-line description of this algorithm.Returns the independence wrapper.Returns a knowledge object.Returns the list of parameter names that are used.Returns the score wrapper.search
(DataModel dataSet, Parameters parameters) Runs the search.search
(List<DataModel> dataSets, Parameters parameters) Runs the search.void
setIndependenceWrapper
(IndependenceWrapper independenceWrapper) Sets the independence wrapper.void
Sets a test wrapper if not null.void
setKnowledge
(Knowledge knowledge) Sets a knowledge object.void
setScoreWrapper
(ScoreWrapper score) Sets a score wrapper if not null.
-
Constructor Details
-
FaskVote
Constructor for FaskVote.
- Parameters:
score
- aScoreWrapper
object
-
FaskVote
public FaskVote()Constructor for FaskVote.
-
FaskVote
Constructor for FaskVote.
- Parameters:
test
- aIndependenceWrapper
objectscore
- aScoreWrapper
object
-
-
Method Details
-
search
Runs the search.- Specified by:
search
in interfaceMultiDataSetAlgorithm
- Parameters:
dataSets
- The data sets.parameters
- The parameters.- Returns:
- The graph.
- Throws:
InterruptedException
-
search
Runs the search.- Specified by:
search
in interfaceAlgorithm
- Parameters:
dataSet
- The data set to run to the search on.parameters
- The paramters of the search.- Returns:
- The result graph.
- Throws:
InterruptedException
-
getComparisonGraph
Returns that graph that the result should be compared to.- Specified by:
getComparisonGraph
in interfaceAlgorithm
- Parameters:
graph
- The true directed graph, if there is one.- Returns:
- The comparison graph.
-
getDescription
Returns a short, one-line description of this algorithm. This will be printed in the report.- Specified by:
getDescription
in interfaceAlgorithm
- Returns:
- This description.
-
getDataType
Returns the data type that the search requires, whether continuous, discrete, or mixed.- Specified by:
getDataType
in interfaceAlgorithm
- Returns:
- This type.
-
getParameters
Returns the list of parameter names that are used. These are looked up in ParamMap, so if they're not- Specified by:
getParameters
in interfaceHasParameters
- Returns:
- Returns the list of parameter names that are used. These are looked up in ParamMap, so if they're not already defined they'll need to be defined there.
-
getKnowledge
Returns a knowledge object.- Specified by:
getKnowledge
in interfaceHasKnowledge
- Returns:
- a knowledge object.
-
setKnowledge
Sets a knowledge object.- Specified by:
setKnowledge
in interfaceHasKnowledge
- Parameters:
knowledge
- a knowledge object.
-
setIndTestWrapper
Sets a test wrapper if not null.- Specified by:
setIndTestWrapper
in interfaceMultiDataSetAlgorithm
- Parameters:
test
- The wrapper
-
getScoreWrapper
Returns the score wrapper.- Specified by:
getScoreWrapper
in interfaceUsesScoreWrapper
- Returns:
- the score wrapper.
-
setScoreWrapper
Sets a score wrapper if not null.- Specified by:
setScoreWrapper
in interfaceMultiDataSetAlgorithm
- Specified by:
setScoreWrapper
in interfaceUsesScoreWrapper
- Parameters:
score
- The wrapper
-
getIndependenceWrapper
Returns the independence wrapper.- Specified by:
getIndependenceWrapper
in interfaceTakesIndependenceWrapper
- Returns:
- the independence wrapper.
-
setIndependenceWrapper
Sets the independence wrapper.- Specified by:
setIndependenceWrapper
in interfaceTakesIndependenceWrapper
- Parameters:
independenceWrapper
- the independence wrapper.
-