import os
import math
import tensorflow as tf

from tqdm import tqdm
from utils.utils import *
from utils.utils_preprocess import *
from utils.utils_quant import *

def main():
    
    seed_everything(seed=42)
    path = r"D:\01. Datasets\01. Elderly Fall Datasets\2024_SF_TEST\251117_redy_test"
    save_path = r"D:\01. Datasets\01. Elderly Fall Datasets\KFALL\revised_data\safeware"

    # make_dataset(path, save_path=save_path, type=2, include=['Test03'])
    make_dataset(path, save_path=save_path, type=2, include=None)
    # make_dataset(path, type=1, target='test')


if __name__ == '__main__':
    main()