How do I check my training setup?

So this is what I have … bear in mind it was just what I needed and not that generic

DATE=$(date +'%Y%m%d')
curl --cookie-jar cookie -d username="<yourNBusername>" -d password="<yourNBpassword>" https://www.newsblur.com/api/login
curl --silent --cookie cookie https://www.newsblur.com/reader/feeds -o $DATE-feeds.json
jq -r '.feeds[] | [.id, .feed_title, .feed_address] | @csv' $DATE-feeds.json > $DATE-feeds.csv
cat $DATE-feeds.csv | awk -F',' '{print $1}' > $DATE-feed_ids.txt && echo "Number of Feeds: `wc -l $DATE-feed_ids.txt`"
while read id; do echo "----- $id -----"; curl --silent --cookie cookie https://www.newsblur.com/classifier/$id; printf "\n"; done < $DATE-feed_ids.txt | tee $DATE-training.txt

its pretty basic and you end up with a few files that show your training for that feed, I was gonna make it prettier but never got round to it, I was doing it steps as well so some could be consolidated.

20260113-training.txt I'd then have
----- 1778 -----
{"code": 0, "payload": {"feeds": {}, "authors": {}, "titles": {"Android": -1, "Beta": -1, "Long": -1}, "tags": {}, "texts": {}}, "result": "ok", "authenticated": true, "user_id": myuserid}

then I can look up in 20260113-feeds.csv
1778,"Google Chrome Releases","https://feeds.feedburner.com/GoogleChromeReleases"

maybe @samuelclay you could clean it up and it could be somewhere in your settings to show the training and could do more with it from there