Questions tagged [neural-style-transfer]
16 questions
8
votes
2 answers
NLP : variations of a text without modifying it's meaning
I am currently working on the automation of recurring reports (weekly 30-50 pages reports for around 100 districts). Those reports have a mostly fixed form : maps, graphs, data tables and small zone of text.
Apart for some discussion around colors…
Lucas Morin
- 2,775
- 5
- 25
- 47
8
votes
2 answers
Is Neural Style Transfer considered supervised or unsupervised learning?
As far as I understand it, the Neural Style Transfer uses a content image and a style image, and generate a new image based on the two images.
It tries to find a set of pixel values such that the cost function J(C, S) is minimized. It does not have…
Blaszard
- 911
- 1
- 13
- 30
3
votes
1 answer
How to convert night image to day image?
I have set of night images which I will be using for self driving. But I want to convert those images into day images. I have developed algorithm based on day image but it is not good for night images , so I want to convert night images to day…
Berry
- 87
- 1
- 9
2
votes
0 answers
Can BERT embeddings be used to reproduce the original content of the text?
From what I understand, BERT provides contextualized embeddings that are not deterministic the way Word2Vec embeddings (i.e. the word "Queen" doesn't always produce the same vector, it'll be different depending on the context)
Is there a way to…
RafiyaJaved
- 21
- 1
2
votes
2 answers
AWS EC2 Segmentation Fault (core dumped) issue with fast-style-transfer
I'm trying to utilize AWS EC2 p2.xlarge instance to convert images using style-transfer code given in this git repo:https://github.com/lengstrom/fast-style-transfer.git, yet when the input file becomes large, I keep running into this…
Daniel
- 181
- 1
- 11
2
votes
0 answers
Loss plateaus off in neural style transfer
I am writing an implementation of style transfer by loading a vgg model from keras and supplying it to a tensorflow model.
I am using an adam optimizer. The loss function is reducing but it is very slow and plateaus off at about 108. Additionally…
Stormlight
- 33
- 4
2
votes
0 answers
Does there exist a "content transfer" like a neural style transfer?
Normally, a neural style operation works by taking a content image and a style image.
A third image is optimized to have the same content as the content image and the same style as the style image by optimizing the content of the content image and…
azman
- 21
- 1
1
vote
1 answer
How to perform Style Transfer in 2021
I would like to perform the task described in A Neural Algorithm of Artistic Style which applies the style of an image to a different image. This paper dates back to 2015 and there has been a lot of progress in the field of computer vision since…
Statistic Dean
- 111
- 3
1
vote
0 answers
Style transfer model outputs only zero valued pixels
Currently implementing the style transfer model proposed in the article Arbitrary Style Transfer in Real-time with Adaptive Instance Normalization.
The model takes two RGB images as input: one content image and one style image and then generates a…
The dickmaster
- 11
- 3
1
vote
1 answer
How neural style transfer work in pytorch?
I am using this pytorch script to learn and understand neural style transfer. I understood most part of the code but having some hard time understanding some parts of the code.
In line 15 Its not clear to me how model_activations work. I made a…
Eka
- 301
- 1
- 3
- 11
1
vote
2 answers
Neural style transfer loss fucntion
In the loss function between generated image and content image, we calculate the error taking the only activation of the corresponding channel but for calculation of loss function between style and generated image we calculate the gram matrix.
But…
A_the_kunal
- 31
- 3
1
vote
0 answers
Reconstructing input image from layers of a CNN
I've been trying to implement neural style transfer as described in this paper here According to the paper,
we can visualise the information at different processing stages in the
CNN by reconstructing the input image from only knowing the…
Judy T Raj
- 181
- 1
- 1
- 2
1
vote
2 answers
Can I use an ANN to translate image output from one sensor to simulate output from another sensor?
Say, for instance, if I had image data from one high resolution digital camera and wanted to make it look like it was taken from another, lower resolution, digital camera? Would training input/output pairs of overlapping images be a good way to do…
Hair of Slytherin
- 111
- 4
1
vote
1 answer
Why is there an extra convolution layer in VGG19 for some neural style transfer implementations?
I've been exploring neural style transfer and noticed that some implementations, such as the official PyTorch versions of Universal Style Transfer via Feature Transforms and unofficial Arbitrary Style Transfer in Real-time with Adaptive Instance…
shoab ahamed
- 11
- 2
1
vote
0 answers
Is there a list of neural style transfer architectures?
I'm trying to choose what neural style transfer architecture to use but I can't find a centralized list of all possible architectures I could choose from. Is there a place I could find this or could someone give me a summary of popular architectures…
Benji
- 11
- 1