Built with the tools and technologies:
Software implementation of the methodologies presented in the paper Detecting and interpreting faults in vulnerable power grids with machine learning by O. F. Eikeland, I. S. Holmstrand, S. Bakkejord, M. Chiesa, and F. M. Bianchi.
The study employs machine learning techniques to predict power disturbances by analyzing high-resolution power-quality and meteorological data. Additionally, it utilizes interpretability methods to identify factors contributing to individual faults, aiding in the development of targeted strategies for enhancing grid reliability.
└── Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learning/
├── Classification-for-imbalanced-data-with-MLP.ipynb
├── Integrated_gradients.py
├── Linear_models.py
├── MLP.py
├── MLP_tuner.py
├── MLP_tuner_kfold.py
├── Nonlinear_models.py
├── README.md
├── kfold_MLP.py
└── kfold_linear_models_and SVM.pyDETECTING-AND-INTERPRETING-FAULTS-IN-VULNERABLE-POWER-GRIDS-WITH-MACHINE-LEARNING/
__root__
Classification for imbalanced data with MLP.ipynb ❯ Example notebookLinear_models.py ❯ Implementation of different linear modelskfold_MLP.py ❯ Implementation of the k-fold for model selection in the MLPMLP.py ❯ Implementation of the MLP modelNonlinear_models.py ❯ Implementation of nonlinear modelskfold_linear_models_and SVM.py ❯ Implementation of the k-fold for model selection for linear models and SVMMLP_tuner_kfold.py ❯ Implementation of the k-fold for model selection for the MLP tunerMLP_tuner.py ❯ Implementation of the MLP tunerIntegrated_gradients.py ❯ Implementation of the Integrated gradients
Before getting started with Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learning, ensure your runtime environment meets the following requirements:
- Programming Language: Python
Install Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learning using one of the following methods:
Build from source:
- Clone the Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learning repository:
❯ git clone https://github.com/FilippoMB/Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learning- Navigate to the project directory:
❯ cd Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learning- Install the project dependencies:
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learningproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/FilippoMB/Detecting-and-interpreting-faults-in-vulnerable-power-grids-with-machine-learning
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
@article{eikeland2021detecting,
title={Detecting and Interpreting Faults in Vulnerable Power Grids With Machine Learning},
author={Eikeland, Odin Foldvik and Holmstrand, Inga Sets{\aa} and Bakkejord, Sigurd and Chiesa, Matteo and Bianchi, Filippo Maria},
journal={IEEE Access},
volume={9},
pages={150686--150699},
year={2021},
publisher={IEEE}
}