Metadata-Version: 2.4
Name: deepglue
Version: 0.1.13
Summary: deepglue: A utility package for deep learning projects. Keeping things together.
Project-URL: Homepage, https://github.com/EricThomson/deepglue
Author-email: Eric Thomson <thomson.eric@gmail.com>
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: bokeh
Requires-Dist: gdown
Requires-Dist: joblib
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: scikit-image
Requires-Dist: scikit-learn
Requires-Dist: torch
Requires-Dist: torchvision
Requires-Dist: tqdm
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: isort; extra == 'dev'
Requires-Dist: pydocstyle; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: pytest-cov; extra == 'dev'
Requires-Dist: pytest-mock; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Provides-Extra: docs
Requires-Dist: mkdocs; extra == 'docs'
Requires-Dist: mkdocs-gallery; extra == 'docs'
Requires-Dist: mkdocs-gen-files; extra == 'docs'
Requires-Dist: mkdocs-literate-nav; extra == 'docs'
Requires-Dist: mkdocs-section-index; extra == 'docs'
Requires-Dist: mkdocstrings[python]; extra == 'docs'
Description-Content-Type: text/markdown

# Deep Glue

<img src="https://raw.githubusercontent.com/EricThomson/deepglue/main/docs/images/deep_glue_logo.png" alt="deepglue logo" align="right" width="180">

Utilities for pytorch-based deep learning projects. Keeping the useful stuff together in one place.

The basic philosophy of deepglue is to provide simple functionality to make deep learning projects easier. There are lots of functions we tend to replicate across different ML projects, and deepglue puts them together in one place. The guiding principle is that the code should be readable and easy to use. 

A second guiding principle is to not reinvent the wheel: if there is a standard way to do something using another tool, we will just show how to use that tool in a demo rather.

- `pip install deepglue`
- `import deepglue as dg`
- Read the docs at https://deepglue.readthedocs.io/en/latest/ 
- Check out the [demo notebook](https://github.com/EricThomson/deepglue/tree/main/demos) to see deepglue in action! :rocket:
- [Roadmap](https://github.com/EricThomson/deepglue/issues/1) :world_map:



