kislerdm / diagramastext

Application to streamline diagram generation using plain English instructions instead of code
https://diagramastext.dev
Apache License 2.0
24 stars 1 forks source link

Train openAI curie model using the data sample of at least a 100 elements #9

Open kislerdm opened 1 year ago

kislerdm commented 1 year ago

Problem

OpenAI provides LLMs which however do not perform well when it comes to text2diagram.

Proposed Solution

Perform fine-tuning of the curie model using the data sample of 100+ elements:

[{
     "prompt": "three connected boxes",
     "completion": {"nodes":[{"id":"0"},{"id":"1"},{"id":"2"}],"links":[{"from":"0","to":"1"},{"from":"1","to":"2"},{"from":"2","to":"0"}]}
},
...
]

DoD

Acceptance Criteria

kislerdm commented 1 year ago

@deim @diegohordi @ColeDrain @UtopicUnicorn Hey folks! Your help is crucial here! Please submit your examples to the directory, feel free to use the sample as the structure example.