webxos commited on
Commit
5f4a9b0
·
verified ·
1 Parent(s): fa293e0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +68 -1
README.md CHANGED
@@ -13,4 +13,71 @@ tags:
13
  - obstacle-avoidance
14
  - synthetic
15
  - robotics
16
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  - obstacle-avoidance
14
  - synthetic
15
  - robotics
16
+ ---
17
+
18
+ <div style="
19
+ background: #00FF00;
20
+ border-left: 4px solid #00FF00;
21
+ padding: 1.5rem;
22
+ margin: 2rem 0;
23
+ font-family: 'Fira Code', 'Courier New', monospace;
24
+ color: #00FF00;
25
+ border-radius: 0 8px 8px 0;
26
+ ">
27
+ <pre style="
28
+ font-size: 8px;
29
+ line-height: 1.2;
30
+ margin: 0;
31
+ overflow-x: auto;
32
+ color: #00FF00;
33
+ ">
34
+ _ _ __ _ _ ____ ____ ____ _ _ ____ ____ ____
35
+ ( \/\/ ) /__\( \/ )( ___)( _ \( ___)( \( )( _ \( ___)( _ \
36
+ ) ( /(__)\\ / )__) ) _ < )__) ) ( )(_) ))__) ) /
37
+ (__/\__)(__)(__)\/ (____)(____/(____)(_)\_)(____/(____)(_)\_)
38
+
39
+ </div>
40
+
41
+ # OVERVIEW
42
+
43
+ Generated synthetic dataset for drone autonomy ML training, including telemetry signals
44
+ (acceleration, gyro, altitude, velocity, battery, GPS), SLAM (obstacle detection/mapping),
45
+ and avoidance maneuvers in simulated 3D environments with configurable parameters (complexity,
46
+ noise, frequency, dynamic obstacles).
47
+
48
+ # DETAILS
49
+
50
+ Structure & Content: Tiny tabular/text dataset (219 Bytes downloaded, ~4 KB in Parquet format) with 1 row and 8 columns:
51
+
52
+ complexity: int64 (value: 7)
53
+
54
+ noise: float64 (value: 2.5)
55
+
56
+ frequency: float64 (value: 1.8)
57
+
58
+ sample_rate: int64 (value: 100)
59
+
60
+ center_region_training: bool (value: true)
61
+
62
+ dynamic_obstacles: bool (value: true)
63
+
64
+ avoidance_training: bool (value: true)
65
+
66
+ dataset_id: string (value: "wave_bender_training_params")
67
+
68
+ # USAGE
69
+
70
+ Load via Python libraries (e.g., from datasets import load_dataset; ds = load_dataset("webxos/wavebender_dataset")
71
+ or pandas/parquet readers). Download the training app "WAVEBENDER" by webXOS in the /generator/ folder for configuring/training
72
+ WaveBender— for a simulation involving waves, noise, frequency modulation, and obstacle avoidance (e.g., in physics,
73
+ audio, or AI pathfinding).
74
+
75
+ # DEVELOPER
76
+
77
+ webXOS
78
+
79
+ webxos.netlify.app
80
+
81
+ huggingface.co/webxos
82
+
83
+ 2026