| Modifier and Type | Method and Description |
|---|---|
static AMapping |
MLPipeline.execute(ACache source,
ACache target,
Configuration configuration,
String mlAlgorithmName,
MLImplementationType mlImplementationType,
List<LearningParameter> learningParameters,
String trainingDataFile,
EvaluatorType pfmType,
int maxIt) |
static AMapping |
LSPipeline.execute(ACache sourceCache,
ACache targetCache,
LinkSpecification ls)
Execute a given LS with default rewriter, planner and execution engine,
generating a mapping.
|
static AMapping |
LSPipeline.execute(ACache sourceCache,
ACache targetCache,
LinkSpecification ls,
String sourceVar,
String targetVar,
RewriterFactory.RewriterType rewriterType,
ExecutionPlannerFactory.ExecutionPlannerType executionPlannerType,
ExecutionEngineFactory.ExecutionEngineType executionEngineType)
Execute a given LS, generating a mapping.
|
static AMapping |
LSPipeline.execute(ACache sourceCache,
ACache targetCache,
String metricExpression,
double threshold,
String sourceVar,
String targetVar,
RewriterFactory.RewriterType rewriterType,
ExecutionPlannerFactory.ExecutionPlannerType executionPlannerType,
ExecutionEngineFactory.ExecutionEngineType executionEngineType)
Execute a LS given a string metric expression and a double threshold,
generating a mapping.
|
| Constructor and Description |
|---|
LimesResult(AMapping verificationMapping,
AMapping acceptanceMapping,
ACache sourceCache,
ACache targetCache,
long runTime)
Constructor
|
| Modifier and Type | Field and Description |
|---|---|
ACache |
TaskData.source
The source data to be used by the machine learning algorithm
|
ACache |
TaskData.target
The target data to be used by the machine learning algorithm
|
| Constructor and Description |
|---|
GoldStandard(AMapping reference,
ACache sourceUris,
ACache targetUris) |
TaskData(GoldStandard goldStandard,
ACache source,
ACache target) |
TaskData(GoldStandard goldStandard,
ACache source,
ACache target,
EvaluationData evalData) |
TaskData(GoldStandard goldStandard,
AMapping mapping,
ACache source,
ACache target) |
| Modifier and Type | Method and Description |
|---|---|
ACache |
EvaluationData.getSourceCache() |
ACache |
EvaluationData.getTargetCache() |
static ACache |
Experiment.readOAEIFile(String file,
String token) |
| Modifier and Type | Method and Description |
|---|---|
static AMapping |
DataSetChooser.fixReferenceMap(AMapping original,
ACache sC,
ACache tC)
Method to remove mapping which corresponding instance doesn't exist.
|
void |
EvaluationData.setSourceCache(ACache sourceCache) |
void |
EvaluationData.setTargetCache(ACache targetCache) |
| Modifier and Type | Field and Description |
|---|---|
ACache |
FoldData.sourceCache |
ACache |
FoldData.targetCache |
| Modifier and Type | Method and Description |
|---|---|
ACache |
Evaluator.cacheUnion(ACache a,
ACache b) |
| Modifier and Type | Method and Description |
|---|---|
ACache |
Evaluator.cacheUnion(ACache a,
ACache b) |
List<AMapping> |
Evaluator.generateMappingFolds(AMapping refMap,
ACache source,
ACache target,
int foldNumber,
boolean withNegativeExamples) |
static String |
Evaluator.getRandomTargetInstance(ACache source,
ACache target,
List<String> values,
Random random,
HashMap<String,HashMap<String,Double>> refMap,
String sourceInstance,
int previousRandom) |
| Constructor and Description |
|---|
FoldData(AMapping map,
ACache sourceCache,
ACache targetCache) |
| Modifier and Type | Field and Description |
|---|---|
protected ACache |
ExecutionEngine.source
Source cache.
|
protected ACache |
ExecutionEngine.target
Target cache.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionEngine |
ExecutionEngineFactory.getEngine(ExecutionEngineFactory.ExecutionEngineType type,
ACache source,
ACache target,
String sourceVar,
String targetVar)
Factory function for retrieving the desired execution engine instance.
|
| Constructor and Description |
|---|
ExecutionEngine(ACache source,
ACache target,
String sourceVar,
String targetVar)
Constructor for an execution engine.
|
ParallelExecutionEngine(ACache source,
ACache target,
String sourceVar,
String targetVar)
Constructor for a parallel execution engine.
|
SimpleExecutionEngine(ACache source,
ACache target,
String sourceVar,
String targetVar)
Constructor for a simple execution engine.
|
| Modifier and Type | Method and Description |
|---|---|
AMapping |
IFilter.filter(AMapping map,
String condition,
double threshold,
ACache source,
ACache target,
String sourceVar,
String targetVar)
Filter function for mapping using a condition and a threshold as
filtering criterion.
|
AMapping |
LinearFilter.filter(AMapping map,
String condition,
double threshold,
ACache source,
ACache target,
String sourceVar,
String targetVar)
Filter function for mapping using a condition and a threshold as
filtering criterion.
|
AMapping |
IFilter.filter(AMapping map,
String condition,
double threshold,
double mainThreshold,
ACache source,
ACache target,
String sourceVar,
String targetVar)
Filter function for mapping using a condition and two thresholds as
filtering criterion.
|
AMapping |
LinearFilter.filter(AMapping map,
String condition,
double threshold,
double mainThreshold,
ACache source,
ACache target,
String sourceVar,
String targetVar)
Filter function for mapping using a condition and two thresholds as
filtering criterion.
|
AMapping |
IFilter.reversefilter(AMapping map,
String condition,
double threshold,
double mainThreshold,
ACache source,
ACache target,
String sourceVar,
String targetVar)
Reverse filter function for mapping using a condition and two thresholds
as filtering criterion.
|
AMapping |
LinearFilter.reversefilter(AMapping map,
String condition,
double threshold,
double mainThreshold,
ACache source,
ACache target,
String sourceVar,
String targetVar)
Reverse filter function for mapping using a condition and two thresholds
as filtering criterion.
|
| Modifier and Type | Field and Description |
|---|---|
ACache |
HeliosPlanner.source
Source cache.
|
ACache |
HeliosPlanner.target
Target cache.
|
| Modifier and Type | Method and Description |
|---|---|
static Planner |
ExecutionPlannerFactory.getPlanner(ExecutionPlannerFactory.ExecutionPlannerType type,
ACache source,
ACache target)
Factory function for retrieving the desired planner instance.
|
NestedPlan |
DynamicPlanner.plan(LinkSpecification spec,
ACache source,
ACache target,
AMapping sourceMapping,
AMapping targetMapping)
Generates a instructionList based on the optimality assumption used in
databases.
|
NestedPlan |
HeliosPlanner.plan(LinkSpecification spec,
ACache source,
ACache target,
AMapping sourceMapping,
AMapping targetMapping)
Generates a NestedPlan based on the optimality assumption used in
databases.
|
| Constructor and Description |
|---|
DynamicPlanner(ACache s,
ACache t) |
HeliosPlanner(ACache source,
ACache target)
Constructor of the Helios planner class.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HybridCache
This cache implements a hybrid between memory and file cache.
|
class |
MemoryCache
Implements a cache that is exclusively in memory.
|
| Modifier and Type | Method and Description |
|---|---|
abstract ACache |
ACache.addProperty(String sourcePropertyName,
String targetPropertyName,
String processingChain)
Method to process data of a property into a new property with specific preprocessing.
|
ACache |
MemoryCache.addProperty(String sourcePropertyName,
String targetPropertyName,
String processingChain) |
abstract ACache |
ACache.clone() |
abstract ACache |
ACache.getSample(int size) |
ACache |
MemoryCache.getSample(int size) |
| Modifier and Type | Method and Description |
|---|---|
static ACache |
Preprocessor.applyFunctionsToCache(ACache cache,
Map<String,Map<String,String>> functions)
Calls
Preprocessor.applyFunctionsToCache(ACache, Map, boolean) with cloneCache=false |
static ACache |
Preprocessor.applyFunctionsToCache(ACache cache,
Map<String,Map<String,String>> functions,
boolean cloneCache) |
| Modifier and Type | Method and Description |
|---|---|
static ACache |
Preprocessor.applyFunctionsToCache(ACache cache,
Map<String,Map<String,String>> functions)
Calls
Preprocessor.applyFunctionsToCache(ACache, Map, boolean) with cloneCache=false |
static ACache |
Preprocessor.applyFunctionsToCache(ACache cache,
Map<String,Map<String,String>> functions,
boolean cloneCache) |
| Modifier and Type | Method and Description |
|---|---|
void |
CsvQueryModule.fillAllInCache(ACache c)
Read a CSV file and write the content in a cache.
|
void |
SparqlQueryModule.fillCache(ACache cache)
Reads from a SPARQL endpoint and writes the results in a cache
|
void |
IQueryModule.fillCache(ACache cache) |
void |
FileQueryModule.fillCache(ACache c)
Reads data from a model in the model registry
|
void |
VectorQueryModule.fillCache(ACache c)
Fills the cache c with the data contained in the data source described by
kb
|
void |
CsvQueryModule.fillCache(ACache c)
Read a CSV file and write the content in a cache.
|
void |
NoPrefixSparqlQueryModule.fillCache(ACache cache)
Reads from a SPARQL endpoint and writes the results in a cache
|
void |
SparqlQueryModule.fillCache(ACache cache,
boolean isSparql)
Reads from a SPARQL endpoint or a file and writes the results in a cache
|
void |
ResilientSparqlQueryModule.fillCache(ACache cache,
boolean sparql)
Reads from a SPARQL endpoint or a file and writes the results in a cache
|
| Modifier and Type | Method and Description |
|---|---|
AMapping |
IMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Returns a mapping given a source, a target knowledge base and a link
specification.
|
protected Map<String,Set<String>> |
AMapper.getValueToUriMap(ACache cache,
String property)
Helper method, re-factored from common setup code of Mappers.
|
| Modifier and Type | Method and Description |
|---|---|
AMapping |
OrchidMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping using the setMeasure distance
|
AMapping |
SymmetricHausdorffMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
Set<Polygon> |
OrchidMapper.getPolygons(ACache c,
String property)
Computes polygons out of strings in the WKT format.
|
| Modifier and Type | Method and Description |
|---|---|
AMapping |
SetJaccardMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
| Modifier and Type | Method and Description |
|---|---|
AMapping |
HR3Mapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
| Modifier and Type | Method and Description |
|---|---|
AMapping |
EDJoinMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
AMapping |
PPJoinPlusPlus.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
AMapping |
ExactMatchMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
AMapping |
SoundexMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
AMapping |
RatcliffObershelpMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
AMapping |
JaroMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
AMapping |
MongeElkanMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
JaroWinklerMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
Map<String,Set<String>> |
ExactMatchMapper.index(ACache c,
String property) |
| Modifier and Type | Method and Description |
|---|---|
AMapping |
FastNGramMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Computes a mapping between a source and a target.
|
| Modifier and Type | Method and Description |
|---|---|
TreeMap<String,Set<String>> |
BeginEnd.getConcurrentEvents(ACache source,
ACache target,
String expression)
Returns the set of concurrent target events for each source instance.
|
TreeMap<String,Set<String>> |
BeginBegin.getConcurrentEvents(ACache source,
ACache target,
String expression)
Returns the set of concurrent target events for each source instance.
|
TreeMap<String,Set<String>> |
EndBegin.getConcurrentEvents(ACache source,
ACache target,
String expression)
Returns the set of concurrent target events for each source instance.
|
abstract TreeMap<String,Set<String>> |
AAtomicAllenAlgebraMapper.getConcurrentEvents(ACache source,
ACache target,
String expression)
Returns the set of concurrent target events for each source instance.
|
TreeMap<String,Set<String>> |
EndEnd.getConcurrentEvents(ACache source,
ACache target,
String expression)
Returns the set of concurrent target events for each source instance.
|
TreeMap<String,Set<String>> |
BeginEnd.getPredecessorEvents(ACache source,
ACache target,
String expression)
Returns the set of predecessor target events for each source instance.
|
TreeMap<String,Set<String>> |
BeginBegin.getPredecessorEvents(ACache source,
ACache target,
String expression)
Returns the set of predecessor target events for each source instance.
|
TreeMap<String,Set<String>> |
EndBegin.getPredecessorEvents(ACache source,
ACache target,
String expression)
Returns the set of predecessor target events for each source instance.
|
abstract TreeMap<String,Set<String>> |
AAtomicAllenAlgebraMapper.getPredecessorEvents(ACache source,
ACache target,
String expression)
Returns the set of predecessor target events for each source instance.
|
TreeMap<String,Set<String>> |
EndEnd.getPredecessorEvents(ACache source,
ACache target,
String expression)
Returns the set of predecessor target events for each source instance.
|
protected static TreeMap<Long,Set<String>> |
AAtomicAllenAlgebraMapper.orderByBeginDate(ACache cache,
String expression,
String kbType)
Orders a cache of instances based on their begin date property.
|
protected static TreeMap<Long,Set<String>> |
AAtomicAllenAlgebraMapper.orderByEndDate(ACache cache,
String expression,
String kbType)
Orders a cache of instances based on their end date property.
|
| Modifier and Type | Method and Description |
|---|---|
AMapping |
FinishesMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that began before
the aforementioned source instance but finished at the same time, using
the BeginBegin and EndEnd atomic Allen relations.
|
AMapping |
IsFinishedByMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that began after
the aforementioned source instance but finished at the same time, using
the BeginBegin and EndEnd atomic Allen relations.
|
AMapping |
OverlapsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that is overlapped
by the aforementioned source instance, using the EndBegin, BeginBegin and
EndEnd Allen relations.
|
AMapping |
IsMetByMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that began
strictly before the aforementioned source instance, using the BeginEnd
Allen relation.
|
AMapping |
AfterMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that occurred
after the aforementioned source instance, using the BeginEnd atomic Allen
relation.
|
AMapping |
MeetsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that began
strictly after the aforementioned source instance, using the EndBegin
Allen relation.
|
AMapping |
StartsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that begin at the
same time of the aforementioned source instance but terminate after,
using the BeginBegin and EndEnd Allen relations.
|
AMapping |
IsOverlappedByMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that overlap the
aforementioned source instance, using the BeginEnd, BeginBegin and EndEnd
Allen relations.
|
AMapping |
DuringMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that occurred
during the aforementioned source instance, using the BeginBegin and
EndEnd atomic Allen relations.
|
AMapping |
DuringReverseMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that occurred
during the aforementioned source instance, using the BeginBegin and
EndEnd atomic Allen relations.
|
AMapping |
BeforeMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that occurred
before the aforementioned source instance, using the EndBegin atomic
Allen relation.
|
AMapping |
IsStartedByMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that begin at the
same time of the aforementioned source instance but terminate earlier,
using the BeginBegin and EndEnd Allen relations.
|
AMapping |
EqualsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps each source instance to a set of target instances that occurred at
the same time as the aforementioned source instance, using the BeginBegin
and EndEnd atomic Allen relations.
|
| Modifier and Type | Method and Description |
|---|---|
AMapping |
PredecessorMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps a set of source instances to their predecessor target instances.
|
AMapping |
SuccessorMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps a set of source instances to their successor target instances.
|
AMapping |
ConcurrentMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold)
Maps a set of source instances to their concurrent target instances.
|
protected TreeMap<String,Set<Instance>> |
SimpleTemporalMapper.orderByBeginDate(ACache cache,
String expression,
String kbType)
Orders a cache of instances based on their begin date property.
|
| Modifier and Type | Method and Description |
|---|---|
static Map<String,com.vividsolutions.jts.geom.Geometry> |
RADON.getGeometryMapFromCache(ACache c,
String property) |
AMapping |
TouchesMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
ContainsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
OverlapsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
DisjointMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
CoveredbyMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
CrossesMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
CoversMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
WithinMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
EqualsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
AMapping |
IntersectsMapper.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold) |
static AMapping |
RADON.getMapping(ACache source,
ACache target,
String sourceVar,
String targetVar,
String expression,
double threshold,
String relation) |
| Modifier and Type | Field and Description |
|---|---|
protected ACache |
ACoreMLAlgorithm.sourceCache |
protected ACache |
ACoreMLAlgorithm.targetCache |
| Modifier and Type | Method and Description |
|---|---|
ACache |
ACoreMLAlgorithm.getSourceCache() |
ACache |
ACoreMLAlgorithm.getTargetCache() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
ACoreMLAlgorithm.init(List<LearningParameter> learningParameters,
ACache sourceCache,
ACache targetCache)
Initialize the core ML algorithm.
|
void |
AMLAlgorithm.init(List<LearningParameter> lp,
ACache source,
ACache target)
Initialize the ML Algorithm.
|
protected void |
ACIDS.init(List<LearningParameter> lp,
ACache source,
ACache target) |
protected void |
WombatComplete.init(List<LearningParameter> lp,
ACache sourceCache,
ACache targetCache) |
protected void |
WombatSimple.init(List<LearningParameter> lp,
ACache sourceCache,
ACache targetCache) |
protected void |
Eagle.init(List<LearningParameter> lp,
ACache source,
ACache target) |
protected abstract AMapping |
ACoreMLAlgorithm.predict(ACache source,
ACache target,
MLResults mlModel)
Predict/generate links from source to target based on mlModel.
|
AMapping |
AMLAlgorithm.predict(ACache source,
ACache target,
MLResults mlModel)
Predict new links.
|
protected AMapping |
ACIDS.predict(ACache source,
ACache target,
MLResults mlModel) |
protected AMapping |
WombatComplete.predict(ACache source,
ACache target,
MLResults mlModel) |
protected AMapping |
WombatSimple.predict(ACache source,
ACache target,
MLResults mlModel) |
protected AMapping |
Eagle.predict(ACache source,
ACache target,
MLResults mlModel) |
| Modifier and Type | Method and Description |
|---|---|
ACache |
Dragon.getSourceCache() |
ACache |
DecisionTree.getSourceCache() |
ACache |
Dragon.getTargetCache() |
ACache |
DecisionTree.getTargetCache() |
ACache |
Dragon.getTestSourceCache() |
ACache |
Dragon.getTestTargetCache() |
| Modifier and Type | Method and Description |
|---|---|
void |
Dragon.init(List<LearningParameter> lp,
ACache sourceCache,
ACache targetCache) |
AMapping |
Dragon.predict(ACache source,
ACache target,
MLResults mlModel) |
void |
Dragon.setSourceCache(ACache sourceCache) |
void |
Dragon.setTargetCache(ACache targetCache) |
| Constructor and Description |
|---|
DecisionTree(Dragon dtl,
ACache sourceCache,
ACache targetCache,
PseudoFMeasure pseudoFMeasure,
double minPropertyCoverage,
double propertyLearningRate,
double pruningConfidence,
AMapping refMapping,
PropertyMapping propertyMapping) |
| Constructor and Description |
|---|
Clustering(ACache sourceCache,
ACache targetCache,
PropertyMapping propMap) |
| Modifier and Type | Field and Description |
|---|---|
ACache |
LinkSpecGeneticLearnerConfig.sC |
protected ACache |
ExpressionFitnessFunction.sC |
ACache |
LinkSpecGeneticLearnerConfig.tC |
protected ACache |
ExpressionFitnessFunction.tC |
protected ACache |
ExpressionFitnessFunction.trimmedSourceCache |
protected ACache |
ExpressionFitnessFunction.trimmedTargetCache |
| Modifier and Type | Method and Description |
|---|---|
ACache |
ExpressionFitnessFunction.getSourceCache()
Get full caches used by this learner.
|
ACache |
ExpressionFitnessFunction.getTargetCache()
Get full caches used by this learner.
|
| Modifier and Type | Method and Description |
|---|---|
static PseudoFMeasureFitnessFunction |
PseudoFMeasureFitnessFunction.getInstance(LinkSpecGeneticLearnerConfig a_config,
PseudoFMeasure pfm,
ACache c1,
ACache c2)
Singleton pattern
|
AMapping |
ExpressionFitnessFunction.getMapping(ACache sourceCache,
ACache targetCache,
LinkSpecification spec) |
AMapping |
PseudoFMeasureFitnessFunction.getMapping(ACache sC,
ACache tC,
LinkSpecification spec)
Get or create a mapping from a link specification (Metric String + Acceptance threshold: 0<=threshold<=1).
|
AMapping |
IFitnessFunction.getMapping(ACache sourceCache,
ACache targetCache,
LinkSpecification spec)
To calculate Mappings based on LS
|
void |
ExpressionFitnessFunction.setCaches(ACache sC,
ACache tC) |
| Modifier and Type | Method and Description |
|---|---|
static ACache[] |
CacheTrimmer.processData(ACache sC,
ACache tC,
AMapping m)
Method to scale down the Caches used to perform entity matching upon.
|
ACache[] |
CacheTrimmer.processDataEqually(ACache hc1,
ACache hc2,
AMapping m,
int numberOfQuestions) |
| Modifier and Type | Method and Description |
|---|---|
static ACache[] |
CacheTrimmer.processData(ACache sC,
ACache tC,
AMapping m)
Method to scale down the Caches used to perform entity matching upon.
|
ACache[] |
CacheTrimmer.processDataEqually(ACache hc1,
ACache hc2,
AMapping m,
int numberOfQuestions) |
| Modifier and Type | Field and Description |
|---|---|
ACache |
LinearSelfConfigurator.source |
ACache |
LinearSelfConfigurator.target |
| Modifier and Type | Method and Description |
|---|---|
ACache |
LinearSelfConfigurator.getSource() |
ACache |
LinearSelfConfigurator.getTarget() |
| Modifier and Type | Method and Description |
|---|---|
void |
ISelfConfigurator.computeMeasure(ACache source,
ACache target,
String[] parameters) |
void |
LinearSelfConfigurator.computeMeasure(ACache source,
ACache target,
String[] parameters) |
static Map<String,Double> |
LinearSelfConfigurator.getPropertyStats(ACache c,
double minCoverage)
Extracts all properties from a cache that have a coverage beyond minCoverage
|
static String |
LinearSelfConfigurator.getPropertyType(ACache c,
String p) |
protected void |
BooleanEuclid.init(List<LearningParameter> learningParameters,
ACache sourceCache,
ACache targetCache) |
protected void |
LinearEuclid.init(List<LearningParameter> learningParameters,
ACache sourceCache,
ACache targetCache) |
protected void |
MeshEuclid.init(List<LearningParameter> learningParameters,
ACache sourceCache,
ACache targetCache) |
protected AMapping |
BooleanEuclid.predict(ACache source,
ACache target,
MLResults mlModel) |
protected AMapping |
LinearEuclid.predict(ACache source,
ACache target,
MLResults mlModel) |
protected AMapping |
MeshEuclid.predict(ACache source,
ACache target,
MLResults mlModel) |
void |
LinearSelfConfigurator.setSource(ACache source) |
void |
LinearSelfConfigurator.setTarget(ACache target) |
| Constructor and Description |
|---|
BooleanSelfConfigurator(ACache source,
ACache target)
Constructor
|
BooleanSelfConfigurator(ACache source,
ACache target,
double minCoverage,
double beta)
Constructor
|
BooleanSelfConfigurator(ACache source,
ACache target,
double minCoverage,
double beta,
Map<String,String> measures)
Constructor
|
LinearSelfConfigurator(ACache source,
ACache target)
Constructor
|
LinearSelfConfigurator(ACache source,
ACache target,
double minCoverage,
double beta)
Constructor
|
LinearSelfConfigurator(ACache source,
ACache target,
double minCoverage,
double beta,
Map<String,String> measures)
Constructor
|
MeshBasedSelfConfigurator(ACache source,
ACache target)
Basic constructor uses default values for minCoverage and beta.
|
MeshBasedSelfConfigurator(ACache source,
ACache target,
double minCoverage)
Constructor
|
| Modifier and Type | Field and Description |
|---|---|
protected ACache |
AWombat.sourceSample |
protected ACache |
AWombat.targetSample |
| Modifier and Type | Method and Description |
|---|---|
protected AMapping |
AWombat.getPredictions(LinkSpecification ls,
ACache sCache,
ACache tCache)
get mapping from source cache to target cache using metricExpression
|
protected void |
AWombat.init(List<LearningParameter> lp,
ACache sourceCache,
ACache targetCache) |
| Modifier and Type | Method and Description |
|---|---|
ACache |
RandomStringGenerator.generateData(int size)
Generates strings that are in (a-zA-Z)*
|
ACache |
DataGenerator.generateData(int size) |
Copyright © 2018. All rights reserved.