Skip to content

Commit

Permalink
fix awk command for tsv file creation in README (#8)
Browse files Browse the repository at this point in the history
Co-authored-by: sunxingwei <[email protected]>
  • Loading branch information
xingws and sunxingwei authored Sep 6, 2024
1 parent 750e7b5 commit c694902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ wavlist_to_tar your_data.tsv shards/
Creating `your_data.tsv` is simple:

```bash
find data -type f | awk 'BEGIN{"filename"}{print}' > your_data.tsv
find data -type f | awk 'BEGIN{print "filename"} {print}' > your_data.tsv
```

### 3.2 Training from source
Expand Down

0 comments on commit c694902

Please sign in to comment.