Datasets:

Modalities:
Text
Formats:
text
Size:
< 1K
Libraries:
Datasets
License:
danielladiaz commited on
Commit
3c45b36
1 Parent(s): 216a411

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -3
README.md CHANGED
@@ -1,3 +1,61 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ train_data/
11
+ class_1/
12
+ sample_0.txt
13
+ sample_1.txt
14
+ ...
15
+ class_2/
16
+ sample_0.txt
17
+ sample_1.txt
18
+ ...
19
+ test_data/
20
+ class_1/
21
+ sample_0.txt
22
+ sample_1.txt
23
+ ...
24
+ class_2/
25
+ sample_0.txt
26
+ sample_1.txt
27
+ ...
28
+ **Note**: All text file names must be unique across all class folders.
29
+
30
+ ## Features
31
+ - **Tabular Data**: Each text file contains space-separated values representing the features of a sample.
32
+ - **Classes**: There are multiple classes, each represented by a separate folder based on the type of glass.
33
+
34
+ ## Usage
35
+ 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
+ C:\PrismRCL\PrismRCL.exe: classification application
42
+ chisquared: training evaluation method
43
+ rclticks=10: RCL training parameter
44
+ boxdown=0: RCL training parameter
45
+ data=C:\path\to\Glass-Identification\train_data: path to training data
46
+ testdata=C:\path\to\Glass-Identification\test_data: path to testing data
47
+ savemodel=C:\path\to\models\mymodel.classify: path to save resulting model
48
+ log=C:\path\to\log_files: path to logfiles
49
+ stopwhendone: ends the PrismRCL session when training is done
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.