Combining CSV files

Edge AI Lab

tags
edge-ai-lab

Combine all labeled CSV files into a single dataset for Nordic Edge AI Lab. Open a terminal in the directory containing your CSV files and run the appropriate command for your operating system:

Get-Content idle.csv, swipe_right.csv, swipe_left.csv | Set-Content dataset.csv
cat idle.csv swipe_right.csv swipe_left.csv > dataset.csv

The final output will be a single CSV file containing all 8 gesture classes combined.