We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a53d4ba + 725c441 commit 509e05eCopy full SHA for 509e05e
lib/pyrocore/README.md
@@ -13,11 +13,17 @@ Shared types and base model for Pyronear temporal smoke detection experiments.
13
Experiments add pyrocore as a path dependency in their `pyproject.toml`:
14
15
```toml
16
+[project]
17
dependencies = [
- "pyrocore @ file:///${PROJECT_ROOT}/../../lib/pyrocore",
18
+ "pyrocore",
19
]
20
+
21
+[tool.uv.sources]
22
+pyrocore = { path = "../../../lib/pyrocore" }
23
```
24
25
+Adjust the relative path depth based on the experiment's nesting level.
26
27
Then subclass `TemporalModel` and implement `predict`:
28
29
```python
0 commit comments