@@ -361,108 +361,15 @@ There are different environment files available that only install tensorflow or
361361
362362` bioimageio.spec ` and ` bioimageio.core ` use [ loguru] ( https://github.com/Delgan/loguru ) for logging, hence the logging level
363363may be controlled with the ` LOGURU_LEVEL ` environment variable.
364+ The ` bioimageio ` CLI has logging enabled by default.
365+ To activate logging when using bioimageio.spec/bioimageio.core as a library, add
364366
365- ## Changelog
366-
367- ### 0.9.3
368-
369- - bump bioimageio.spec library version to 0.5.5.5
370- - more robust test model reporting
371- - improved user input axis intepretation
372- - fixed conda subprocess calls
373-
374- ### 0.9.2
375-
376- - fix model inference tolerance reporting
377-
378- ### 0.9.1
379-
380- - fixes:
381- - CLI
382- - improved handling of summary argument to not create a path with brackets when given a list of paths.
383- - improved backward compatibility when runnig tests for models specifying an older bioimageio.core version in their environment.
384- This is relevant when using ` runtime_env="as-described" ` .
385- It works by simply trying option ` --summary ` (new option name) and ` --summary-path ` (outdated option name)
386-
387- ### 0.9.0
388-
389- - update to [ bioimageio.spec 0.5.4.3] ( https://github.com/bioimage-io/spec-bioimage-io/blob/main/changelog.md#bioimageiospec-0543 )
390-
391- ### 0.8.0
392-
393- - breaking: removed ` decimals ` argument from bioimageio CLI and ` bioimageio.core.commands.test() `
394- - New feature: ` bioimageio.core.test_description ` accepts ** runtime_env** and ** run_command** to test a resource
395- using the conda environment described by that resource (or another specified conda env)
396- - new CLI command: ` bioimageio add-weights ` (and utility function: bioimageio.core.add_weights)
397- - removed ` bioimageio.core.proc_ops.get_proc_class ` in favor of ` bioimageio.core.proc_ops.get_proc `
398- - new CLI command: ` bioimageio update-format `
399- - new CLI command: ` bioimageio update-hashes `
400-
401- ### 0.7.0
402-
403- - breaking:
404- - bioimageio CLI now has implicit boolean flags
405- - non-breaking:
406- - use new ` ValidationDetail.recommended_env ` in ` ValidationSummary `
407- - improve ` get_io_sample_block_metas() `
408- - now works for sufficiently large, but not exactly shaped inputs
409- - update to support ` zipfile.ZipFile ` object with bioimageio.spec==0.5.3.5
410- - add io helpers ` resolve ` and ` resolve_and_extract `
411- - added ` enable_determinism ` function and ** determinism** input argument for testing with seeded
412- random generators and optionally (determinsim=="full") instructing DL frameworks to use
413- deterministic algorithms.
414-
415- ### 0.6.10
416-
417- - fix #423
418-
419- ### 0.6.9
420-
421- - improve bioimageio command line interface (details in #157 )
422- - add ` predict ` command
423- - package command input ` path ` is now required
424-
425- ### 0.6.8
367+ ``` python
368+ from loguru import logger
426369
427- - testing model inference will now check all weight formats
428- (previously only the first one for which model adapter creation succeeded had been checked)
429- - fix predict with blocking (Thanks @thodkatz )
430-
431- ### 0.6.7
432-
433- - ` predict() ` argument ` inputs ` may be sample
434-
435- ### 0.6.6
436-
437- - add aliases to match previous API more closely
438-
439- ### 0.6.5
440-
441- - improve adapter error messages
442-
443- ### 0.6.4
444-
445- - add ` bioimageio validate-format ` command
446- - improve error messages and display of command results
447-
448- ### 0.6.3
449-
450- - Fix [ #386 ] ( https://github.com/bioimage-io/core-bioimage-io-python/issues/386 )
451- - (in model inference testing) stop assuming model inputs are tileable
452-
453- ### 0.6.2
454-
455- - Fix [ #384 ] ( https://github.com/bioimage-io/core-bioimage-io-python/issues/384 )
456-
457- ### 0.6.1
458-
459- - Fix [ #378 ] ( https://github.com/bioimage-io/core-bioimage-io-python/pull/378 ) (with [ #379 ] ( https://github.com/bioimage-io/core-bioimage-io-python/pull/379 ) )*
460-
461- ### 0.6.0
462-
463- - add compatibility with new bioimageio.spec 0.5 (0.5.2post1)
464- - improve interfaces
370+ logger.enable(" bioimageio" )
371+ ```
465372
466- ### 0.5.10
373+ ## Changelog
467374
468- - [ Fix critical bug in predict with tiling ] ( https://github.com/bioimage-io/core-bioimage-io-python/pull/359 )
375+ See [ changelog.md ] ( changelog.md )
0 commit comments