Skip to content

Missing directories and symbolic links #29

@perda04

Description

@perda04

With a clean git clone of this, run.py errors out quickly because of path errors. It should be addressed internally but with this at the top of run.py, it will run

import os
aialpha_home=os.getcwd()
datadir = aialpha_home + '/data/processed_data'
os.makedirs(datadir, exist_ok=True)
os.chdir(datadir)
sampledata = aialpha_home + '/sample_data/'
if not os.path.exists('sample_data') :
os.symlink(sampledata, 'sample_data')

autoencodedata = aialpha_home + '/sample_data/processed_data/autoencoder_data'
if not os.path.exists('rf_data'):
os.symlink(autoencodedata, 'rf_data')

os.chdir(aialpha_home)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions