Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To create your first [Report](https://ramppdev.github.io/ablate/modules/report.h
For example, the built in [Mock](https://ramppdev.github.io/ablate/modules/sources.html#mock-source) can be used to simulate runs:

```python
from ablate import sources
from ablate.sources import Mock

source = Mock(
grid={"model": ["vgg", "resnet"], "lr": [0.01, 0.001]},
Expand Down Expand Up @@ -192,7 +192,7 @@ By default, _ablate_ reports populate blocks based on the global list of runs pa
To create more complex reports, blocks can be populated with a custom list of runs using the _runs_ parameter:

```python
report = ablate.Report(sorted_runs.all())
report = Report(sorted_runs.all())
report.add(H1("Report with Sorted Runs and Filtered Runs"))
report.add(H2("Sorted Runs"))
report.add(
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ To create more complex reports, blocks can be populated with a custom list of ru
.. code-block:: python
:linenos:

report = ablate.Report(sorted_runs.all())
report = Report(sorted_runs.all())
report.add(H1("Report with Sorted Runs and Filtered Runs"))
report.add(H2("Sorted Runs"))
report.add(
Expand Down
2 changes: 1 addition & 1 deletion ablate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__all__ = ["blocks", "exporters", "queries", "Report", "sources"]

__version__ = "0.1.2"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ablate"
version = "0.1.2"
version = "0.2.1"
description = "ablate turns deep learning experiments into structured, human-readable reports."
authors = [{ name = "Simon Rampp", email = "simon@rampp.dev" }]
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.