├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── ai-api.code-workspace ├── app ├── __init__.py ├── config.py ├── db.py ├── encoders.py ├── encrypt.py ├── encrypted │ └── astradb_connect.zip ├── main.py ├── ml.py ├── models.py └── schema.py ├── datasets └── exports │ └── spam-dataset.csv ├── entrypoint.sh ├── nbs ├── 1 - Download Datasets.ipynb ├── 2 - Download Datasets & Unzip.ipynb ├── 3 - Extract, Review & Combine Datasets.ipynb ├── 4 - Convert Dataset into Vectors.ipynb ├── 5 - Convert Dataset into Vectors, Split & Export.ipynb ├── Encryption.ipynb └── encrypt_module.ipynb ├── pipelines ├── ai-model-download.yaml ├── decrypt.yaml └── encrypt.yaml ├── pyvenv.cfg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/README.md -------------------------------------------------------------------------------- /ai-api.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/ai-api.code-workspace -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/config.py -------------------------------------------------------------------------------- /app/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/db.py -------------------------------------------------------------------------------- /app/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/encoders.py -------------------------------------------------------------------------------- /app/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/encrypt.py -------------------------------------------------------------------------------- /app/encrypted/astradb_connect.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/encrypted/astradb_connect.zip -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/main.py -------------------------------------------------------------------------------- /app/ml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/ml.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/models.py -------------------------------------------------------------------------------- /app/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/app/schema.py -------------------------------------------------------------------------------- /datasets/exports/spam-dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/datasets/exports/spam-dataset.csv -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /nbs/1 - Download Datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/nbs/1 - Download Datasets.ipynb -------------------------------------------------------------------------------- /nbs/2 - Download Datasets & Unzip.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/nbs/2 - Download Datasets & Unzip.ipynb -------------------------------------------------------------------------------- /nbs/3 - Extract, Review & Combine Datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/nbs/3 - Extract, Review & Combine Datasets.ipynb -------------------------------------------------------------------------------- /nbs/4 - Convert Dataset into Vectors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/nbs/4 - Convert Dataset into Vectors.ipynb -------------------------------------------------------------------------------- /nbs/5 - Convert Dataset into Vectors, Split & Export.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/nbs/5 - Convert Dataset into Vectors, Split & Export.ipynb -------------------------------------------------------------------------------- /nbs/Encryption.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/nbs/Encryption.ipynb -------------------------------------------------------------------------------- /nbs/encrypt_module.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/nbs/encrypt_module.ipynb -------------------------------------------------------------------------------- /pipelines/ai-model-download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/pipelines/ai-model-download.yaml -------------------------------------------------------------------------------- /pipelines/decrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/pipelines/decrypt.yaml -------------------------------------------------------------------------------- /pipelines/encrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/pipelines/encrypt.yaml -------------------------------------------------------------------------------- /pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/pyvenv.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/AI-as-an-API-Course-Reference/HEAD/requirements.txt --------------------------------------------------------------------------------