Skip to main content

ENIAT supports and boosts your machine learning experiments!

Project description

ENIAT

License: MIT

Eniat is a Python template for various ML packages including PyTorch, Scikit-learn.

Currently supports only PyTorch :moyai:

It provides several convenient features

  • automated training: you don't have to re-write same epoch-wise loop everytime!
  • automated distributed learning for PyTorch.
  • Easy configurations for your experiments.
  • Various package support (in the future)

Quick Start

1. Installation

Install eniat with the below command.

pip install eniat

eniat installation doesn't convey ML packages such as torch or sklearn, so install one you need before using eniat. :moyai:

2. CLI execution

You can initiate any tasks with only console commands. :moyai:

With below command, you can conduct ML experiemnts on console provided that you have proper resources for models and data. These configurations except basic arguments are based on omegaconf, so refer to the documentation and provide valid arguments.

eniat -p PACKAGE -t TASK --OTHER_CONFIGS_YOU_NEED

Or you can simply write every configurations you need into one yaml and just type the path of it like below. I strongly recommend this, because ML experiments usually require quite large amount of parameters. Make a base configuration yaml file, and modify slightly by typing additional configurations into console command, and it will be much more convenient.

eniat -c=PATH_TO_CONFIG_FILE

3. Custom code execution

eniat is designed for various environments from mere .py codes to jupyter notebooks.

The most fundamental component of eniat is Trainer. It is in charge of training your models. In the other hand, Grader only evaluates your model. Below is an example code of torch training wih eniat.

from eniat.utils.statelogger import DummyLogger
from eniat.torch import TorchTrainer, TorchGrader

logger = DummyLogger() # Default logger for Eniat
grader = TorchGrader(grader_cfg, logger = logger) # If none, train without evaluation
trainer = TorchTrainer(trainer_cfg, learner_cfg, data_cfg, logger, grader)

trainer.fit(device = 0) # training on dev 0

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

eniat-0.0.3.tar.gz (28.9 kB view details)

Uploaded Source

Built Distribution

eniat-0.0.3-py3-none-any.whl (33.1 kB view details)

Uploaded Python 3

File details

Details for the file eniat-0.0.3.tar.gz.

File metadata

  • Download URL: eniat-0.0.3.tar.gz
  • Upload date:
  • Size: 28.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for eniat-0.0.3.tar.gz
Algorithm Hash digest
SHA256 0d7b231f3109c17e1daf18313ff9b9366d168b4a9254444031433e54c1848fc6
MD5 f6de72dc769b91c65974328935c5188a
BLAKE2b-256 a6f47155b83c1917754698f74a26d4d4c37a3c6b37727226c4bcbcbeac448505

See more details on using hashes here.

File details

Details for the file eniat-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: eniat-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 33.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for eniat-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 8c7068910ec969c12a81e4a6364a473e05343b6343d504d19dab241e39e70160
MD5 b2427ebe87dc6eba48098e49e9d7dbfe
BLAKE2b-256 f00d5af3e1ab61298d71ea6f2284354f4b0676d2e83f8da8dc88a146b59f09d7

See more details on using hashes here.

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