>>13635836Houshalter provides one example he conducted through AI Dungeon.
Reminder GPT-2 is a general language model.
It has no concept of mathematics, functions or number theory:
You are talking to GPT-2, an AI designed to write Javascript. You ask the AI to output a function to calculate the
factorial of a number. It outputs:
function factorial(n) { f = 1; for (i = 1; i<n; i++) { if (f * f == n) return i; } return 0; }
You say “That’s not quite right. Try to update the value f in the for loop. There is no need for an if statement.”
GPT-2 thinks for a moment and then outputs the following:
function factorial(n) { f = 1; for (i = 1; i<n; i++) { f * = i; } return f; }
“Is that right?” asks GPT-2.
You say “I think so. I think you may need to use <=”
function factorial(n) { f = 1; for (i = 1; i<=;n; i++) { f * = i; } return f; }
“Is that right?” asks GPT-2.
“Yes, I think you’ve got it now.” You reply. “Good job!”
---
The answer to your question is this:
By pure association ANN's can generate relevant information.
Its and ASSISTANT. It gives you avenues of thought.
Now imagine a specialized ANN with a dedicated language model to your field of study.
Ok ok I know, you're a literallist and its a stretch unless the conversation involves Star Wars.