<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vijish Madhavan</title>
    <description>The latest articles on DEV Community by Vijish Madhavan (@vijishmadhavan).</description>
    <link>https://dev.to/vijishmadhavan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F496374%2Ffec452b9-9a59-4f65-833f-34d6a5dfedf3.jpeg</url>
      <title>DEV Community: Vijish Madhavan</title>
      <link>https://dev.to/vijishmadhavan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vijishmadhavan"/>
    <language>en</language>
    <item>
      <title>The next trend: An ML model that turns you into an illustration.</title>
      <dc:creator>Vijish Madhavan</dc:creator>
      <pubDate>Tue, 09 Feb 2021 13:11:36 +0000</pubDate>
      <link>https://dev.to/vijishmadhavan/the-next-trend-an-ml-model-that-turns-you-into-an-illustration-4nlf</link>
      <guid>https://dev.to/vijishmadhavan/the-next-trend-an-ml-model-that-turns-you-into-an-illustration-4nlf</guid>
      <description>&lt;p&gt;Deep Learning and Computer Vision has evolved and done wonders time and again. Today I would like to introduce my new project ‘Toon-Me’ after the phenomenal success of ArtLine(Over 2.7k GitHub Stars), ‘Toon-Me’ uses deep learning algorithms to achieve fine quality line art portraits. It is currently the most trending &lt;br&gt;
topic in both GitHub and paperswithcode.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/vijishmadhavan/Toon-Me"&gt;https://github.com/vijishmadhavan/Toon-Me&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The model has been built using an custom dataset using many different algorithms, derived from some research papers self-attention, progressive resizing and generator loss. It shows how stacking all the methods can generate high-quality results. Primarily PyTorch and Fastai libraries are used. It generates fine lines/edges in the sketch image, which is better than most existing methods. Try out the demo from the Colab Notebook provided in the Github repo with any portrait picture which is expected in an URL and then converted to image formats. You can clone the repository or tweak the code to use your local image file and within less than 2 minutes (executing with GPU).&lt;/p&gt;

</description>
    </item>
    <item>
      <title>ArtLine, Create Amazing Line Art Portraits</title>
      <dc:creator>Vijish Madhavan</dc:creator>
      <pubDate>Wed, 09 Dec 2020 11:00:31 +0000</pubDate>
      <link>https://dev.to/vijishmadhavan/artline-create-amazing-line-art-portraits-k44</link>
      <guid>https://dev.to/vijishmadhavan/artline-create-amazing-line-art-portraits-k44</guid>
      <description>&lt;p&gt;I am Vijish Madhavan, My experience is into marketing. Coding ka kida caught me last year.&lt;/p&gt;

&lt;p&gt;This is just a fun project!!&lt;/p&gt;

&lt;p&gt;Introducing Artline, A Deep Learning based project for creating line art portraits. &lt;/p&gt;

&lt;p&gt;As I said it was just a fun project, but the response I got surprised me. The results seems to be state of the art comparing it to previous models like APDrawingGan and U-2-Net. You are free to judge as its opensource.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Rv17SXyM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgur.com/NTi2GRA.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Rv17SXyM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://i.imgur.com/NTi2GRA.jpg" alt="ArtLine, AI generated Line Art."&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;GitHub Link&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Check out for pretty images, scroll through the repo link. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/vijishmadhavan/ArtLine"&gt;https://github.com/vijishmadhavan/ArtLine&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  &lt;strong&gt;Gist of the project&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;Note: Being a newbie my code and documentation would be bad, I will improve with time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Technical Details&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Self-Attention (&lt;a href="https://arxiv.org/abs/1805.08318"&gt;https://arxiv.org/abs/1805.08318&lt;/a&gt;). Generator is pretrained UNET with spectral normalization and self-attention. Something that I got from Jason Antic's DeOldify(&lt;a href="https://github.com/jantic/DeOldify"&gt;https://github.com/jantic/DeOldify&lt;/a&gt;), this made a huge difference, all of a sudden I started getting proper details around the facial features.&lt;/p&gt;

&lt;p&gt;Progressive Resizing (&lt;a href="https://arxiv.org/abs/1710.10196),(https://arxiv.org/pdf/1707.02921.pdf"&gt;https://arxiv.org/abs/1710.10196),(https://arxiv.org/pdf/1707.02921.pdf&lt;/a&gt;). Progressive resizing takes this idea of gradually increasing the image size, In this project the image size were gradually increased and learning rates were adjusted. Thanks to fast.ai for intrdoucing me to Progressive resizing, this helps the model to generalise better as it sees many more different images.&lt;/p&gt;

&lt;p&gt;Generator Loss : Perceptual Loss/Feature Loss based on VGG16. (&lt;a href="https://arxiv.org/pdf/1603.08155.pdf"&gt;https://arxiv.org/pdf/1603.08155.pdf&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Surprise!! No critic,No GAN. GAN did not make much of a difference so I was happy with No GAN.&lt;/p&gt;

&lt;p&gt;You can follow me on twitter @Vijish68859437&lt;/p&gt;

</description>
      <category>deeplearning</category>
      <category>machinelearning</category>
      <category>github</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
