MySportsAI
Filly
A good judge I was reading the other day stated that like all big tech innovations LLM's will eventually migrate to your local machine. You will talk to your AI LLM locally on your machine because thats where it will reside. Couple this with an LLM trained for your specific use eg betting and it has a certain appeal. We can already install the required libraries to talk to our CSV files locally in natural language. I gave this a try this morning and here is what happened. I first issued the following prompt on a file of flat data for 2016 to 2017
What is the average pdsBtn for all races
Note the use of the exact column name pdsBtn for pounds beaten
The LLM took 3 minutes to answer and gave a correct or at least it looks correct. It also spits out the command it is going to use to get the answer so I am con fident the answer is correct
Next I asked it
What is the average of the pdsBtn column for all races of raceType Handicap
it took about the same length of time but it also got it wrong in that for some reason it examined the column raceTypeLTO (race type last time out) despite me using the column name raceType explicitly
If you are interested in trying this yourself let me know and I will walk through the setup
What is the average pdsBtn for all races
Note the use of the exact column name pdsBtn for pounds beaten
The LLM took 3 minutes to answer and gave a correct or at least it looks correct. It also spits out the command it is going to use to get the answer so I am con fident the answer is correct
Next I asked it
What is the average of the pdsBtn column for all races of raceType Handicap
it took about the same length of time but it also got it wrong in that for some reason it examined the column raceTypeLTO (race type last time out) despite me using the column name raceType explicitly
If you are interested in trying this yourself let me know and I will walk through the setup
to you, way above my pay grade.