text
stringlengths 7
8
|
---|
30 65 0 |
49 67 1 |
50 58 1 |
51 65 0 |
52 63 4 |
52 69 0 |
52 62 0 |
36 69 0 |
54 59 7 |
54 69 7 |
55 67 1 |
59 60 0 |
59 64 1 |
38 59 2 |
65 64 0 |
67 65 0 |
70 59 8 |
77 65 3 |
43 60 0 |
47 67 0 |
47 68 4 |
51 59 13 |
53 58 4 |
59 62 35 |
60 59 17 |
65 66 15 |
66 61 13 |
70 58 4 |
45 66 0 |
30 62 3 |
34 61 10 |
47 66 12 |
48 61 8 |
48 62 2 |
48 64 0 |
48 66 0 |
49 61 1 |
34 67 7 |
49 62 0 |
49 66 0 |
49 60 1 |
49 62 1 |
49 63 3 |
49 61 0 |
50 59 0 |
34 60 0 |
50 61 6 |
50 61 0 |
50 63 1 |
50 59 2 |
50 64 0 |
50 65 4 |
50 66 1 |
35 64 13 |
51 64 7 |
51 59 1 |
51 66 1 |
52 61 0 |
35 63 0 |
52 60 4 |
52 60 5 |
52 62 1 |
52 64 0 |
52 65 0 |
52 68 0 |
36 60 1 |
53 58 1 |
53 60 1 |
53 60 2 |
53 61 1 |
53 63 0 |
54 60 3 |
54 66 0 |
54 67 46 |
54 62 0 |
54 63 19 |
37 60 0 |
54 58 1 |
55 58 1 |
55 58 0 |
55 66 18 |
55 66 0 |
55 69 3 |
55 69 22 |
37 63 0 |
56 60 0 |
56 66 2 |
56 66 1 |
56 67 0 |
57 64 9 |
37 58 0 |
57 69 0 |
57 61 0 |
57 62 0 |
57 63 0 |
57 64 0 |
57 67 0 |
58 59 0 |
58 60 3 |
58 61 1 |
Haberman's Survival Dataset
Overview
This dataset contains tabular data for classifying survival status of patients who had undergone surgery for breast cancer. Each sample is stored in a separate text file, with features space-separated on a single line. The dataset is structured to be compatible with Lumina AI's Random Contrast Learning (RCL) algorithm via the PrismRCL application or API.
Dataset Structure
The dataset is organized into the following structure: Haberman-Survival/ train_data/ class_1/ sample_0.txt sample_10.txt ... class_2/ sample_0.txt sample_10.txt ... test_data/ class_1/ sample_0.txt sample_10.txt ... class_2/ sample_0.txt sample_10.txt ...
Note: All text file names must be unique across all class folders.
Features
- Tabular Data: Each text file contains space-separated values representing the features of a sample.
- Classes: There are two classes, each represented by a separate folder:
class_1
: Patients who survived 5 years or longer.class_2
: Patients who did not survive 5 years.
Usage (pre-split; optimal parameters)
Here is an example of how to load the dataset using PrismRCL:
C:\PrismRCL\PrismRCL.exe naivebayes rclticks=18 boxdown=1 channelpick=5 data=C:\path\to\Haberman-Survival\train_data testdata=C:\path\to\Haberman-Survival\test_data savemodel=C:\path\to\models\mymodel.classify log=C:\path\to\log_files stopwhendone
Explanation of Command:
C:\PrismRCL\PrismRCL.exe
: Path to the PrismRCL executable for classificationnaivebayes
: Specifies Naive Bayes as the training evaluation methodrclticks=18
: Sets the number of RCL iterations during training to 18boxdown=1
: Configuration parameter for training behaviorchannelpick=5
: RCL training parameterdata=C:\path\to\Haberman-Survival\train_data
: Path to the training data for Haberman Survival classificationtestdata=C:\path\to\Haberman-Survival\test_data
: Path to the testing data for evaluationsavemodel=C:\path\to\models\mymodel.classify
: Path to save the resulting trained modellog=C:\path\to\log_files
: Directory path for storing log files of the training processstopwhendone
: Instructs PrismRCL to end the session once training is complete
License
This dataset is licensed under the Creative Commons Attribution 4.0 International License. See the LICENSE file for more details.
Original Source
This dataset was originally sourced from the UCI Machine Learning Repository. Please cite the original source if you use this dataset in your research or applications.
Haberman, S.J. (1976). Generalized Residuals for Log-Linear Models. Proceedings of the 9th International Biometrics Conference, Boston, 1976.
Additional Information
The data values have been prepared to ensure compatibility with PrismRCL. No normalization is required as of version 2.4.0.
- Downloads last month
- 38