9 lines
259 B
Python
9 lines
259 B
Python
from convert import *
|
|
from joblib import dump, load
|
|
|
|
# a = generate_damage_files_index(
|
|
# num_damage=6, file_index_start=1, col=5, base_path="D:/thesis/data/dataset_A"
|
|
# )
|
|
# dump(DataProcessor(file_index=a), "D:/cache.joblib")
|
|
a = load("D:/cache.joblib")
|