Update README.md
Browse files
README.md
CHANGED
|
@@ -39,7 +39,18 @@ pretty_name: traceix-ai-telemetry
|
|
| 39 |
|
| 40 |
# Traceix AI Security Telemetry
|
| 41 |
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
```python
|
| 45 |
from datasets import load_dataset
|
|
|
|
| 39 |
|
| 40 |
# Traceix AI Security Telemetry
|
| 41 |
|
| 42 |
+
Each dataset is a JSONL file where **each line describes a single file analyzed by Traceix**. For every file you get:
|
| 43 |
+
|
| 44 |
+
* **`file_capabilities`** – high-level behaviors and capabilities (CAPA-style + mapped to ATT&CK and MBC tags like `Execution/T1129`, `Discovery/T1083`, etc.).
|
| 45 |
+
* **`file_exif_data`** – parsed EXIF metadata (file size, type, timestamps, company/product info, subsystem, linker/OS versions, etc.).
|
| 46 |
+
* **`model_classification_info`** – [Traceix](https://traceix.com) model verdict (`safe` / `malicious`), classification timestamp, and inference latency in seconds.
|
| 47 |
+
* **`decrypted_training_data`** – numeric feature vector actually used for training/inference (PE header fields, section statistics, imports/resources counts, entropy stats, etc.).
|
| 48 |
+
* **`metadata`** – model version and accuracy, upload metadata (timestamp, SHA-256, license), and payment information (THRT amount, Solana transaction hash + explorer URL, price at time of payment).
|
| 49 |
+
|
| 50 |
+
All records are focused on **malware analysis** and are stored in **JSONL format**.
|
| 51 |
+
Datasets are **automatically exported by [Traceix](https://traceix.com) on a monthly schedule** and published **as-is** under the **CC BY 4.0** license.
|
| 52 |
+
|
| 53 |
+
You can quickly load and sanity-check any monthly corpus using:
|
| 54 |
|
| 55 |
```python
|
| 56 |
from datasets import load_dataset
|