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
2 changes: 1 addition & 1 deletion argo/params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# guarantee consistent S3 paths across steps.

# --- Input ----------------------------------------------------------------
input_file: s3://projet-budget-famille/data/workflow_inputs/BDF_data_tickets_appli_20260320_a_codif.csv
input_file: s3://projet-budget-famille/data/workflow_inputs/BDF_data_saisie_vague1_a_codif.csv
#input_file: "" # mode evaluation

text_column: NAT_DEP # label column to classify
Expand Down
2 changes: 2 additions & 0 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ website:
text: Glossaire
- href: slides.qmd
text: Présentation
- href: ressources.qmd
text: Les ressources
sidebar:
style: docked
search: true
Expand Down
2 changes: 1 addition & 1 deletion preprocessing/src/data/load_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def load_input_file(path: str, con) -> pd.DataFrame:
if ext.endswith(".parquet"):
df = con.sql(f"SELECT * FROM read_parquet('{path}')").to_df()
else:
df = con.sql(f"SELECT * FROM read_csv_auto('{path}', delim=';')").to_df()
df = con.sql(f"SELECT * FROM read_csv_auto('{path}', delim=';', nullstr='NA')").to_df()

return df

Expand Down
Loading