├── DataLoader ├── CelebDF.py ├── DFDC.py ├── DFW.py ├── FF.py ├── PseudoFake.py ├── SeqDeepFake.py ├── StyleGan.py ├── __init__.py └── utils.py ├── LICENSE ├── README.md ├── __init__.py ├── architecture ├── __init__.py └── utils.py ├── chatGPT_eval.py ├── clip_eval.py ├── config.py ├── experiments ├── CelebDF_Blip.yaml ├── CelebDF_Clip.yaml ├── CelebDF_GPT4.yaml ├── CelebDF_InBlip.yaml ├── CelebDF_InBlipxxl.yaml ├── CelebDF_LlaVa+.yaml ├── CelebDF_LlaVa.yaml ├── DFDC_Blip.yaml ├── DFDC_Clip.yaml ├── DFDC_GPT4.yaml ├── DFDC_InBlip.yaml ├── DFDC_InBlipxxl.yaml ├── DFDC_LlaVa+.yaml ├── DFDC_LlaVa.yaml ├── DFW_Blip.yaml ├── DFW_Clip.yaml ├── DFW_GPT4.yaml ├── DFW_InBlip.yaml ├── DFW_InBlipxxl.yaml ├── DFW_LlaVa+.yaml ├── DFW_LlaVa.yaml ├── FF_Blip.yaml ├── FF_Clip.yaml ├── FF_InBlip.yaml ├── FF_InBlipxxl.yaml ├── FF_LlaVa+.yaml ├── FF_LlaVa.yaml ├── FFaug_Blip.yaml ├── FFaug_Clip.yaml ├── FFaug_GPT4.yaml ├── FFaug_InBlip.yaml ├── FFaug_InBlipxxl.yaml ├── FFaug_LlaVa+.yaml ├── FFaug_LlaVa.yaml ├── SeqDeepFake_attr_Blip.yaml ├── SeqDeepFake_attr_Clip.yaml ├── SeqDeepFake_attr_GPT4.yaml ├── SeqDeepFake_attr_InBlip.yaml ├── SeqDeepFake_attr_InBlipxxl.yaml ├── SeqDeepFake_attr_LlaVa+.yaml ├── SeqDeepFake_attr_LlaVa.yaml ├── SeqDeepFake_comp_Blip.yaml ├── SeqDeepFake_comp_Clip.yaml ├── SeqDeepFake_comp_GPT4.yaml ├── SeqDeepFake_comp_InBlip.yaml ├── SeqDeepFake_comp_InBlipxxl.yaml ├── SeqDeepFake_comp_LlaVa+.yaml ├── SeqDeepFake_comp_LlaVa.yaml ├── StyleGAN2_Blip.yaml ├── StyleGAN2_Clip.yaml ├── StyleGAN2_GPT4.yaml ├── StyleGAN2_InBlip.yaml ├── StyleGAN2_InBlipxxl.yaml ├── StyleGAN2_LlaVa+.yaml ├── StyleGAN2_LlaVa.yaml ├── StyleGAN3_Blip.yaml ├── StyleGAN3_Clip.yaml ├── StyleGAN3_CogVLM.yaml ├── StyleGAN3_GPT4.yaml ├── StyleGAN3_InBlip.yaml ├── StyleGAN3_InBlipxxl.yaml ├── StyleGAN3_LlaVa+.yaml └── StyleGAN3_LlaVa.yaml ├── figs └── method.svg ├── local_run.sh ├── main.py ├── prompts ├── blip_prompts.yaml ├── inblip_prompts.yaml └── llava_prompts.yaml ├── requirements.txt ├── run_clip.sh ├── run_hpc.sh └── train_utils.py /DataLoader/CelebDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/CelebDF.py -------------------------------------------------------------------------------- /DataLoader/DFDC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/DFDC.py -------------------------------------------------------------------------------- /DataLoader/DFW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/DFW.py -------------------------------------------------------------------------------- /DataLoader/FF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/FF.py -------------------------------------------------------------------------------- /DataLoader/PseudoFake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/PseudoFake.py -------------------------------------------------------------------------------- /DataLoader/SeqDeepFake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/SeqDeepFake.py -------------------------------------------------------------------------------- /DataLoader/StyleGan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/StyleGan.py -------------------------------------------------------------------------------- /DataLoader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/__init__.py -------------------------------------------------------------------------------- /DataLoader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/DataLoader/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /architecture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/architecture/__init__.py -------------------------------------------------------------------------------- /architecture/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/architecture/utils.py -------------------------------------------------------------------------------- /chatGPT_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/chatGPT_eval.py -------------------------------------------------------------------------------- /clip_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/clip_eval.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/config.py -------------------------------------------------------------------------------- /experiments/CelebDF_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/CelebDF_Blip.yaml -------------------------------------------------------------------------------- /experiments/CelebDF_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/CelebDF_Clip.yaml -------------------------------------------------------------------------------- /experiments/CelebDF_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/CelebDF_GPT4.yaml -------------------------------------------------------------------------------- /experiments/CelebDF_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/CelebDF_InBlip.yaml -------------------------------------------------------------------------------- /experiments/CelebDF_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/CelebDF_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/CelebDF_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/CelebDF_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/CelebDF_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/CelebDF_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/DFDC_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFDC_Blip.yaml -------------------------------------------------------------------------------- /experiments/DFDC_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFDC_Clip.yaml -------------------------------------------------------------------------------- /experiments/DFDC_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFDC_GPT4.yaml -------------------------------------------------------------------------------- /experiments/DFDC_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFDC_InBlip.yaml -------------------------------------------------------------------------------- /experiments/DFDC_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFDC_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/DFDC_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFDC_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/DFDC_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFDC_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/DFW_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFW_Blip.yaml -------------------------------------------------------------------------------- /experiments/DFW_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFW_Clip.yaml -------------------------------------------------------------------------------- /experiments/DFW_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFW_GPT4.yaml -------------------------------------------------------------------------------- /experiments/DFW_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFW_InBlip.yaml -------------------------------------------------------------------------------- /experiments/DFW_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFW_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/DFW_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFW_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/DFW_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/DFW_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/FF_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FF_Blip.yaml -------------------------------------------------------------------------------- /experiments/FF_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FF_Clip.yaml -------------------------------------------------------------------------------- /experiments/FF_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FF_InBlip.yaml -------------------------------------------------------------------------------- /experiments/FF_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FF_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/FF_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FF_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/FF_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FF_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/FFaug_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FFaug_Blip.yaml -------------------------------------------------------------------------------- /experiments/FFaug_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FFaug_Clip.yaml -------------------------------------------------------------------------------- /experiments/FFaug_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FFaug_GPT4.yaml -------------------------------------------------------------------------------- /experiments/FFaug_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FFaug_InBlip.yaml -------------------------------------------------------------------------------- /experiments/FFaug_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FFaug_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/FFaug_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FFaug_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/FFaug_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/FFaug_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_attr_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_attr_Blip.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_attr_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_attr_Clip.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_attr_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_attr_GPT4.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_attr_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_attr_InBlip.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_attr_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_attr_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_attr_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_attr_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_attr_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_attr_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_comp_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_comp_Blip.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_comp_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_comp_Clip.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_comp_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_comp_GPT4.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_comp_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_comp_InBlip.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_comp_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_comp_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_comp_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_comp_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/SeqDeepFake_comp_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/SeqDeepFake_comp_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN2_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN2_Blip.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN2_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN2_Clip.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN2_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN2_GPT4.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN2_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN2_InBlip.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN2_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN2_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN2_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN2_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN2_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN2_LlaVa.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_Blip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_Blip.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_Clip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_Clip.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_CogVLM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_CogVLM.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_GPT4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_GPT4.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_InBlip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_InBlip.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_InBlipxxl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_InBlipxxl.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_LlaVa+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_LlaVa+.yaml -------------------------------------------------------------------------------- /experiments/StyleGAN3_LlaVa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/experiments/StyleGAN3_LlaVa.yaml -------------------------------------------------------------------------------- /figs/method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/figs/method.svg -------------------------------------------------------------------------------- /local_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/local_run.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/main.py -------------------------------------------------------------------------------- /prompts/blip_prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/prompts/blip_prompts.yaml -------------------------------------------------------------------------------- /prompts/inblip_prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/prompts/inblip_prompts.yaml -------------------------------------------------------------------------------- /prompts/llava_prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/prompts/llava_prompts.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_clip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/run_clip.sh -------------------------------------------------------------------------------- /run_hpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/run_hpc.sh -------------------------------------------------------------------------------- /train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickyFot/HitchhikersGuide/HEAD/train_utils.py --------------------------------------------------------------------------------