Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fer-aguirre/ai4foia
Proof-of-concept to recommend recipients for FOIA requests.
https://github.com/fer-aguirre/ai4foia
Last synced: 9 days ago
JSON representation
Proof-of-concept to recommend recipients for FOIA requests.
- Host: GitHub
- URL: https://github.com/fer-aguirre/ai4foia
- Owner: fer-aguirre
- License: mit
- Created: 2023-03-31T04:58:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-25T21:29:14.000Z (over 1 year ago)
- Last Synced: 2024-04-27T00:13:11.228Z (7 months ago)
- Language: Jupyter Notebook
- Size: 249 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AI4FOIA
Proof-of-concept to recommend recipients for FOIA requests.Created by: Fer Aguirre
---
## Directory Structure
```
|- .gitignore # Customized .gitignore for python projects
|- LICENSE # Project's license
|- README.md # Top-level README for this project
|
|- assets # Resources for the project
|
|- data # Categorized data files
| |- processed # Cleaned data
| |- raw # Original data
|
|- docs # Explanatory materials
| |- references # Papers, manuals, articles, etc.
| |- data-dictionary.md # Information about the data
|
|- notebooks # Jupyter notebooks
| |- 0.0-process.ipynb # Data processing (fixing column types, data cleansing, etc.)
| |- 1.0-analyze.ipynb # Exploratory data analysis
| |- 2.0-visualize.ipynb # Data visualization methods
|
|- outputs # Exports generated by notebooks
| |- tables # Generated pivot tables to analyze data
| |- figures # Generated graphics, maps, etc. to be used in reporting
|
|- project # Python package
| |- __init__.py
| |- data # Functions to manipulate data
| | |- load.py # Module to load data
| | |- process.py # Module to process data
| | |- analyze.py # Module to analyze data
| | |- export.py # Module to save exports
| | |- __init__.py
| |
| |- utils # Functions to make common patterns shorter and easier
| |- paths.py # Module to generate relative paths
| |- __init__.py
|
|- scripts # Python files
|
|- setup.py # Import project as a python module
|
|- Pipfile # Project dependencies
```
---## License
This project is released under [MIT License](/LICENSE).
---
This repository was generated with [cookiecutter](https://github.com/cookiecutter/cookiecutter).