|
|
|
|
|
by cestith
311 days ago
|
|
perl -e 'print scalar grep {/b/} split //, "blueberry”' echo blueberry | grep -o 'b' | wc -l echo blueberry | perl -ne 'print scalar (() = m/(b)/g)’ echo blueberry | tr -d '\n' | tr b '\n' | wc -l echo -n blueberry | tr b '\n' | wc -l So long as I’m teaching the user how to speak to the computer for a specific edge case, which of these burn nearly as much power as your prompt? Maybe we should consider that certain problems are suitable to LLMs and certain ones should be handled differently, even if that means getting the LLM to recognize its own edge cases and run canned routines to produce answers. |
|