Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM gitpod/workspace-full-vnc

USER gitpod

# Install custom tools, runtime, etc. using apt-get
# For example, the command below would install "bastet" - a command line tetris clone:
#
# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/*
#
# More information: https://www.gitpod.io/docs/config-docker/
38 changes: 38 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
image:
file: .gitpod.Dockerfile
github:
prebuilds:
# enable for the master/default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: true
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: true
# add a check to pull requests (defaults to true)
addCheck: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
addComment: true
# add a "Review in Gitpod" button to the pull request's description (defaults to false)
addBadge: true
# add a label once the prebuild is ready to pull requests (defaults to false)
addLabel: true
tasks:
- command: /opt/android-studio/bin/studio.sh
- command: echo "Hello"
ports:
- port: 5900
onOpen: ignore
- port: 6080
onOpen: ignore
- port: 35900
onOpen: ignore
- port: 6942
onOpen: ignore
vscode:
extensions:
- [email protected]:z3IVaDRzKS8IeFWrhyaPAA==
- [email protected]:TY2OLKxxIJSs2lt3TgOpjw==
- [email protected]:sXCoQONS3kXpSTBuMnxkyQ==
- [email protected]:kX3nrW3fv/LjU/QSQ41zYA==
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/llSourcell/A_Guide_to_Running_Tensorflow_Models_on_Android)

# A_Guide_to_Running_Tensorflow_Models_on_Android
This is the code for"A Guide to Running Tensorflow Models on Android" By SIraj Raval on Youtube

Expand Down