Skip to main content

Run Torch With A Simple Miner

Project description

Published on pypi

Packaged Using Poetry

Description

TorchMiner is designed to automatic process the training ,evaluating and testing process for PyTorch DeepLearning,with a simple API.

You can access all Functions of MineTorch simply use Miner.

Quick Start

import TorchMiner
from TorchMiner import Miner
from TorchMiner.plugins.Logger.Jupyter import JupyterLogger, JupyterTqdm
from TorchMiner.plugins.Metrics import MultiClassesClassificationMetric
from TorchMiner.plugins.Recorder import TensorboardDrawer

miner = Miner(
    alchemistic_directory='/the/route/to/log', 
    train_dataloader=train_dataloader, 
    val_dataloader=val_dataloader,  

    model=model, 
    loss_func=MSELoss,  
    optimizer=optimizer,  
    experiment="the-name-of-experiment",  # Subdistribution in the experimental directory
    resume=True,  # Whether to automatically load the previous model
    eval_epoch=1,  # How many rounds are evaluated
    persist_epoch=2,  # How many rounds are saved once a checkpoint
    accumulated_iter=1,  # How many times iterates the parameter update after accumulation
    in_notebook=True,
    amp=True,  # Whether to use amp
    plugins=[
        # Use the plugins to extend the function of miner
        JupyterLogger(),
        JupyterTqdm(),
        # The two above plugins are designed to get better output in Jupyter Enviroment
        MultiClassesClassificationMetric(),
        # This Plugin can automaticly calculate Accuracy, kappa score and Confusion Matrix in Classification problems.
        TensorboardDrawer(input_to_model),
        # This Plugin can record the informations generate by training process or by other plugins in Tensorboard.
    ],
)

# And then, trigger the training process by
miner.train()

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

TorchMiner-0.4.9.tar.gz (29.1 kB view details)

Uploaded Source

Built Distribution

TorchMiner-0.4.9-py3-none-any.whl (21.4 kB view details)

Uploaded Python 3

File details

Details for the file TorchMiner-0.4.9.tar.gz.

File metadata

  • Download URL: TorchMiner-0.4.9.tar.gz
  • Upload date:
  • Size: 29.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.8.10 Windows/10

File hashes

Hashes for TorchMiner-0.4.9.tar.gz
Algorithm Hash digest
SHA256 4ffb1a0b25b02f0e75aa944cc4298cf902ceb2db987a6bd0e7ce00e5b445a6c6
MD5 046721dd37528e4f1372cda363993408
BLAKE2b-256 4d7afbbae3c2a59866f48e0b21833e5fe61d9c1440ff32eeafb91244905355b7

See more details on using hashes here.

File details

Details for the file TorchMiner-0.4.9-py3-none-any.whl.

File metadata

  • Download URL: TorchMiner-0.4.9-py3-none-any.whl
  • Upload date:
  • Size: 21.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.8.10 Windows/10

File hashes

Hashes for TorchMiner-0.4.9-py3-none-any.whl
Algorithm Hash digest
SHA256 064aeb9ba1e743ca92ebca9a488fd521795c5abc0d079b4a2dc728e42483f115
MD5 764ae4daffef0c0d33f30cea1d93413b
BLAKE2b-256 dac0bffe63235cfd8dda0415779a21a418b029d5ae2703f70968b1b8d49e947b

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