Datasets:
Update dataset card with public repo id
Browse files- README.md +2 -2
- UPLOAD_INSTRUCTIONS.md +8 -2
README.md
CHANGED
|
@@ -86,10 +86,10 @@ This export does not upload the original SQLite databases and does not include r
|
|
| 86 |
```python
|
| 87 |
from datasets import load_dataset
|
| 88 |
|
| 89 |
-
ops = load_dataset("
|
| 90 |
print(ops["train"][0])
|
| 91 |
|
| 92 |
-
summary = load_dataset("
|
| 93 |
print(summary["train"].to_pandas().sort_values("operation_count", ascending=False).head())
|
| 94 |
```
|
| 95 |
|
|
|
|
| 86 |
```python
|
| 87 |
from datasets import load_dataset
|
| 88 |
|
| 89 |
+
ops = load_dataset("Lightcap/agent-runtime-telemetry-small", "operations")
|
| 90 |
print(ops["train"][0])
|
| 91 |
|
| 92 |
+
summary = load_dataset("Lightcap/agent-runtime-telemetry-small", "tool_summary")
|
| 93 |
print(summary["train"].to_pandas().sort_values("operation_count", ascending=False).head())
|
| 94 |
```
|
| 95 |
|
UPLOAD_INSTRUCTIONS.md
CHANGED
|
@@ -9,7 +9,13 @@ agent-runtime-telemetry-small
|
|
| 9 |
Recommended repo id:
|
| 10 |
|
| 11 |
```text
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
```
|
| 14 |
|
| 15 |
## Files To Upload
|
|
@@ -74,7 +80,7 @@ PY
|
|
| 74 |
```python
|
| 75 |
from datasets import load_dataset
|
| 76 |
|
| 77 |
-
repo_id = "
|
| 78 |
for config in ["operations", "operation_events", "artifact_records", "audit_records", "tool_summary"]:
|
| 79 |
ds = load_dataset(repo_id, config)
|
| 80 |
print(config, ds["train"].num_rows, ds["train"].column_names[:8])
|
|
|
|
| 9 |
Recommended repo id:
|
| 10 |
|
| 11 |
```text
|
| 12 |
+
Lightcap/agent-runtime-telemetry-small
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
Current uploaded URL:
|
| 16 |
+
|
| 17 |
+
```text
|
| 18 |
+
https://huggingface.co/datasets/Lightcap/agent-runtime-telemetry-small
|
| 19 |
```
|
| 20 |
|
| 21 |
## Files To Upload
|
|
|
|
| 80 |
```python
|
| 81 |
from datasets import load_dataset
|
| 82 |
|
| 83 |
+
repo_id = "Lightcap/agent-runtime-telemetry-small"
|
| 84 |
for config in ["operations", "operation_events", "artifact_records", "audit_records", "tool_summary"]:
|
| 85 |
ds = load_dataset(repo_id, config)
|
| 86 |
print(config, ds["train"].num_rows, ds["train"].column_names[:8])
|