July 2019
Intermediate to advanced
416 pages
10h 6m
English
Our TensorFlow application is going to run entirely in the client browser. This means that we need to write an application to host the TensorFlow functionality. We are going to use Vue to provide our client, so the following steps are needed to automatically build our Vue application.
Creating our client is as simple as running the vue create command, as follows:
vue create chapter09
This starts off the process of creating the application. There are a number of decision points that need to happen when going through the client creation process, starting off with choosing whether to accept the defaults or to manually select the features we want to add. Since we want to add TypeScript support, we need to choose ...
Read now
Unlock full access