Installation#
In order to set up the necessary environment:
Create a virtual environment using your conda or python virtualenv:
conda create -n fim_env python=3.12 conda activate fim_env
Install the project in the virtual environment:
pip install -e .
Optional and needed only once after git clone
:
Install several [pre-commit] git hooks with:
pre-commit install # You might also want to run `pre-commit autoupdate`
and check out the configuration under
.pre-commit-config.yaml
. The-n, --no-verify
flag ofgit commit
can be used to deactivate pre-commit hooks temporarily.
Then take a look into the scripts
folder.
Usage#
Note
If you want to train your own models and confirm that everything is installed properly use the following steps. Otherwise if you want to use our trained models you can safely skip this part.
To start training, follow these steps:
Make sure you have activated the virtual environment (see Installation).
Create a configuration file in YAML format, e.g.,
your-config.yaml
, with the necessary parameters for training.
Run the training script in single-node mode, providing the path to the configuration file:
python scripts/train_model.py --config <path/to/your-config.yaml>
This will start the training process using the specified configuration and save the trained model to the specified location.
To start training in distributed mode using
torchrun
, use the following command:torchrun --nproc_per_node=<number_of_gpus> scripts/train_model.py --config <path/to/your-config.yaml>
Replace
<number_of_gpus>
with the number of GPUs you want to use for distributed training.Monitor the training progress and adjust the parameters in the configuration file as needed.