Skip to content

qavit/gust

Repository files navigation

gust

A modularized version of https://www.kaggle.com/code/siniuho/gust0811

Install requirements

Python 3.11

conda create --name tf python=3.11

(optional)

conda install -n tf 
python -m ipykernel install --user --name tf

Install Kaggle API

Ref1

Goto https://www.kaggle.com/settings to get your kaggle.json

# Windows
pip install kaggle
mkdir C:\Users\user\.kaggle
mv C:\Users\user\Downloads\kaggle.json C:\Users\user\kaggle.json
chmod 600 C:\Users\user\kaggle.json
# Linux & MacOS
mkdir ~/.kaggle
mv ~/Downloads/kaggle.json ~/.kaggle/kaggle.json
chmod 600 ~/.kaggle/kaggle.json

Download Kaggle

kaggle kernels output gusthema/asl-fingerspelling-recognition-w-tensorflow -p /path/to/dest

/path/to/dest is the path to your download destination, for example, C:\Users\user\gust or ~/gust.

Bold = building blocks

  • tranformer.py
  • preprocess.py
  • feature_labels.py
  • characters.py
  • auxilaries.py (not executable)
  • setting.py (not executable)