Skip to content

A handy Python function that prints your model training loss change like stock index.

Notifications You must be signed in to change notification settings

nipunsadvilkar/loss-prettifier

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

LossPrettifier

A handy Python function that prints your model training loss change like stock index.

Example

from lossprettifier import LossPrettifier
reporter = LossPrettifier(show_percentage=True)

for i in range(100):
	# Some Training Functions 
	# loss_A = random.random()
	# loss_B = random.randrange(1,200)
	reporter(epoch=i, LossA = loss_A, LossB = loss_B)

TODO

[] Add more configurable styles

[] Add tqdm support

About

A handy Python function that prints your model training loss change like stock index.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%