Skip to content

oblivisheee/flowlogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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, in future will be improved. Currently in pre alpha

Installing

Via pip:

pip install flowlogger

Usage

Calculating the function execution time:

Using dict:

import flowlogger as fl
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:

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

five_plus_five()

About

Python module for logging ML training process.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages