You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update Substra to Pydantic 2.3.0. Concerned components by the update are SusbtraFL, Substra, Substra-backend and Substra-tests.
35
+
31
36
Substra 0.31.0 --- 2023-09-07
32
37
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33
38
34
39
**SubstraFL:**
35
40
36
41
- **BREAKING**: `local_dependencies` is renamed `local_installable_dependencies`.
37
42
- Python dependencies can be resolved using pip compile during function registration by setting `compile` to `True` in the `Dependency` object. This will speed-up the docker image build phase when running on a Substra server but will slow down a bit the compute plan registration.
38
-
43
+
39
44
.. code-block:: python
40
45
41
46
Dependency(
42
47
pypi_dependencies=["pytest", "numpy"],
43
48
compile=True,
44
49
)
45
-
50
+
46
51
- `random.seed` , `np.random.seed` and `torch.manual_seed` are now set, saved & load in `TorchAlgo`
47
52
- When using `clean_models=True`, the tasks outputs of the very last round are now saved.****
48
53
@@ -53,7 +58,7 @@ Substra 0.31.0 --- 2023-09-07
53
58
- Fixes issue where the session would not actually last the 24 hours intended.
54
59
- Added new `Client.logout` function, mirroring `Client.login`
55
60
- `Client` can now be used within a context manager
56
-
61
+
57
62
.. code-block:: python
58
63
59
64
with Client(
@@ -114,7 +119,7 @@ Substra 0.29.0 --- 2023-06-30
114
119
**Web application**:
115
120
116
121
- In performance view, ``Rounds`` is now the default for X-axis
117
-
- In task duration, fix issue were `Task execution` and `Outputs saving` durations were inverted
122
+
- In task duration, fix issue were `Task execution` and `Outputs saving` durations were inverted
0 commit comments