See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
| #!/usr/bin/env python3 | |
| import os | |
| import argparse | |
| import glob | |
| from pydub import AudioSegment | |
| def stereo2mono(files): | |
| """Convert all files from stereo to mono. | |
| Note: this would effectively also create a copy of files that were already in a mono format | |
| Parameters |
| import numpy as np | |
| import pandas as pd | |
| import torch | |
| from sklearn.metrics import ( | |
| accuracy_score, | |
| balanced_accuracy_score, | |
| f1_score, | |
| roc_auc_score, | |
| ) |
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs