<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8101388818781334078</id><updated>2021-11-10T14:48:36.172-08:00</updated><category term="Deployment"/><category term="Flask"/><category term="Neural networks"/><category term="Streamlit"/><title type='text'>Case_study</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://casestudypradeep023.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/8101388818781334078/posts/default'/><link rel='alternate' type='text/html' href='https://casestudypradeep023.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Pradeep balaji M</name><uri>http://www.blogger.com/profile/10026450518550747939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8101388818781334078.post-9003841233271781497</id><published>2021-03-12T09:58:00.000-08:00</published><updated>2021-03-12T09:58:39.179-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Neural networks"/><title type='text'>KERAS TUNER : Neural Networks Made Easy</title><content type='html'>Hey, I recently came across this library known as &lt;a href=&quot;https://keras-team.github.io/keras-tuner/ &quot; target=&quot;_blank&quot;&gt;keras tuner&lt;/a&gt; from Krish Naik&#39;s youtube channel he has done a detailed tutorial on its implementation. It can be simply installed using the pip command.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;!pip install keras-tuner&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So basically what this keras tuner does is optimization of a neural network by tweaking it&#39;s hyperparameters for better accuracy. It basically reduces the time that we spend on defining the hyperparameters value like number of filters, kernel size and etc throughout the neural network.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: blue; font-family: monospace, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14px; white-space: pre;&quot;&gt;def&lt;/span&gt;&lt;span style=&quot;background-color: #f3f3f3; font-family: monospace, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14px; white-space: pre;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: #795e26; font-family: monospace, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14px; white-space: pre;&quot;&gt;build_model&lt;/span&gt;&lt;span style=&quot;background-color: #f3f3f3; font-family: monospace, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14px; white-space: pre;&quot;&gt;(&lt;/span&gt;&lt;span style=&quot;color: #001080; font-family: monospace, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14px; white-space: pre;&quot;&gt;hp&lt;/span&gt;&lt;span style=&quot;background-color: #f3f3f3; font-family: monospace, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14px; white-space: pre;&quot;&gt;):&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;font-family: monospace, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14px; line-height: 19px; white-space: pre;&quot;&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;model=keras.models.Sequential()&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;model.add(Conv2D(&amp;nbsp;filters=hp.Int(&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;conv_filter1&#39;&lt;/span&gt;,&amp;nbsp;min_value=&lt;span style=&quot;color: #09885a;&quot;&gt;64&lt;/span&gt;,&amp;nbsp;max_value=&lt;span style=&quot;color: #09885a;&quot;&gt;128&lt;/span&gt;,&amp;nbsp;step=&lt;span style=&quot;color: #09885a;&quot;&gt;16&lt;/span&gt;),&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;kernel_size=hp.Choice(&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;conv_kernel1&#39;&lt;/span&gt;,&amp;nbsp;values=[&lt;span style=&quot;color: #09885a;&quot;&gt;3&lt;/span&gt;,&lt;span style=&quot;color: #09885a;&quot;&gt;5&lt;/span&gt;]),&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;activation=&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;relu&#39;&lt;/span&gt;,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;input_shape=(&lt;span style=&quot;color: #09885a;&quot;&gt;28&lt;/span&gt;,&lt;span style=&quot;color: #09885a;&quot;&gt;28&lt;/span&gt;,&lt;span style=&quot;color: #09885a;&quot;&gt;1&lt;/span&gt;)&amp;nbsp;))&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;model.add(Conv2D(&amp;nbsp;filters=hp.Int(&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;conv_filter2&#39;&lt;/span&gt;,&amp;nbsp;min_value=&lt;span style=&quot;color: #09885a;&quot;&gt;32&lt;/span&gt;,&amp;nbsp;max_value=&lt;span style=&quot;color: #09885a;&quot;&gt;64&lt;/span&gt;,&amp;nbsp;step=&lt;span style=&quot;color: #09885a;&quot;&gt;16&lt;/span&gt;),&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;kernel_size=hp.Choice(&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;conv_kernel2&#39;&lt;/span&gt;,&amp;nbsp;values=[&lt;span style=&quot;color: #09885a;&quot;&gt;3&lt;/span&gt;,&lt;span style=&quot;color: #09885a;&quot;&gt;5&lt;/span&gt;]),&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;activation=&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;relu&#39;&lt;/span&gt;))&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;model.add(Flatten()&amp;nbsp;)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;model.add(Dense(units=hp.Int(&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;dense_units&#39;&lt;/span&gt;,min_value=&lt;span style=&quot;color: #09885a;&quot;&gt;32&lt;/span&gt;,&amp;nbsp;max_value=&lt;span style=&quot;color: #09885a;&quot;&gt;128&lt;/span&gt;,&amp;nbsp;step=&lt;span style=&quot;color: #09885a;&quot;&gt;16&lt;/span&gt;)))&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;model.add(Dense(units=&lt;span style=&quot;color: #09885a;&quot;&gt;10&lt;/span&gt;,activation=&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;softmax&#39;&lt;/span&gt;))&lt;/span&gt;&lt;/div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;model.&lt;span style=&quot;color: #795e26;&quot;&gt;compile&lt;/span&gt;(optimizer=keras.optimizers.Adam(hp.Choice(&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;learning_rate&#39;&lt;/span&gt;,values=[&lt;span style=&quot;color: #09885a;&quot;&gt;1e-2&lt;/span&gt;,&lt;span style=&quot;color: #09885a;&quot;&gt;1e-3&lt;/span&gt;])),&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;loss=&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;sparse_categorical_crossentropy&#39;&lt;/span&gt;,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;metrics=[&lt;span style=&quot;color: #a31515;&quot;&gt;&#39;accuracy&#39;&lt;/span&gt;])&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;background-color: #f3f3f3;&quot;&gt;&amp;nbsp;&amp;nbsp;&lt;span style=&quot;color: #af00db;&quot;&gt;return&lt;/span&gt;&amp;nbsp;model&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;This is the implementation part of the code (&lt;a href=&quot;https://github.com/Pradeep23-01/Keras-tuner-experimental&quot; target=&quot;_blank&quot;&gt;GitHub link&lt;/a&gt;). It is just a simple model building except we don&#39;t have to work hard or refer to any source for attaining better accuracy the keras tuner library does it for you. In my github repository I have tried implementing this model with certain variation which actually had some impact on the models outcome not just accuracy.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;For example you could try implementing the same model removing the add() i.e. bringing everything into sequential() which will cause a reduction in the total number of parameters used improving the efficiency of the model. Tried a few other variations but didn&#39;t have a significant effect on the outcome.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Anybody who has experience building neural networks would find this implementation efficient and easy instead of defining everything we define a function and number of layers it takes care of the rest. This library and application could be ran in any IDE, I used google colab found it simple and easy to practice. There are other libraries available for the same purpose but this was the one I found better. Maybe in the future if I come across something more similar or better I&#39;ll try to post it (comment if you have any doubts). Thank you.&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://casestudypradeep023.blogspot.com/feeds/9003841233271781497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://casestudypradeep023.blogspot.com/2021/03/keras-tuner-neural-networks-made-easy.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/8101388818781334078/posts/default/9003841233271781497'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/8101388818781334078/posts/default/9003841233271781497'/><link rel='alternate' type='text/html' href='https://casestudypradeep023.blogspot.com/2021/03/keras-tuner-neural-networks-made-easy.html' title='KERAS TUNER : Neural Networks Made Easy'/><author><name>Pradeep balaji M</name><uri>http://www.blogger.com/profile/10026450518550747939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8101388818781334078.post-3442354565137291862</id><published>2021-03-11T12:45:00.007-08:00</published><updated>2021-04-01T13:12:28.534-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Deployment"/><category scheme="http://www.blogger.com/atom/ns#" term="Flask"/><category scheme="http://www.blogger.com/atom/ns#" term="Streamlit"/><title type='text'>My First Experience with Flask and Streamlit</title><content type='html'>&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://1.bp.blogspot.com/-wUcoCgaGJnw/YGYm2_VImqI/AAAAAAAAHno/lFl9XjPFJFkOs8b16pgTjQvlQtSqnyKIwCLcBGAsYHQ/s438/1_0G5zu7CnXdMT9pGbYUTQLQ.png&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;245&quot; data-original-width=&quot;438&quot; src=&quot;https://1.bp.blogspot.com/-wUcoCgaGJnw/YGYm2_VImqI/AAAAAAAAHno/lFl9XjPFJFkOs8b16pgTjQvlQtSqnyKIwCLcBGAsYHQ/s320/1_0G5zu7CnXdMT9pGbYUTQLQ.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://1.bp.blogspot.com/-6r4o7q4HYvk/YGYm4Ork4_I/AAAAAAAAHns/TA_FFcntcnYStMsuUKpWxUSL3g6zKkjGQCLcBGAsYHQ/s1200/Streamlit_Logo_%25281%2529.jpg&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; data-original-height=&quot;627&quot; data-original-width=&quot;1200&quot; height=&quot;189&quot; src=&quot;https://1.bp.blogspot.com/-6r4o7q4HYvk/YGYm4Ork4_I/AAAAAAAAHns/TA_FFcntcnYStMsuUKpWxUSL3g6zKkjGQCLcBGAsYHQ/w280-h189/Streamlit_Logo_%25281%2529.jpg&quot; width=&quot;280&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;So to begin with I obviously started with flask as soon as I wanted to learn deployment, developed a simple application for image recognition using resnet found it really interesting and easy. But sure didn&#39;t look easy or interesting when I began. The reason was I didn&#39;t have any idea with respect to html&amp;nbsp; (which later on turned out to be the easy part, lol!). It was really an easy implementation with some simple steps.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;We use an application file in which we implement flask and the model to be deployed could be any machine learning or deep learning model already completed. According to the application we are implementing we design the respective templates and at last we put them all in the same directory and run it. A proper tutorial and some solid time to learn that&#39;s all you need. The pre requisites are just python and nothing else, you&#39;ll learn the basic html needed to design a web page in the process.(I have attached a github link for the code I used to practice)&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Coming on to streamlit it overcomes those little difficulties with respect to html, you are not needed to write any code except python and the application is relatively easy. A glance at the syntaxes in the library will give you a basic picture of what can be done using it. It eliminates the html files required to design the template, which in turn are done using simple syntax from streamlit library. Unlike flask we don&#39;t need to run the code repeatedly in the terminal to view changes made in the code we just have to reload the respective web page making deployment more efficient.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Both the libraries where great to work on but relatively felt streamlit was a easier deployment as they bring in everything under one python application but as beginner learning flask would give you a bigger picture of what exactly is done in deployment of a model including the design of web page. So its better to start with Flask get an idea and then try out streamlit.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I have just begun working on deployment problems so there is a long way ahead, don&#39;t want to jump into conclusion yet on which to prefer both has its pros and cons someone else who just started may say Flask is better. So trying to stay focused on the main idea&amp;nbsp;&quot;learning&quot;. Thank you!.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;GitHub:&lt;a href=&quot;https://github.com/Pradeep23-01/Model-Deployment-&quot; target=&quot;_blank&quot;&gt;&amp;nbsp;https://github.com/Pradeep23-01/Model-Deployment-&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;Flask API:&lt;a href=&quot; https://flask.palletsprojects.com/en/1.1.x/api/ &quot; target=&quot;_blank&quot;&gt; https://flask.palletsprojects.com/en/1.1.x/api/&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;Streamlit API:&amp;nbsp;&lt;a href=&quot;https://streamlit.io/ &quot; target=&quot;_blank&quot;&gt;https://streamlit.io/&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='https://casestudypradeep023.blogspot.com/feeds/3442354565137291862/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='https://casestudypradeep023.blogspot.com/2021/03/my-first-experience-with-flask-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/8101388818781334078/posts/default/3442354565137291862'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/8101388818781334078/posts/default/3442354565137291862'/><link rel='alternate' type='text/html' href='https://casestudypradeep023.blogspot.com/2021/03/my-first-experience-with-flask-and.html' title='My First Experience with Flask and Streamlit'/><author><name>Pradeep balaji M</name><uri>http://www.blogger.com/profile/10026450518550747939</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://1.bp.blogspot.com/-wUcoCgaGJnw/YGYm2_VImqI/AAAAAAAAHno/lFl9XjPFJFkOs8b16pgTjQvlQtSqnyKIwCLcBGAsYHQ/s72-c/1_0G5zu7CnXdMT9pGbYUTQLQ.png" height="72" width="72"/><thr:total>0</thr:total></entry></feed>