Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

No such file or directory: 'data/tags.tsv' #10

Open
skabbit opened this issue Jul 12, 2017 · 3 comments
Open

No such file or directory: 'data/tags.tsv' #10

skabbit opened this issue Jul 12, 2017 · 3 comments

Comments

@skabbit
Copy link

skabbit commented Jul 12, 2017

No file tags.tsv needed to run split.py.
Can't find any info, how to generate it or even what does "tags" mean. (AudioNotebooks repo checked too)

@skabbit
Copy link
Author

skabbit commented Jul 12, 2017

data/name.tsv is missing too.

OFFTOP: Also, names for tsne files is changed by config of default initial_dims and perplexities in Fingerprints to t-SNE.ipynb (now it is 30 and 30)

@EMCP
Copy link

EMCP commented Jul 13, 2017

personally I dropped that data from the def combine_json along with name.tsv , and the project seemed to get up and running

@skabbit
Copy link
Author

skabbit commented Jul 13, 2017

@EMCP I did the same, in split.py replaced names list by the list of filenames.

# with open('data/tags.tsv') as tag_file:
#     tags = tag_file.read().split("\n")
# with open('data/name.tsv') as name_file:    
#     names = name_file.read().split("\n")

tags = [] * len(file_names)
with open('data/filenames.txt') as file_name_file:    
    names = file_name_file.read().split("\n")[:-1]

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants