Skip to content

Commit

Permalink
modificato README.MD e eliminata cartella .idea
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabrizio250 committed Sep 14, 2024
1 parent 05e77dd commit 94ecd0c
Show file tree
Hide file tree
Showing 10 changed files with 115 additions and 122 deletions.
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

16 changes: 0 additions & 16 deletions .idea/checkstyle-idea.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/make_documentation.iml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

86 changes: 86 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 0 additions & 39 deletions {{cookiecutter.project_name}}/README.MD

This file was deleted.

53 changes: 29 additions & 24 deletions README.md → {{cookiecutter.project_name}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,40 @@ The following repository contains a template for AI-based Digital Health softwar

## Repository structure
```
├── {{cookiecutter.project_name}} <- Main project directory.
|── .github <- directory containing configurations for Github Actions
│ └── workflow
├── {{cookiecutter.project_name}} <- Main project directory.
│ ├── data
│ │ ├── external <- Data from third party sources.
│ │ ├── interim <- Intermediate data that has been transformed.
│ │ ├── processed <- The final, canonical data sets for modeling.
│ │ └── raw <- The original, immutable data dump.
│ ├── docs <- Directory for documentation.
│ ├── example <- Directory for test scripts and src.
│ ├── models <- Trained and serialized models, model predictions, or model summaries.
│ ├── notebooks <- Directory with Jupyter notebooks.
│ ├── references <- Directory containing project references.
│ ├── reports <- Generated HTML, PDF, LaTeX, etc. reports.
│ │ └── figures <- Graphs and figures generated to use in reports.
│ ├── src <- Project source code.
│ │ ├── data <- Scripts to download or generate data.
│ │ ├── features <- Scripts to turn raw data into features.
│ │ ├── models <- Scripts to train and use models.
│ │ └── visualization <- Scripts to create visualizations.
│ ├── test <- Project test code.
│ │ ├── external <- Data from third party sources.
│ │ ├── interim <- Intermediate data that has been transformed.
│ │ ├── processed <- The final, canonical data sets for modeling.
│ │ └── raw <- The original, immutable data dump.
│ ├── docs <- Directory for documentation.
│ │ ├── maker_documentation <- Directory for creating documents
│ │ ├── md_docs <- Directory containing documentation in Markdown format
│ │ └──source <- Directory containing documentation template and test
│ ├── example <- Directory for test scripts and src.
│ ├── models <- Trained and serialized models, model predictions, or model summaries.
│ ├── notebooks <- Directory with Jupyter notebooks.
│ ├── references <- Directory containing project references.
│ ├── reports <- Generated HTML, PDF, LaTeX, etc. reports.
│ │ └── figures <- Graphs and figures generated to use in reports.
│ ├── src <- Project source code.
│ │ ├── data <- Scripts to download or generate data.
│ │ ├── features <- Scripts to turn raw data into features.
│ │ ├── models <- Scripts to train and use models.
│ │ └── visualization <- Scripts to create visualizations.
│ ├── test <- Project test code.
│ │ ├── data
│ │ ├── features
│ │ ├── models
│ │ └── visualization
│ ├── Makefile <- Makefile with `make install_requirements` command.
│ ├── README.md <- Project markdown file created.
│ ├── requirements.txt <- Txt file containing all requirements to install in venv.
│ ├── setup.sh <- Allows you to configure git and DVC.
├── cookiecutter.json <- Cookiecutter configuration file.
── README.md <- Markdown file for developers utilizing the template.
│ ├── Makefile <- Makefile with `make install_requirements` command.
│ ├── README.md <- Project markdown file created.
│ ├── requirements.txt <- Txt file containing all requirements to install in venv.
│ ├── setup.sh <- Allows you to configure git and DVC.
├── cookiecutter.json <- Cookiecutter configuration file.
│ └── README.md <- Markdown file for developers utilizing the template.
```


Expand Down
File renamed without changes.

0 comments on commit 94ecd0c

Please sign in to comment.