Earlier quoted context omitted.
Some career do-nothing-but-make-noise in my organization hired a firm to 'Do AI' on some shitty data and the outcome was basically linear regression. It turns out that you can impressive executives with linear regression if you deliver it enthusiastically enough.
Tbh, often enough, linear regression is exactly what is needed.
CERN uses ultra-compact AI models on FPGAs for real-time LHC data filtering
161–166 of 166 posts
Re: CERN uses ultra-compact AI models on FPGAs for real-time LHC data filtering
#162Earlier quoted context omitted.
I'm half expecting to see "AI model" appearing as stand-in for "linear regression" at this point in the cycle.
There is an HIGGS dataset [1]. As name suggest, it is designed to apply machine learning to recognize Higgs bozon. [1] https://archive.ics.uci.edu/ml/datasets/HIGGS In my experiments, linear regression with extended (addition of squared values) attributes is very much competitive in accuracy terms with reported MLP accuracy.
Re: CERN uses ultra-compact AI models on FPGAs for real-time LHC data filtering
#163Earlier quoted context omitted.
The LHC has moved on a bit since then. Here's an open dataset that one collaboration used to train a transformer: https://opendata-qa.cern.ch/record/93940 if you can beat it with linear regression we'd be happy to know.
Thanks. The paper [1] referenced in your link follows the lagacy of the paper on the HIGGS dataset, and does not operate with quantities like accuracy and/or perplexity. HIGGS dataset paper provided area under ROC, from which one had to approximate accuracy. I used accuracy from the ADMM paper [2] to compare my results with. As I checked later, area under ROC in [1] mostly agrees with [2] SGD training results on HIGG…
Re: CERN uses ultra-compact AI models on FPGAs for real-time LHC data filtering
#164I've got news for you, everybody with a modern cpu uses this, which use a perceptron for branch prediction.
At this point AI basically means "we didn't know how to solve the problem so we just threw a black box at it".
Re: CERN uses ultra-compact AI models on FPGAs for real-time LHC data filtering
#165Earlier quoted context omitted.
Tbh, often enough, linear regression is exactly what is needed.
Yes, and we do it every day and call it 'linear regression' and don't need a data center full of expensive toys to do it
Re: CERN uses ultra-compact AI models on FPGAs for real-time LHC data filtering
#166Earlier quoted context omitted.
Implement it...from scratch? Its literally least squares regression. Its a few lines of code. What are you trying to say here?
You have to get the data first build all data processing pipelines to get your parameters for linear regression.