Package weka.classifiers.lazy.AM.lattice
Interface Lattice
-
- All Known Implementing Classes:
BasicLattice
,DistributedLattice
,HeterogeneousLattice
,JohnsenJohanssonLattice
,SparseLattice
public interface Lattice
Given a list of subcontexts, a lattice creates a collection of supracontexts, which are then used to create analogical sets and classify data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
fill(SubcontextList sublist)
Fill the lattice with given subcontexts.java.util.Set<Supracontext>
getSupracontexts()
-
-
-
Method Detail
-
fill
void fill(SubcontextList sublist) throws java.lang.InterruptedException, java.util.concurrent.ExecutionException
Fill the lattice with given subcontexts. This is meant to be done only once for a given Lattice instance.- Throws:
java.lang.IllegalStateException
- if the lattice was already filledjava.lang.InterruptedException
java.util.concurrent.ExecutionException
-
getSupracontexts
java.util.Set<Supracontext> getSupracontexts()
- Returns:
- The list of supracontexts that were created by filling the supracontextual lattice. From this, you can compute the analogical set.
-
-