Skip to content

Releases: baal-org/baal

v1.9.2

04 Apr 17:31
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.9.1...v1.9.2

v1.9.1 Heuristic Aliases!

02 Oct 19:58
Compare
Choose a tag to compare

v1.9.0

15 Sep 21:57
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.8.0...v1.9.0

V1.8.0

13 Jul 22:01
56d3767
Compare
Choose a tag to compare

New features

  • MCCachingModule: Cache computation between Monte Carlo iteration link. Special thanks to @pieterblok for introducing this capability!
  • We can now evaluation every x epochs in ModelWrapper.train_and_test_on_datasets.

What's Changed

  • Fix doc for NLP example by @Dref360 in #241
  • #246 Fix issue where training was not kept consistent by @Dref360 in #249
  • Baal in Production Notebook | Classification | NLP | Hugging Face by @nitish1295 in #245
  • Add code walkthrough for CIFAR10 by @Dref360 in #253
  • Deprecate shuffle prop in favor of PowerSampling by @Dref360 in #260
  • docs: use correct link to experiment script by @arthur-thuy in #267
  • added setting to skip x epochs when using train_and_test_on_datasets by @studentWUR in #258
  • Add caching mechanism for MCDropout by @Dref360 in #268
  • Improve get_indices_for_active_step by caching the result according t… by @Dref360 in #269

New Contributors

Deprecation

We will deprecate shuffle_prop in favor of PowerSampling. Look here to know more about PowerBALD!

Full Changelog: v1.7.0...v1.8.0

v1.7.0

28 Oct 21:55
Compare
Choose a tag to compare

Large release where we added support for torchmetrics, moved to mkdocs and made the app more robust!

We also updated our visual identity, huge thanks to @Donasolo for the new logos!

What's Changed

New Contributors

Full Changelog: v1.6.0...v1.7.0

v1.6.0

03 May 12:50
Compare
Choose a tag to compare

What's Change

Full Changelog: v1.5.2...v1.6.0

V1.5.2

12 Apr 13:02
Compare
Choose a tag to compare

What's Changed

  • Better indexing support arrow dataset by @parmidaatg in #183
  • Raises an error instead of a warning when label has no label by @Dref360 in #187
  • #192 Use configure instead of configure_once to remove warnings by @Dref360 in #193
  • #190 Fix MRO for Lightning examples and deprecate said example by @Dref360 in #191
  • Can easily unpatch modules and use as a context manager #198 #194 :
mc_dropout_model = MCDropoutModule(your_model)
# this is stochastic
predictions = [mc_dropout_model(input) for _ in range(ITERATIONS)]

model = mc_dropout_model.unpatch()
# this is deterministic
output = model(input)


# Context manager
with MCDropoutModule(your_model) as model:
    # this is stochastic
    predictions = [model(input) for _ in range(ITERATIONS)]
# this is deterministic
output = model(input)

Full Changelog: 1.5.1...v1.5.2

v1.5.1

17 Dec 20:29
Compare
Choose a tag to compare

What's Changed

  • Solve bug where a dataset wouldnt be able to label by @Dref360 in #178

Full Changelog: 1.5.0...1.5.1

v1.5.0

13 Dec 13:46
Compare
Choose a tag to compare

What's Changed

Deprecated

  1. We now deprecate our PL integration in favor of Lightning Flash. More information to come.
  2. We renamed n_data_to_label to query_size to match academic papers notation.

Full Changelog: 1.4.0...1.5.0

v1.4.0

12 Oct 17:54
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.1...1.4.0