| Package | Description |
|---|---|
| de.dfki.mycbr.core |
Contains all classes that represent core functionality of a CBR application
such as the domain model, case bases, similarity functions and retrieval algorithms.
|
| de.dfki.mycbr.core.retrieval |
All retrieval algorithms extend the abstract class
RetrievalEngine
and can be used within Retrieval objects to obtain the retrieval results
(possibly ordered pairs of case and corresponding similarity). |
| de.dfki.mycbr.io |
Contains classes that handle import and export of relevant CBR application
data.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultCaseBase
Class DefaultCasebase.
|
| Modifier and Type | Method and Description |
|---|---|
ICaseBase |
Project.deleteCaseBase(java.lang.String name)
Removes the case base specified by name from this project.
|
ICaseBase |
Project.getCB(java.lang.String name)
Returns the case base associated with the given name.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.HashMap<java.lang.String,ICaseBase> |
Project.getCaseBases()
Gets the case bases for this project.
|
| Modifier and Type | Method and Description |
|---|---|
ICaseBase |
Retrieval.getCaseBase() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Pair<Instance,Similarity>> |
SequentialRetrieval.retrieve(ICaseBase cb,
Instance q) |
abstract java.util.List<Pair<Instance,Similarity>> |
RetrievalEngine.retrieve(ICaseBase cb,
Instance q) |
java.util.List<Pair<Instance,Similarity>> |
SequentialRetrieval.retrieveK(ICaseBase cb,
Instance q,
int k) |
abstract java.util.List<Pair<Instance,Similarity>> |
RetrievalEngine.retrieveK(ICaseBase cb,
Instance q,
int k) |
java.util.List<Pair<Instance,Similarity>> |
SequentialRetrieval.retrieveKSorted(ICaseBase cb,
Instance q,
int k) |
abstract java.util.List<Pair<Instance,Similarity>> |
RetrievalEngine.retrieveKSorted(ICaseBase cb,
Instance q,
int k) |
java.util.List<Pair<Instance,Similarity>> |
SequentialRetrieval.retrieveSorted(ICaseBase cb,
Instance q) |
abstract java.util.List<Pair<Instance,Similarity>> |
RetrievalEngine.retrieveSorted(ICaseBase cb,
Instance q) |
void |
Retrieval.setCaseBase(ICaseBase cb) |
| Constructor and Description |
|---|
Retrieval(Concept c,
ICaseBase cb) |
Retrieval(Concept c,
ICaseBase cb,
RetrievalEngine re) |
| Modifier and Type | Method and Description |
|---|---|
void |
CSVImporter.setCaseBase(ICaseBase cb) |