-
Notifications
You must be signed in to change notification settings - Fork 8
Bug Manual
karkir0003 edited this page Jun 29, 2022
·
22 revisions
Place to put common bugs + how to fix them (as a developer). PLEASE KEEP THIS PAGE UPDATED
- Never modify files while running them
- Git CMD, Anaconda Prompt, CMD Prompt (Windows), GitKraken are helpful
- Issue: Can’t delete /node_modules directory (Windows)
Fix: Make sure that the Deep-Learning-Playground
folder is outside of OneDrive. OneDrive has tendency to sync and that takes a while since /node_modules
directory is HUGE!
- Issue: Dev Server has been initialized using an options object that does not match the API Schema. -options.allowedHosts[0] should be a non-empty string
Fix: Go into package.json
in frontend/playground-frontend
directory in the project, change react-scripts
version from 5.*
to 4.0.3
. Then, run npm install
followed by npm start
and ensure that localhost:3000 pops up! See this link
-
Issue: Backend won’t start up because
torchvision
module doesn’t exist
Fix: Run pip install torchvision
in Anaconda Prompt while in the dlplayground
conda environment. That should fix the issue!
- Issue: Feedback form page doesn’t show up
Fix: Ask Faris for .env
file and put that at the root of the frontend/playground-frontend
directory
- Home
- Terraform
- Bearer-Token-Gen-Script
- Frontend-Backend Communication Documentation
- Backend Documentation (backend)
-
driver.py
- AWS Helper Files (backend.aws_helpers)
- Dynamo DB Utility Files (aws_helpers.dynamo_db_utils)
- AWS Secrets Utility Files (aws_secrets_utils)
- AWS Batch Utility Files (aws_batch_utils)
- Firebase Helper Files (backend.firebase_helpers)
- Common Files (backend.common)
-
constants.py
-
dataset.py
-
default_datasets.py
-
email_notifier.py
-
loss_functions.py
-
optimizer.py
-
utils.py
- Deep Learning Files (backend.dl)
- Machine Learning Files (backend.ml)
- Frontend Documentation
- Bug Manual
- Developer Runbook
- Examples to locally test DLP
- Knowledge Share