danielladiaz commited on
Commit
7ee7548
·
verified ·
1 Parent(s): cae105e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -3
README.md CHANGED
@@ -1,3 +1,78 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ ## Satellite Imaging RCL Dataset
5
+
6
+ ### Overview
7
+
8
+ This dataset contains satellite images structured explicitly for classification tasks using Lumina AI's Random Contrast Learning (RCL) algorithm via the PrismRCL application. Unlike LLM datasets, imaging datasets contain individual .png files organized by class.
9
+
10
+ ### Dataset Structure
11
+
12
+ The dataset structure for image classification training:
13
+
14
+ ```
15
+ satellite2-png/
16
+ train/
17
+ [class_1]/
18
+ image_001.png
19
+ image_002.png
20
+ ...
21
+ [class_2]/
22
+ image_001.png
23
+ image_002.png
24
+ ...
25
+ test/
26
+ [class_1]/
27
+ image_001.png
28
+ image_002.png
29
+ ...
30
+ [class_2]/
31
+ image_001.png
32
+ image_002.png
33
+ ...
34
+ ```
35
+
36
+ - **Classes:** Folder names represent distinct image classes.
37
+ - **Images:** Each image file (.png) represents a single data sample.
38
+
39
+ ### Image Data Preparation
40
+
41
+ For image datasets, PrismRCL has specific preparation requirements:
42
+
43
+ - Images must be in .png format.
44
+ - No resizing or normalization is required when using PrismRCL version 2.4.0 or later.
45
+ - File names must be unique across all class folders.
46
+
47
+ ### Usage (Image-specific)
48
+
49
+ Use PrismRCL for training with image data:
50
+
51
+ ```
52
+ C:\PrismRCL\PrismRCL.exe chisquared rclticks=10 boxdown=0 ^
53
+ data=C:\path\to\satellite2-png\train testdata=C:\path\to\satellite2-png\test ^
54
+ savemodel=C:\path\to\models\satellite_image_model.classify ^
55
+ log=C:\path\to\log_files stopwhendone
56
+ ```
57
+
58
+ ### Explanation of Command
59
+
60
+ - **chisquared:** Specifies Chi-squared as the evaluation method for training.
61
+ - **rclticks:** Number of RCL iterations during training.
62
+ - **boxdown:** RCL-specific training parameter.
63
+ - **data & testdata:** Paths to training and testing image datasets.
64
+ - **savemodel:** Output path for the trained classification model.
65
+ - **log:** Directory for storing log files.
66
+ - **stopwhendone:** Automatically terminates the session after training completion.
67
+
68
+ ### License
69
+
70
+ This dataset is licensed under the MIT License.
71
+
72
+ ### Original Source
73
+
74
+ Prepared explicitly by Lumina AI for RCL-based image classification training. Please credit Lumina AI when using this dataset in research or applications.
75
+
76
+ ### Additional Information
77
+
78
+ Refer to the PrismRCL Technical Documentation v2.6.2 for more detailed guidance on imaging data preparation and parameter specifications.