|
|
|
|
|
by ldjkfkdsjnv
406 days ago
|
|
You are talking about current capabilities versus what is probably possible. Sure, its not possible to write proofs with an LLM right now. Somewhere inside openai is a reinforcement learning loop that looks like: current_code = read(code_base_from_file.txt) modify_prompt = "some prompt to modify code with expected outcome" result = model.run(modify_prompt, current_code) if check(result): provide_positive_feedback(model)
else: provide_negative_feedback(model)
and its clear that not only does this work, it maybe the future of what unravels software engineering.the current models are being trained for coding, but theres no reason this couldnt be tried for other domains, like pure math. |
|