Spaces:
Running
Running
File size: 2,372 Bytes
1d8403e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | # ==================================================================================================
# DEEPFAKE AUDIO - utils/argutils.py (Interface Logic Utilities)
# ==================================================================================================
#
# π DESCRIPTION
# This module provides utility functions for managing command-line arguments within the
# Deepfake Audio framework. It ensures consistent argument parsing, priority-based
# sorting, and clean console output for diagnostic reporting across all pipeline stages.
#
# π€ AUTHORS
# - Amey Thakur (https://github.com/Amey-Thakur)
# - Mega Satish (https://github.com/msatmod)
#
# π€π» CREDITS
# Original Real-Time Voice Cloning methodology by CorentinJ
# Repository: https://github.com/CorentinJ/Real-Time-Voice-Cloning
#
# π PROJECT LINKS
# Repository: https://github.com/Amey-Thakur/DEEPFAKE-AUDIO
# Video Demo: https://youtu.be/i3wnBcbHDbs
# Research: https://github.com/Amey-Thakur/DEEPFAKE-AUDIO/blob/main/DEEPFAKE-AUDIO.ipynb
#
# π LICENSE
# Released under the MIT License
# Release Date: 2021-02-06
# ==================================================================================================
from pathlib import Path
import numpy as np
import argparse
_type_priorities = [ # In decreasing order
Path,
str,
int,
float,
bool,
]
def _priority(o):
p = next((i for i, t in enumerate(_type_priorities) if type(o) is t), None)
if p is not None:
return p
p = next((i for i, t in enumerate(_type_priorities) if isinstance(o, t)), None)
if p is not None:
return p
return len(_type_priorities)
def print_args(args: argparse.Namespace, parser=None):
args = vars(args)
if parser is None:
priorities = list(map(_priority, args.values()))
else:
all_params = [a.dest for g in parser._action_groups for a in g._group_actions ]
priority = lambda p: all_params.index(p) if p in all_params else len(all_params)
priorities = list(map(priority, args.keys()))
pad = max(map(len, args.keys())) + 3
indices = np.lexsort((list(args.keys()), priorities))
items = list(args.items())
print("Arguments:")
for i in indices:
param, value = items[i]
print(" {0}:{1}{2}".format(param, ' ' * (pad - len(param)), value))
print("")
|