-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dmitrii Martynov
committed
Dec 18, 2024
1 parent
f5ea16c
commit f4b33f5
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Idea: Iterative Graph Generation with Validation Feedback | ||
Proposed approach: | ||
|
||
Generate an initial graph using an LLM | ||
Validate the generated graph using a triplet checker to identify errors | ||
Feed both the generated graph and identified errors back to the LLM | ||
Repeat steps 2-3 iteratively until all errors are resolved | ||
|
||
This creates a feedback loop where the LLM can learn from and correct mistakes in its graph generation based on concrete validation results. The triplet checker serves as an objective verification mechanism to ensure the generated graph meets all required constraints. |