Metadata-Version: 2.4
Name: PyDLLib
Version: 1.0
Summary: A deep and machine learning library. Made for learning purposes and ease of understanding.
Author-email: Aatu Selkee <aatu.selkee@gmail.com>
Project-URL: Homepage, https://naapeli.github.io/deep-learning-library/index.html
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: absl-py==2.2.0
Requires-Dist: astunparse==1.6.3
Requires-Dist: certifi==2025.1.31
Requires-Dist: charset-normalizer==3.4.1
Requires-Dist: cloudpickle==3.1.1
Requires-Dist: contourpy==1.3.1
Requires-Dist: cvxopt==1.3.2
Requires-Dist: cycler==0.12.1
Requires-Dist: Farama-Notifications==0.0.4
Requires-Dist: filelock==3.18.0
Requires-Dist: flatbuffers==25.2.10
Requires-Dist: fonttools==4.56.0
Requires-Dist: fsspec==2025.3.0
Requires-Dist: gast==0.6.0
Requires-Dist: google-pasta==0.2.0
Requires-Dist: grpcio==1.71.0
Requires-Dist: gymnasium==1.1.1
Requires-Dist: h5py==3.13.0
Requires-Dist: idna==3.10
Requires-Dist: Jinja2==3.1.6
Requires-Dist: joblib==1.4.2
Requires-Dist: keras==3.9.0
Requires-Dist: kiwisolver==1.4.8
Requires-Dist: libclang==18.1.1
Requires-Dist: Markdown==3.7
Requires-Dist: markdown-it-py==3.0.0
Requires-Dist: MarkupSafe==3.0.2
Requires-Dist: matplotlib==3.10.1
Requires-Dist: mdurl==0.1.2
Requires-Dist: ml_dtypes==0.5.1
Requires-Dist: mpmath==1.3.0
Requires-Dist: namex==0.0.8
Requires-Dist: networkx==3.4.2
Requires-Dist: numpy==2.1.3
Requires-Dist: opt_einsum==3.4.0
Requires-Dist: optree==0.14.1
Requires-Dist: packaging==24.2
Requires-Dist: pandas==2.2.3
Requires-Dist: patsy==1.0.1
Requires-Dist: pillow==11.1.0
Requires-Dist: protobuf==5.29.4
Requires-Dist: Pygments==2.19.1
Requires-Dist: pyparsing==3.2.3
Requires-Dist: python-dateutil==2.9.0.post0
Requires-Dist: pytz==2025.2
Requires-Dist: requests==2.32.3
Requires-Dist: rich==13.9.4
Requires-Dist: SciencePlots==2.1.1
Requires-Dist: scikit-learn==1.6.1
Requires-Dist: scipy==1.15.2
Requires-Dist: six==1.17.0
Requires-Dist: statsmodels==0.14.4
Requires-Dist: sympy==1.13.1
Requires-Dist: tensorboard==2.19.0
Requires-Dist: tensorboard-data-server==0.7.2
Requires-Dist: tensorflow==2.19.0
Requires-Dist: tensorflow-io-gcs-filesystem==0.31.0
Requires-Dist: termcolor==2.5.0
Requires-Dist: threadpoolctl==3.6.0
Requires-Dist: torch==2.6.0
Requires-Dist: typing_extensions==4.13.0
Requires-Dist: tzdata==2025.2
Requires-Dist: urllib3==2.3.0
Requires-Dist: Werkzeug==3.1.3
Requires-Dist: wrapt==1.17.2
Dynamic: license-file

# DLL (Deep Learning Library)

DLL is a deep learning library inspired by TensorFlow and PyTorch. This is my largest project to date, featuring thousands of lines of code. It encompasses a wide range of deep learning and machine learning methods, and includes numerous examples and tests to demonstrate their usage. Feel free to explore the source code and experiment with the models using the documentation.

## Documentation:

Checkout the documentation of DLL [here](https://naapeli.github.io/deep-learning-library/).

## Upcoming topics:

- embedding layer
- concatenate layer
- multi headed cross attention
- hyperparameter tuning with grid search and random search
- multiclass classification with OvO and OvR

## Running Tests

To run the tests, navigate to the deep-learning-library-folder and use eg. the following command:

```
python -m Tests.ReinforcementLearning.DeepReinforcementLearning
```

Feel free to explore the code and apply it to new problems!
