Repository for the system used in the study.
Last updated: 04/30/2021
Read the paper: https://adamcoscia.com/projects/Impact-Trust-AI/21-trust_in_ai.pdf
Watch the video: https://youtu.be/NfrUjdmJHXQ
This is an Angular application (/app
) with Python backend (/server
).
These are the versions the system has been tested on as of 04/02/2021
- Node.js (v14.16.0) Link - Environment
- npm (v6.14.11) Link - Package installer for Node.js
- Angular CLI (v11.2.5) Link - For working with Angular projects
- Make sure Node.js and npm are installed on your system
- Install Angular CLI by running
npm install -g @angular/cli
- Navigate to
/app
and runnpm install
to install packages - Run
ng serve
and open a browser page at localhost:4200
- Python (v.3.9.x) Link - Environment
- pip Link - Package installer for Python
- venv Link - Serves files in virtual environment
- Make sure Python and pip are installed on your system
- Navigate to
/server
directory py -3.9 -m venv venv
- create a python3 virtual environment called venv in the current directoryvenv\Scripts\activate.bat
- enters the virtual environment- FROM THIS POINT ON: only use
python
command to invoke interpeter, avoid using global commandpy
!!
- FROM THIS POINT ON: only use
python -m pip install -r requirements.txt
- installs required libraries local to this project environment- Run
python server.py
- For local testing, set SERVER_URL (in
/app/src/app/models/config.ts
) tohttp://localhost:3000
- Make sure Python and pip are installed on your system
- Navigate to
/server
directory python3.9 -m venv venv
/virtualenv --python=python3.9 venv
- create a python3 virtual environment called venvsource venv/bin/activate
- enters the virtual environment- FROM THIS POINT ON: only use
python
command to invoke interpeter, avoid using global commandpython3.9
!!
- FROM THIS POINT ON: only use
python -m pip install -r requirements.txt
- installs required libraries local to this project environment- Run
python server.py
- For local testing, set SERVER_URL (in
/app/src/app/models/config.ts
) tohttp://localhost:3000
Georgia Institute of Technology
CS 6795 Introduction to Cognitive Science
Spring 2021
- Sarah Mathew ( smathew64 [at] gatech.edu )
- Adam Coscia ( acoscia6 [at] gatech.edu )
- Marina Vemmou ( mvemmou [at] gatech.edu )