Skip to main content

Deep learning library for research experiments

Project description

[!] This code is under development and mainly for my personal use. This project is for fast prototyping of deep learning and machine learning model with minimal code. Some parts of the code may not be well-commented or lack of citation.

dlex is an open source framework for machine learning scientific experiment.

Features

  • Configuration-based experiment setup. Less code for more efficiency and reproducibility
  • Pytorch or Tensorflow 2.0 or scikit-learn as backend with similar training flow
  • Convenient "environment" for training similar models or tuning hyperparameter

anim

Install

To install the current release

pip install dlex

Try your first dlex program

from dlex import yaml_configs, Configs
from dlex.torch import PytorchBackend


@yaml_configs("""backend: pytorch
model:
    name: dlex.torch.models.DNN
    layers: [200, 100]
dataset:
    name: dlex.datasets.MNIST
    num_train: 100
    num_test: 10
    num_classes: 5
train:
    num_epochs: 10
    batch_size: 128
    optimizer:
        name: adam
        lr: 0.01
test:
    metrics: [acc]""")
def train(configs: Configs):
    params = configs.get_default_params()
    report = PytorchBackend(params).run_train()
    print(report.results)


if __name__ == "__main__":
    train()

Resources

License

Contributing

Contributions are more than welcome! Please get in touch if you would like to help out.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dlex-0.0.7.tar.gz (95.0 kB view hashes)

Uploaded Source

Built Distribution

dlex-0.0.7-py3-none-any.whl (171.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page