├── .gitignore ├── Creating-Dependency.md ├── README.md ├── dependencies └── .gitignore ├── gulpfile.js ├── index.js ├── package.json └── simple_add.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandanand84/aws-lambda-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /Creating-Dependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandanand84/aws-lambda-tensorflow/HEAD/Creating-Dependency.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandanand84/aws-lambda-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandanand84/aws-lambda-tensorflow/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandanand84/aws-lambda-tensorflow/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandanand84/aws-lambda-tensorflow/HEAD/package.json -------------------------------------------------------------------------------- /simple_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandanand84/aws-lambda-tensorflow/HEAD/simple_add.py --------------------------------------------------------------------------------