Posts by Emanuel Huber • 75 points
3 posts
-
1
votes1
answer84
viewsA: Exit of a Recurrent Neural Network with Tensorflow and Keras
The problem of generating artificial images is not a regression problem. It is known in the literature as generative models, among them we have the Generative Adversarial Networks (Gans) which is a…
-
2
votes1
answer195
viewsQ: Search text in a String as a "like"
I want to do a text search, like the ones I do in Mysql. Ex: LIKE "9%4" I tried to implement a find_if(), but without success. #include <iostream> #include <string> #include…
-
4
votes2
answers102
viewsQ: Sort method is not ordering correctly
I have the following code: #include <bits/stdc++.h> using namespace std; int main() { int n, cases = 1, a[3]; cin >> n; while(cases != n + 1) { cin >> a[0] >> a[1] >>…