Metadata-Version: 2.1
Name: servir-aces
Version: 0.0.1
Summary: Agricultural Classification and Estimation Service (ACES)
Home-page: https://github.com/SERVIR/servir-aces
Author: Biplov Bhandari
Author-email: bb0134@uah.edu; bionicbiplov45@gmail.com
License: GNU GPL v3.0
Keywords: remote sensing,agriculture,machine learning,deep learning
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: tensorflow>=2.9.3
Requires-Dist: apache-beam>=2.38.0
Requires-Dist: earthengine-api
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: matplotlib

# ACES (Agricultural Classification and Estimation Service)

ACES (Agricultural Classification and Estimation Service) is a Python module for generating training data and training machine learning models for remote sensing applications. It provides functionalities for data processing, data loading from Earth Engine, feature extraction, and model training.

## Features

- Data loading and processing from Earth Engine.
- Generation of training data for machine learning models.
- Training and evaluation of machine learning models (DNN, CNN, UNET).
- Support for remote sensing feature extraction.
- Integration with Apache Beam for data processing.


## Usage
Define all your configuration in `.env` file. An example of the file is provided as [`.env.example`](https://github.com/SERVIR/servir-aces/blob/main/.env.example) file.

Here's an example of how to use the ACES module:

```python
from aces.config import Config
from aces.model_trainer import ModelTrainer

if __name__ == "__main__":
    config = Config()
    trainer = ModelTrainer(config)
    trainer.train_model()
```

## Contributing
Contributions to ACES are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request on the GitHub repository.

## License
This project is licensed under the [GNU General Public License v3.0](https://github.com/SERVIR/servir-aces/blob/main/LICENSE).
