Tags give the ability to mark specific points in history as being important
- Sort by
- Name
- Oldest updated
- Last updated
-
v1.7.12Release v1.7.12
- !78 Make all test databases root folder point to a valid location: This will allow the docker tests to more easily setup and cleanup its content. While the folder is not used as these databases are generative only, docker will create it anyway as mounting a non-exisiting folder will trigger its creation with the daemon ownership applied.
-
v1.7.11Release v1.7.11
- !77 Pre commit cleanup: This merge request updates the pre-commit setup to match the one from beat/beat.editor> in terms of list of hooks to apply and provide the configuration of the new hooks as well. Then all files have been passed through the full setup of hooks. Commits have been split to have a grouped approach of the files having been cleaned.
- !75 Handle error the same way for all algorithm types on execution: Currently sequential and autonomous algorithms are not treating errors happening in the process method the same way. This result in missing information coming back up through beat/beat.core> This patch fixes this and also ensure that the outputs are properly closed. Fixes beat.core#98
-
v1.7.10Release v1.7.10
- !75 Handle error the same way for all algorithm types on execution: Currently sequential and autonomous algorithms are not treating errors happening in the process method the same way. This result in missing information coming back up through beat/beat.core> This patch fixes this and also ensure that the outputs are properly closed. Fixes beat.core#98
-
v1.7.9Release v1.7.9
- !73 Fixes a few warnings and depracations
- !74 Add helper property to get the environment configured for the database. Part of beat.core#64
-
v1.7.3Release v1.7.3
- !61 Improve synchronized output handling
- !62 Improve AstractStorage error message in constructor
- !63 Removed Biometrics evaluation from BEAT definition in documentation
- !64 Fix hash generated by storage classes to follow the same logic as used in beat/beat.web>
- !65 Fix license file handling for conda
-
v1.7.2Release v1.7.2
- !59 Do not systematically decode incoming zmq parts as binary data can be expected.
- !60 Fix write end_data_index None handling in LoopMessageHandler
- !61 Improve synchronized output handling by adding the name of the processor output written as parameter. This allows to properly write the output of the evaluator.
-
v1.7.0Release v1.7.0
- !40 Add BEAT framework classifier: Fixes #21
- !42 Use format for string formatting. The use of the new "fast" string notation not yet possible as production servers are on 3.5 and some environments 2.7.
- !41 Template protocol: This merge request implements the support for database V2 with protocol details moved into the ProtocolTemplate object.
- !43 Cleanup handling of database schema version: This way beat/beat.core> doesn't depend on updating the is_v1 flag.
- !44 Fix protocol view definition generation: The parameter field was missing.
- !45 Clean up test metadata for schema updates: The parameter definitions are more strict as of beat.core!65.
- !46 Improve asset information: This merge request moves some information in the Storage class so that it's easier to re-use.
- !47 Create a base class for Storage and CodeStorage: They share some logic and use so avoid code duplication and hidden missing pieces.
- !48 Assert cleanup: This merge request cleans the code base from its assert usage.
- !49 Add dummy documentation to assets in prefix: This will allow to do more tests in for example beat/beat.editor>.
- !50 Add *.rst to list of files to include from test prefix.
- !51 Handle duplicate key: This merge request implements handling of JSON file with duplicated keys.
- !52 [doc] fixed external and internal links: This merge request is fixing the link issues in the documentation of beat.
- !54 Implement loop output.
- !55 New loop user types: implement the support for both autonomous and sequential loop user types.
- !56 Fix loop dataformat export and properly export all dataformats used be it in input, outputs or loop communication.
- !57 Implement loop reading input sequentially.
- !58 Change loop parts name to use xxx_loop_processor and xxx_loop_evaluator which are clearer for the role of each.
-
v1.6.0Release v1.6.0
- !26 Refactor execution: makes the "core" parts and the "execution" parts more cleanly separated.
- !27 Soft loop: Implement soft loop
- !29 Give loop full access to input content in prepare
- !31 Add parameter to specify configuration section to load for databases_provider
- !32 Solve an issue relative to CI paths for artifacts and caches that must be relative
- !33 New documentation is now available
- !35 Temporarily remove framework trove classifier to unblock pypi upload
-
v1.5.0Release v1.5.0
New V2 API for data loading. This new version will allow algorithm to more efficiently load data to GPU when using one. This release implements three type of algorithms
- legacy (which is temporary for old algorithms to be ported)
- sequential which works like legacy meaning that each input is clocked
- autonomous which means that the algorithm is responsible for the data loading and execution