8 lines
217 B
Python
8 lines
217 B
Python
from convert import *
|
|
from joblib import dump
|
|
|
|
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")
|