Skip to content

Commit b6245b9

Browse files
committed
fix summries
1 parent 2775996 commit b6245b9

5 files changed

Lines changed: 277 additions & 102 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This document outlines the coding standards and practices to follow when working
2727
## Data Processing
2828

2929
- **Prefer Polars**: Prefer Polars over Pandas for data processing
30-
- **Be memory efficient**: use scan_parquet and lazy api. Take into account that scan_parquet can open content of whole folder instead of opening separately. Also, you can write lazyly using sink_parquet. You can also apply compression (check what sink parquet supports) when saving.
30+
- **Be memory efficient**: use scan_parquet and lazy api. Take into account that scan_parquet can open content of whole folder instead of opening separately. Also, you can write lazyly using sink_parquet. You can also apply compression (check what sink parquet supports) when saving. Avoid doing pl.scan_parquet().collect() if possible as it negates the benefits of lazy streaming.
3131
- **Use data/input, data/interim, data/output pattern** . Input and downloaded files you store at ./data/input, intermediates and interim and final at data/output
3232

3333
## Logging

docs/EXPLORE_CLI.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,4 @@ Without `--log-dir`, logs are written to stdout and a JSON file in the current d
137137

138138

139139

140+

src/cell2sentence4longevity/benchmarks/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33

44

55

6+

0 commit comments

Comments
 (0)