Google app engine and machine learning [closed] - google-app-engine

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I Can to run machine learning on Google App Engine? I can utilized api intellige artificial in google app engine?

Google cloud have Cloud ML Engine for the exact purpose. Google Cloud Machine Learning Engine is a managed service that enables you to easily build machine learning models that work on any type of data, of any size. Create your model with the powerful TensorFlow framework that powers many Google products.
With Google ML Engine you can do the following things
Predictive Analytics at Scale
Build Machine Learning Models Easily
Fully Managed Service
Deep Learning Capabilities
It also include lot of other features too
Read more about it here

Related

Can I deploy a react-app to the SAP Cloud Platform? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Is it possible to deploy a react-redux application to the cloud foundry environment of the SAP Cloud Platform and is it a supported way of the new SAP Cloud Application Programming Model ?
I cannot find any official resources on that so far.
Sure you can do it. You can build a CAP backend app (with a HANA db for example), add an HTML5 frontend app with any framework you like (React, Angular, Vue, etc...) and glue it all together with the App Router, for dispatching your calls.
Here explained step-by-step how to do this:
https://blogs.sap.com/2020/09/01/how-to-build-end-to-end-custom-applications-in-cloud-foundry/?update=updated
To answer your first question, Yes It should be possible to deploy a react-redux based JavaScript application on SAP CF. You can use the static buildback for on cloud foundry. You can check the documentation here.
To answer your second question, I am not completely sure about that, But you can use CAP to generate your database and OData services, and consume them in your application. Additionaly you can check SAP fundamental react

Architecture for application that searches metadata [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I need to create an application to search for image, video and text files stored in Google Cloud Storage based on their metadata. For example, when the user performs a car search in the application, it should query all files stored in Google Cloud Storage, read its metadata, and return only the files that match the search.
I am thinking of using the following architecture:
Cloud Storage to store files and metadata
App Engine to host the Java application
But I'm still not sure if this architecture is the most appropriate. I'm also not sure about the process to fetch the files in Cloud Storage and then read their metadata. This seems to me that it will greatly impact the performance of the application.
Has anyone had experience on a similar project and could share some tips?
Thank you.
I agree with your choice, you can choose between App Engine Standard o Flexible, I would like to add that the App Engine Standard manages Java 8, if you want a different runtime, you can choose App Engine Flexible, and Cloud Storage is the correct choice if some images are managed in the App.

Google Cloud vs. Google App Engine for a beginner? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Which do you think is easier for a beginner who lacks of knowledge of setting up a server?
Or, in other words: if I want to start a website, is learning the infrastructure of Google App Engine or learning the normal way to host a website easier?
I have spent some time learning Django, Python, AngularJS and Google App Engine.
AppEngine is PaaS - you can host there your apps. So you do not have to deal with the servlet container, datastore, cron jobs, scaling etc.
Compute Engine is Google's IaaS - you get a VM and you can do with it whatever you like.
Basically these 2 are completely 2 different things, for different use cases. What do you have? an app? or do you need to install other things on the machine? After you come up with answers to this, you will have the answer...

Google App Engine Vs. Google Apps Script (Within Business Apps) [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I've been thinking of creating an online service that heavily depends on HTTP GET/POST requests and some backend processing. But I'm a little confused on which is the best choice of these: Google App Engine or Google Apps Script?
I know Google App Script deals mainly with the other Google products, but that I don't mind; I can write scripts to handle my requests, do the processing, and make databases out of spreadsheets. Yes it's somewhat tiresome, but Google Business Apps is quite attractive to me since I already use it.
I haven't used a PaaS before to be honest. How would App Engine be any better? technically, pricing-wise, business-wise, security-wise... etc.
It's depend on what you want to do.
If you except a heavy load, AppEngine is scalable and permit to handle many requests per second. It launch more instances automatically.
AppEngine have some free quotas and if you develop your application correctly by using memcache you can stay under these quotas.
Doing service with App Engine is completely different than Apps Script which is juste kind of javascript. You can use Python, Java, PHP or Go on App Engine. And if you want to communicate with other Google's products you need to authenticate which is a little bit more complicated than App Script.

Blog on Google App Engine [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Hi i'm trying to host my blog on Google App Engine (Google quality & free ...) i looked everywhere for a solution.
I love jekyll project but since it's developed with ruby i can't host it on appengine.
I found hyde project ( which kind of python implemented version of jekyll) i'm thinking to use it on appengine, Are there anyone who's already using it on google appengine ?
The most possible solution is "microlog", it's a Wordpress like python implementation on GAE. jekyll is not very suitable for GAE applications, because it's workflow is Write-Generate Static Files-Publish. On GAE you cannot access the filesystem, so it's not very easy to have such a framework.
PS: if you like, you can generate static pages and store them in the database, but I cannot see the point of doing this than just store data in db and render them on the fly.

Resources