Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b6be787
add spec
voorhs May 23, 2026
d5d2d29
pull dev
voorhs May 25, 2026
dceb985
upd tech spec
voorhs Jun 5, 2026
94b4e12
add feasibility advisor: CLI script, package, tests; expand proposal
Samoed Jun 9, 2026
c8675b9
fix
Samoed Jun 15, 2026
ad2c3bb
Merge branch 'dev' into feat/feasibility-check
Samoed Jun 15, 2026
f927729
add more handling
Samoed Jun 15, 2026
82a7828
add more handling
Samoed Jun 15, 2026
bbb039e
fix typing & lint
Samoed Jun 16, 2026
4e1966c
Merge branch 'dev' into feat/feasibility-check
Samoed Jun 16, 2026
334783c
try to fix typing
Samoed Jun 16, 2026
4e4da91
roll back config changes
Samoed Jun 16, 2026
8bd0b01
move cli logic
Samoed Jun 16, 2026
b77d575
simplify logic
Samoed Jun 16, 2026
1f1778a
simplify logic
Samoed Jun 16, 2026
e0f1486
remove from init
Samoed Jun 16, 2026
6496b4e
revert pyproject.toml
Samoed Jun 16, 2026
bc3df74
update typing
Samoed Jun 16, 2026
7cb0f53
refactor
Samoed Jun 22, 2026
1841d08
commit missing files
Samoed Jun 24, 2026
b79d83e
Merge branch 'dev' into feat/feasibility-check
Samoed Jun 24, 2026
bfd5e0c
fix typing
Samoed Jun 24, 2026
319d88e
fix typing
Samoed Jun 24, 2026
908b28d
fix test
Samoed Jun 24, 2026
3c676ef
upd
Samoed Jul 6, 2026
570a135
add scripts
Samoed Jul 6, 2026
7eb73f8
upd w&b
Samoed Jul 6, 2026
953262b
improve w&b run name
Samoed Jul 6, 2026
ac8cc67
cap cpu
Samoed Jul 6, 2026
970a7f3
address follow-up review P0/P1/P2 items across advisor + calibrator
Samoed Aug 4, 2026
0dfcd6d
fix _StepTimingCallback missing on_train_begin (and every other HF hook)
Samoed Aug 7, 2026
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
281 changes: 281 additions & 0 deletions compute-feasibility-advisor-proposal.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ dependencies = [
"aiofiles (>=24.1.0,<25.0.0)",
"threadpoolctl (>=3.0.0,<4.0.0)",
"packaging (>=23.2)",
"psutil (>=5.9.0,<8.0.0)",
]

[project.optional-dependencies]
Expand Down Expand Up @@ -121,6 +122,7 @@ typing = [
"joblib-stubs (>=1.4.2.5.20240918,<2.0.0)",
"pandas-stubs (>= 2.2.3.250527, <3.0.0)",
"types-aiofiles (>=24.1.0.20250606)",
"types-psutil>=7.2.2.20260518",
]
docs = [
"sphinx (>=8.1.3,<9.0.0)",
Expand All @@ -145,6 +147,7 @@ Documentation = "https://deeppavlov.github.io/AutoIntent/"
[project.scripts]
"basic-aug" = "autointent.generation.utterances._basic.cli:main"
"evolution-aug" = "autointent.generation.utterances._evolution.cli:main"
"advisor" = "autointent._advisor._cli:main"

[build-system]
requires = ["uv_build>=0.8.7,<0.9.0"]
Expand Down
Loading
Loading