Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,7 +22,7 @@ This dataset contains 6-channel 3D volumetric tensors (64×64×64) generated fro
|
|
| 22 |
## Dataset Summary
|
| 23 |
|
| 24 |
- **Malware tensors**: Generated from the VirusShare_00499 dump (~28,000 samples)
|
| 25 |
-
- **Benign tensors**: Not included
|
| 26 |
- **Tensor shape**: `(6, 64, 64, 64)` per sample, saved as `.npy` files
|
| 27 |
- **Curve order**: 6 (64³ = 262,144 voxels)
|
| 28 |
|
|
@@ -57,12 +57,14 @@ The script parses PE headers, extracts relevant sections (skipping resources, re
|
|
| 57 |
|
| 58 |
## Generating Benign Tensors
|
| 59 |
|
| 60 |
-
|
| 61 |
```bash
|
| 62 |
python malware_3d_multichannel.py -i "C:\Windows\System32" -o ./tensors_benign
|
| 63 |
python malware_3d_multichannel.py -i "C:\Program Files" -o ./tensors_benign
|
| 64 |
```
|
| 65 |
|
|
|
|
|
|
|
| 66 |
## Source Data
|
| 67 |
|
| 68 |
- **Malware**: VirusShare_00499 dump (Windows PE executables)
|
|
|
|
| 22 |
## Dataset Summary
|
| 23 |
|
| 24 |
- **Malware tensors**: Generated from the VirusShare_00499 dump (~28,000 samples)
|
| 25 |
+
- **Benign tensors**: Not included to save storage and download time (~150GB). Users can generate benign tensors using the provided script on their own installed applications.
|
| 26 |
- **Tensor shape**: `(6, 64, 64, 64)` per sample, saved as `.npy` files
|
| 27 |
- **Curve order**: 6 (64³ = 262,144 voxels)
|
| 28 |
|
|
|
|
| 57 |
|
| 58 |
## Generating Benign Tensors
|
| 59 |
|
| 60 |
+
Benign tensors are not hosted due to the prohibitive size (~150GB). To generate your own, run the script on locally installed applications:
|
| 61 |
```bash
|
| 62 |
python malware_3d_multichannel.py -i "C:\Windows\System32" -o ./tensors_benign
|
| 63 |
python malware_3d_multichannel.py -i "C:\Program Files" -o ./tensors_benign
|
| 64 |
```
|
| 65 |
|
| 66 |
+
Any directory containing legitimate PE executables will work.
|
| 67 |
+
|
| 68 |
## Source Data
|
| 69 |
|
| 70 |
- **Malware**: VirusShare_00499 dump (Windows PE executables)
|