- Don't error if
optim.__name__
is not present. (#54)
- Updated integration for compatibility with
neptune 1.X
- Removed
neptune
andneptune-client
from base requirements - installation is checked at runtime - Functions outside the callback accept
Handler
as well
NeptuneCallback
now accepts a namespaceHandler
as an alternative toRun
for therun
argument. This means that you can call it likeNeptuneCallback(run=run["some/namespace/"])
to log everything to thesome/namespace/
location of the run.
- Instead of the
log()
method, the integration now usesappend()
which is available since version 0.16.14 of neptune-client.
- Fixed NeptuneCallback import error - now possible to directly import with
from neptune_fastai import NeptuneCallback
(#39)
- Changed integrations utils to be imported from non-internal package (#33)
- Mechanism to prevent using legacy Experiments in new-API integrations (#17)
- Behavior of uploading models and fastai minimal version requirement set to 2.4 (#16)
- Warning instead of an error when calling callback from method without SaveModelCallback (#15)