Skip to content

πŸ§‘πŸ»β€πŸ« NLP tutorials for newbies

Notifications You must be signed in to change notification settings

NCHU-NLP-Lab/nlp-tutorials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

515871e Β· Aug 9, 2023

History

30 Commits
Aug 9, 2023
Jul 8, 2020
Aug 9, 2021
Aug 12, 2021
Aug 11, 2020
Jul 8, 2020
Jul 8, 2020
Jul 8, 2020

Repository files navigation

Install Requirement

pip install -r requirements.txt

Goal

# check if there are Python syntax errors or undefined names
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# run testcase
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
pytest