From 71ce17de48a0e4d3d2838deeaf8cc117510e6122 Mon Sep 17 00:00:00 2001 From: ml server Date: Thu, 23 Jan 2020 13:53:27 -0700 Subject: [PATCH] wut-web URL, text cleanup --- notebooks/wut-web.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/notebooks/wut-web.ipynb b/notebooks/wut-web.ipynb index 773b629..0887713 100644 --- a/notebooks/wut-web.ipynb +++ b/notebooks/wut-web.ipynb @@ -107,15 +107,15 @@ "outputs": [], "source": [ "waterfallpng=os.path.basename(rfile)\n", - "print(waterfallpng)\n", + "print('Random waterfall:', waterfallpng)\n", "f=text.EvalFormatter()\n", "obsid=(f.format(\"{waterfall[slice(10,17)]}\", waterfall=waterfallpng))\n", - "print('https://network.satnogs.org/observations/{}'.format(obsid))\n", + "print('Observation URL: https://network.satnogs.org/observations/{}'.format(obsid))\n", "if prediction_bool[0] == False:\n", - " rating = 'bad'\n", + " rating = 'BAD'\n", "else:\n", - " rating = 'good'\n", - "print('Observation: %s' % (rating))" + " rating = 'GOOD'\n", + "print('AI Observation rating: %s' % (rating))" ] }, {