Comments on: MATLAB Demos at GTC: Style Transfer and Celebrity Lookalikes https://blogs.mathworks.com/deep-learning/2019/03/13/gtc-here-we-come/?s_tid=feedtopost Johanna specializes in deep learning and computer vision. Her goal is to give insight into deep learning through code examples, developer Q&As, and tips and tricks using MATLAB. Wed, 12 Jun 2019 17:01:50 +0000 hourly 1 https://wordpress.org/?v=6.2.2 By: Johanna Pingel https://blogs.mathworks.com/deep-learning/2019/03/13/gtc-here-we-come/#comment-1522 Mon, 18 Mar 2019 19:38:20 +0000 https://blogs.mathworks.com/deep-learning/?p=1432#comment-1522 In reply to Bradley Monk.

Thanks Bradley. Since this is third party content, MathWorks does not endorse this website for images. Please use at your own risk.

]]>
By: Bradley Monk https://blogs.mathworks.com/deep-learning/2019/03/13/gtc-here-we-come/#comment-1358 Sat, 16 Mar 2019 06:11:38 +0000 https://blogs.mathworks.com/deep-learning/?p=1432#comment-1358 The following code can be used to download a bunch of celebrity images from the web

% get celebrity thumbnails from the web

for k = 1000:1100

    celebJPG = [num2str(k) '.jpg'];
    celebURL = ['https://celebritybucks.com/images/celebs/full/' celebJPG];


    try websave(celebJPG , celebURL); 
        fprintf('Celeb %.f saved \n',k)
    catch 
        fprintf('Celeb %.f not found \n',k)
    end 


    pause(.1);  % <-- server kindness level
end
]]>
By: Johanna Pingel https://blogs.mathworks.com/deep-learning/2019/03/13/gtc-here-we-come/#comment-1328 Fri, 15 Mar 2019 12:30:37 +0000 https://blogs.mathworks.com/deep-learning/?p=1432#comment-1328 In reply to Kris.

The trained network is too big to share on the blog, but I may be able to share via file exchange? I can look into this

]]>
By: Kris https://blogs.mathworks.com/deep-learning/2019/03/13/gtc-here-we-come/#comment-1326 Fri, 15 Mar 2019 12:27:47 +0000 https://blogs.mathworks.com/deep-learning/?p=1432#comment-1326 Very cool. Would you also please post the code for the Style Transfer example? Thanks!

]]>
By: Thanh https://blogs.mathworks.com/deep-learning/2019/03/13/gtc-here-we-come/#comment-1286 Thu, 14 Mar 2019 07:53:22 +0000 https://blogs.mathworks.com/deep-learning/?p=1432#comment-1286 Very good

]]>