homura

(★ 104)

homura is a library for fast prototyping DL research

File Explorer

  • .gitignore
  • LICENSE
  • README.md
  • requirements.txt
  • setup.py

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

dict

View Details ▼

Dictionary that uses the DICT protocol.

dict {{[-D|--dbs]}}

List available databases:

dict {{[-i|--info]}} {{database_name}}

Get information about a database:

dict {{[-d|--database]}} {{database_name}} {{word}}

Look up a word in a specific database:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pip uninstall

View Details ▼

Uninstall Python packages.

pip uninstall {{package}}

Uninstall a package:

pip uninstall {{[-r|--requirement]}} {{path/to/requirements.txt}}

Uninstall packages listed in a specific file:

pip uninstall {{[-y|--yes]}} {{package}}

Uninstall package without asking for confirmation:

🔍

pytest

View Details ▼

Run Python tests.

pytest {{path/to/test_file1.py path/to/test_file2.py ...}}

Run tests from specific files:

pytest -k {{expression}}

Run tests with names matching a specific [k]eyword expression:

pytest {{[-x|--exitfirst]}}

Exit as soon as a test fails or encounters an error:

// repository documentation