Skip to main content

This is a small library for logging while training ML. Current version is 0.2.2, its a feature-poor pre-alpha.

Project description

flowlogger

flowlogger currently is small lib in pre-alpha version for helping with ML training logging.

What is this?

flowlogger is a lib for ML training logging, currently is very few functions, currently will be improved. Currently in pre alpha

Installing

Through pip:

pip install flowlogger

Usage

Calculating the function execution time:

Using dict:

options = {
        'class_name': 'Test'
        'save_path': 'test.log',
        'print_output': True
        'return_dict': True
    }
@fl.flclass(options=options)
def print_world():
    print('Hello World!')

print_world()

Using vars:

@fl.flclass(class_name='Test', save_path='hello.log')
def five_plus_five():
    solution = 5 + 5
    print(solution)

five_plus_five()

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

flowlogger-0.2.2.tar.gz (9.2 kB view hashes)

Uploaded Source

Built Distribution

flowlogger-0.2.2-py3-none-any.whl (10.1 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