infer-vst / back /utils /import csv.py
Yann
push backend
86694c3
import csv
# Open the CSV file
with open('InverSynth_00006.wav.csv', 'r') as csvfile:
reader = csv.reader(csvfile)
# Skip the header row
next(reader)
# Loop through the rows
for row in reader:
# Get the floating-point number from the third column
value = float(row[2])
# Do something with the value
print(f"The value is {value}")