https://github.com/scai-bio/ad-mapper
https://github.com/scai-bio/ad-mapper
alzheimers-disease common-data-model data-harmonization
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/scai-bio/ad-mapper
- Owner: SCAI-BIO
- License: cc-by-4.0
- Created: 2023-10-13T14:12:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-31T14:25:29.000Z (over 1 year ago)
- Last Synced: 2025-01-17T16:45:11.334Z (4 months ago)
- Topics: alzheimers-disease, common-data-model, data-harmonization
- Language: Python
- Homepage: https://ad-mapper.scai.fraunhofer.de/
- Size: 11.4 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mapping Assistent
## Set up
Download the model files from here: https://drive.google.com/file/d/14AdB9NUEVGESfck-GDScFqwQld1G-5_s/view?usp=sharing and https://drive.google.com/file/d/1E2XkUM7i1oXnRvXT5OjL1l-CXjeTzCuS/view?usp=sharing and place then in backend/ai_mapper.
## Backend
In the base directory do:
```bash
export PYTHONPATH=$(pwd):PYTHONPATH
```
In the backend directory do:
```bash
export BASEDIR=$(pwd)
```Install backend/requirements.txt using
```bash
pip install -r backend/requirements.txt
```
## FrontendIn the frontend folder do:
```bash
npm i .
```
And adjust the VUE_APP_API variable in .env.development(/production) if necessary.## Run everything
_Backend_: In the backend folder: ```uvicorn main:app```
_Frontend_: ```npm run serve```