danielladiaz
commited on
Commit
•
e3d03ec
1
Parent(s):
3c45b36
Update README.md
Browse files
README.md
CHANGED
@@ -1,30 +1,34 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
---
|
|
|
|
|
4 |
## Overview
|
5 |
This dataset contains tabular data for classifying different types of glass based on their chemical properties. 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.
|
6 |
|
7 |
## Dataset Structure
|
8 |
The dataset is organized into the following structure:
|
|
|
9 |
Glass-Identification/
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
28 |
**Note**: All text file names must be unique across all class folders.
|
29 |
|
30 |
## Features
|
@@ -36,26 +40,24 @@ Here is an example of how to load the dataset using PrismRCL:
|
|
36 |
|
37 |
```bash
|
38 |
C:\PrismRCL\PrismRCL.exe chisquared rclticks=10 boxdown=0 data=C:\path\to\Glass-Identification\train_data testdata=C:\path\to\Glass-Identification\test_data savemodel=C:\path\to\models\mymodel.classify log=C:\path\to\log_files stopwhendone
|
|
|
39 |
|
40 |
Explanation:
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
##License
|
52 |
-
|
53 |
This dataset is licensed under the Creative Commons Attribution 4.0 International License. See the LICENSE file for more details.
|
54 |
|
55 |
-
##Original Source
|
56 |
-
|
57 |
This dataset was originally sourced from the [UCI Machine Learning Repository](https://archive.ics.uci.edu/dataset/42/glass+identification). Please cite the original source if you use this dataset in your research or applications.
|
58 |
|
59 |
-
##Additional Information
|
60 |
-
|
61 |
-
The data values have been prepared to ensure compatibility with PrismRCL. No normalization is required as of version 2.4.0.
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
---
|
4 |
+
# Glass Identification Dataset
|
5 |
+
|
6 |
## Overview
|
7 |
This dataset contains tabular data for classifying different types of glass based on their chemical properties. 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.
|
8 |
|
9 |
## Dataset Structure
|
10 |
The dataset is organized into the following structure:
|
11 |
+
|
12 |
Glass-Identification/
|
13 |
+
train_data/
|
14 |
+
class_1/
|
15 |
+
sample_0.txt
|
16 |
+
sample_1.txt
|
17 |
+
...
|
18 |
+
class_2/
|
19 |
+
sample_0.txt
|
20 |
+
sample_1.txt
|
21 |
+
...
|
22 |
+
test_data/
|
23 |
+
class_1/
|
24 |
+
sample_0.txt
|
25 |
+
sample_1.txt
|
26 |
+
...
|
27 |
+
class_2/
|
28 |
+
sample_0.txt
|
29 |
+
sample_1.txt
|
30 |
+
...
|
31 |
+
|
32 |
**Note**: All text file names must be unique across all class folders.
|
33 |
|
34 |
## Features
|
|
|
40 |
|
41 |
```bash
|
42 |
C:\PrismRCL\PrismRCL.exe chisquared rclticks=10 boxdown=0 data=C:\path\to\Glass-Identification\train_data testdata=C:\path\to\Glass-Identification\test_data savemodel=C:\path\to\models\mymodel.classify log=C:\path\to\log_files stopwhendone
|
43 |
+
```
|
44 |
|
45 |
Explanation:
|
46 |
+
- `C:\PrismRCL\PrismRCL.exe`: classification application
|
47 |
+
- `chisquared`: training evaluation method
|
48 |
+
- `rclticks=10`: RCL training parameter
|
49 |
+
- `boxdown=0`: RCL training parameter
|
50 |
+
- `data=C:\path\to\Glass-Identification\train_data`: path to training data
|
51 |
+
- `testdata=C:\path\to\Glass-Identification\test_data`: path to testing data
|
52 |
+
- `savemodel=C:\path\to\models\mymodel.classify`: path to save resulting model
|
53 |
+
- `log=C:\path\to\log_files`: path to logfiles
|
54 |
+
- `stopwhendone`: ends the PrismRCL session when training is done
|
55 |
+
|
56 |
+
## License
|
|
|
57 |
This dataset is licensed under the Creative Commons Attribution 4.0 International License. See the LICENSE file for more details.
|
58 |
|
59 |
+
## Original Source
|
|
|
60 |
This dataset was originally sourced from the [UCI Machine Learning Repository](https://archive.ics.uci.edu/dataset/42/glass+identification). Please cite the original source if you use this dataset in your research or applications.
|
61 |
|
62 |
+
## Additional Information
|
63 |
+
The data values have been prepared to ensure compatibility with PrismRCL. No normalization is required as of version 2.4.0.
|
|