--- title: Is that Don DeLillo? sdk: gradio sdk_version: 3.20.0 python_version: 3.10.8 app_file: app.py --- # Is that Don DeLillo? ## A machine learning model that identifies any image as Don DeLillo _It came to me in a dream._ ## Online resources - Deployed on [HuggingFace Spaces](TBD) - [Kaggle notebook](https://www.kaggle.com/boettesattva/don-delillo/edit) for creating the model used in the app - [Google Colab hosting the app](https://colab.research.google.com/drive/1WsVYFpSyG7aonwZSTyBKCEOnm37juyws#scrollTo=wT31tO8_oVH_) (contact me to request access, but it's basically what's in this repo) ## Setup ```sh ➜ python3 -m venv is-ddl ➜ source is-ddl/bin/activate ➜ pip3 install -r requirements.txt ``` ## Run it ```sh # Ensure you've activated the virtual environment: source is-ddl/bin/activate ➜ python3 app.py ```