Instructions for Running onnx.py
To execute the onnx.py script, follow the steps below. These instructions assume you have basic familiarity with Python and Conda environments.

1. Install Anaconda
Download and install Anaconda (or Miniconda) from the official website:
https://www.anaconda.com .
Follow the installation instructions for your operating system.

2. Open Anaconda Prompt
Launch the Anaconda Prompt (Windows) or terminal (Linux/Mac). This will be used to create and manage the environment.

3. Create the Conda Environment
Use the provided environment.yml file to create a Conda environment. This file specifies all required Conda packages.

conda env create -f environment.yml 

*example run
conda env create -f "Z:\Users\ONNX\environment.yml"

4. Activate the Environment
Activate the newly created Conda environment.

conda activate ONNX

5. Install Pip Dependencies
Install additional dependencies listed in the requirements.txt file using pip.

Example: 
pip install -r requirements.txt

*example run 
pip install -r "Z:\Users\ONNX\requirements.txt"

6. Configure the Script
Open the onnx.py file in a text editor or IDE. Locate the base_dir variable (e.g., on line 35) and update it to point to the directory containing your data.

*example 
base_dir = ('C:/Users/ONNX')

7. Run the Script
Execute the onnx.py script using Python. Ensure that the Conda environment is activated.

Example:
python "Z:/Users/ONNX/onnx.py"