Skip to content

Commit 7a7dd0a

Browse files
authored
Some unnecessary stuff removed. Documentation update.
1 parent eba946c commit 7a7dd0a

File tree

7 files changed

+77
-788
lines changed

7 files changed

+77
-788
lines changed

Diff for: README.md

+33-33
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The JAR file will be placed in *adaa.analytics.rules/build/libs* subdirectory. O
3434
```
3535
java -jar rulekit-<version>-all.jar minimal-deals.xml
3636
```
37-
Ignore the SLF4J warning reported on the console - it does not affect the procedure. The results of the analysis will be located in *./examples/results-minimal/deals/* folder. Note, that the repository already contains reference results - they will be overwritten. See [this Wiki section](../../wiki/1-Batch-interface) for detailed information on how to configure batch analyses in RuleKit.
37+
Ignore the SLF4J warning reported on the console - it does not affect the procedure. The results of the analysis will be located in *./examples/results-minimal/deals/* folder. Note, that the repository already contains reference results - they will be overwritten. See [this Wiki section](https://github.com/adaa-polsl/RuleKit/wiki/1-Batch-interface) for detailed information on how to configure batch analyses in RuleKit.
3838

3939
## RapidMiner plugin
4040

@@ -55,7 +55,7 @@ To perform the analysis under RapidMiner, import [./examples/preparation.rmp](/e
5555

5656
As the next step, please import [./examples/regression.rmp](./examples/regression.rmp) process. After executing it, datasets are loaded from the RM repository with *Retrieve* operators. Then, the training set is provided as an input for *RuleKit Generator*. The model generated by *RuleKit Generator* is then applied on unseen data (*Apply Model* operator). The performance of the prediction is assesed using *RuleKit Evaluator* operator. Performance metrices as well as generated model are passed as process outputs.
5757

58-
See [this Wiki section](../../wiki/2-RapidMiner-plugin) for detailed information how to configure RuleKit RapidMiner plugin.
58+
See [this Wiki section](https://github.com/adaa-polsl/RuleKit/wiki/2-RapidMiner-plugin) for detailed information how to configure RuleKit RapidMiner plugin.
5959

6060
## R package
6161

@@ -74,44 +74,44 @@ Then, build the package with *Install and Restart* button (the appropiate versio
7474

7575
Below we present a survival analysis of *BMT-Ch* dataset with RuleKit R package. The set concerns the problem of analyzing factors contributing to the patients’ survival following bone marrow transplants. In order to perform the experiment, please run [./examples/survival.R](./examples/survival.R) script in R. As a result, a rule model is trained and survival function estimates for the entire dataset and for the rules are plotted.
7676

77-
[This Wiki section](../../wiki/3-R-package) contains detailed information on using RuleKit R package.
77+
[This Wiki section](https://github.com/adaa-polsl/RuleKit/wiki/3-R-package) contains detailed information on using RuleKit R package.
7878

7979
## Python package
8080

8181
Rulekit Python package can be found [here](https://github.com/adaa-polsl/RuleKit-python)
8282

8383
# Documentation
8484

85-
The detailed RuleKit documentation can be found on [Wiki pages](../../wiki) which cover the following topics:
86-
87-
1. [Batch interface](../../wiki/1-Batch-interface)
88-
1. [General information](../../wiki/1-Batch-interface#11-general-information)
89-
2. [Parameter set definition](../../wiki/1-Batch-interface#12-parameter-set-definition)
90-
3. [Dataset definition](../../wiki/1-Batch-interface#13-dataset-definition)
91-
4. [Example](../../wiki/1-Batch-interface#14-example)
92-
2. [RapidMiner plugin](../../wiki/2-RapidMiner-plugin)
93-
1. [Installation](../../wiki/2-RapidMiner-plugin#21-installation)
94-
2. [Usage](../../wiki/2-RapidMiner-plugin#22-usage)
95-
3. [Example](../../wiki/2-RapidMiner-plugin#23-example)
96-
3. [R package](../../wiki/3-R-package)
97-
1. [Installation](../../wiki/3-R-package#31-installation)
98-
2. [Usage](../../wiki/3-R-package#32-usage)
99-
3. [Example](../../wiki/3-R-package#33-example)
100-
4. [Quality and evaluation](../../wiki/4-Quality-and-evaluation)
101-
1. [Rule quality](../../wiki/4-Quality-and-evaluation#41-rule-quality)
102-
2. [Model characteristics](../../wiki/4-Quality-and-evaluation#42-model-characteristics)
103-
2. [Performance metrices](../../wiki/4-Quality-and-evaluation#43-performance-metrices)
104-
5. [Output files](../../wiki/5-Output-files)
105-
1. [Training report](../../wiki/5-Output-files#51-training-report)
106-
2. [Prediction performance report](../../wiki/5-Output-files#52-prediction-performance-report)
107-
6. [User-guided induction](../../wiki/6-User-guided-induction)
108-
1. [Defining user's knowledge](../../wiki/6-User-guided-induction#61-defining-users-knowledge)
109-
2. [Examples from GuideR paper](../../wiki/6-User-guided-induction#62-examples-from-guider-paper)
110-
7. [Library API](../../wiki/7-Library-API)
111-
1. [Running an experiment](../../wiki/7-Library-API#71-running-an-experiment)
112-
2. [Developing a new algorithm](../../wiki/7-Library-API#72-developing-a-new-algorithm)
113-
8. [Empirical results](../../wiki/8-Empirical-results)
114-
9. [Contrast set mining](../../wiki/9-Contrast-set-mining)
85+
The detailed RuleKit documentation can be found on [Wiki pages](https://github.com/adaa-polsl/RuleKit/wiki) which cover the following topics:
86+
87+
1. [Batch interface](https://github.com/adaa-polsl/RuleKit/wiki/1-Batch-interface)
88+
1. [General information](https://github.com/adaa-polsl/RuleKit/wiki/1-Batch-interface#11-general-information)
89+
2. [Parameter set definition](https://github.com/adaa-polsl/RuleKit/wiki/1-Batch-interface#12-parameter-set-definition)
90+
3. [Dataset definition](https://github.com/adaa-polsl/RuleKit/wiki/1-Batch-interface#13-dataset-definition)
91+
4. [Example](https://github.com/adaa-polsl/RuleKit/wiki/1-Batch-interface#14-example)
92+
2. [RapidMiner plugin](https://github.com/adaa-polsl/RuleKit/wiki/2-RapidMiner-plugin)
93+
1. [Installation](https://github.com/adaa-polsl/RuleKit/wiki/2-RapidMiner-plugin#21-installation)
94+
2. [Usage](https://github.com/adaa-polsl/RuleKit/wiki/2-RapidMiner-plugin#22-usage)
95+
3. [Example](https://github.com/adaa-polsl/RuleKit/wiki/2-RapidMiner-plugin#23-example)
96+
3. [R package](https://github.com/adaa-polsl/RuleKit/wiki/3-R-package)
97+
1. [Installation](https://github.com/adaa-polsl/RuleKit/wiki/3-R-package#31-installation)
98+
2. [Usage](https://github.com/adaa-polsl/RuleKit/wiki/3-R-package#32-usage)
99+
3. [Example](https://github.com/adaa-polsl/RuleKit/wiki/3-R-package#33-example)
100+
4. [Quality and evaluation](https://github.com/adaa-polsl/RuleKit/wiki/4-Quality-and-evaluation)
101+
1. [Rule quality](https://github.com/adaa-polsl/RuleKit/wiki/4-Quality-and-evaluation#41-rule-quality)
102+
2. [Model characteristics](https://github.com/adaa-polsl/RuleKit/wiki/4-Quality-and-evaluation#42-model-characteristics)
103+
2. [Performance metrices](https://github.com/adaa-polsl/RuleKit/wiki/4-Quality-and-evaluation#43-performance-metrices)
104+
5. [Output files](https://github.com/adaa-polsl/RuleKit/wiki/5-Output-files)
105+
1. [Training report](https://github.com/adaa-polsl/RuleKit/wiki/5-Output-files#51-training-report)
106+
2. [Prediction performance report](https://github.com/adaa-polsl/RuleKit/wiki/5-Output-files#52-prediction-performance-report)
107+
6. [User-guided induction](https://github.com/adaa-polsl/RuleKit/wiki/6-User-guided-induction)
108+
1. [Defining user's knowledge](https://github.com/adaa-polsl/RuleKit/wiki/6-User-guided-induction#61-defining-users-knowledge)
109+
2. [Examples from GuideR paper](https://github.com/adaa-polsl/RuleKit/wiki/6-User-guided-induction#62-examples-from-guider-paper)
110+
7. [Library API](https://github.com/adaa-polsl/RuleKit/wiki/7-Library-API)
111+
1. [Running an experiment](https://github.com/adaa-polsl/RuleKit/wiki/7-Library-API#71-running-an-experiment)
112+
2. [Developing a new algorithm](https://github.com/adaa-polsl/RuleKit/wiki/7-Library-API#72-developing-a-new-algorithm)
113+
8. [Empirical results](https://github.com/adaa-polsl/RuleKit/wiki/8-Empirical-results)
114+
9. [Contrast set mining](https://github.com/adaa-polsl/RuleKit/wiki/9-Contrast-set-mining)
115115

116116
JavaDoc for the project is available [here](https://adaa-polsl.github.io/RuleKit/).
117117

Diff for: adaa.analytics.rules/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ codeQuality {
2727
}
2828

2929
sourceCompatibility = 1.8
30-
version = '1.7.0'
30+
version = '1.7.1'
3131

3232

3333
jar {

Diff for: adaa.analytics.rules/src/main/java/adaa/analytics/rules/consoles/RSupportedConsole.java

-196
This file was deleted.

0 commit comments

Comments
 (0)