https://github.com/valentinlibouton/machinelearningutils
Utility functions for machine learning and deep learning
https://github.com/valentinlibouton/machinelearningutils
Last synced: 12 months ago
JSON representation
Utility functions for machine learning and deep learning
- Host: GitHub
- URL: https://github.com/valentinlibouton/machinelearningutils
- Owner: ValentinLibouton
- License: mit
- Created: 2024-03-16T13:52:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T20:57:25.000Z (about 2 years ago)
- Last Synced: 2025-06-15T17:07:32.773Z (about 1 year ago)
- Language: Python
- Size: 96.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Machine Learning Utils
This repository contains common utilities for Machine Learning projects. Here's how you can import and update it in your projects.
## How to import into a project
To add this library as a sub-module to your project, run the following command in the terminal at the root of your project:
```bash
git submodule add git@github.com:ValentinLibouton/MachineLearningUtils.git
```
Replace `` with the relative path in your project where you wish to add the library.
## How to update a project if MachineLearningUtils has been modified
If changes have been made to the MachineLearningUtils library and you wish to retrieve these updates in your project, follow these steps:
1. Open a terminal at the root of your project.
2. Run the following command to update the submodule:
```bash
git submodule update --remote
```
Replace `` with the relative path where the MachineLearningUtils sub-module is located in your project.
3. After updating, don't forget to commit the changes to your project to save the sub-module update:
```bash
git add
git commit -m "MachineLearningUtils updated with the latest changes"
git push
```