ML-based InSAR models for snow depth estimation in the central mountains of ID.
- Free software: MIT License
- Documentation: https://Ibrahim-Ola.github.io/uavsar-lidar-ml-project2
- TODO
A machine learning for snow density estimation project.
This repository includes:
- Source code for uavsar-lidar-ml-project2.
- A reproducible Conda environment.
- Instructions for setup and usage.
If you don’t have Conda installed, download Miniconda or Anaconda.
git clone [email protected]:cryogars/density-models.git
cd your-repo-name
Run the following commands to create a reproducible Conda environment:
conda env create --file environment.yml
conda activate my_project_env # Use the name defined in environment.yml
Ensure everything is set up correctly:
python --version # Should match the version in environment.yml
conda list # Displays installed packages
If you install a new package, manually add it to environment.yml
, then update the environment:
conda env update --file environment.yml --prune
To deactivate the environment:
conda deactivate
To completely remove the environment:
conda env remove --name my_project_env
(Explain how users should use your project. Provide examples, command-line instructions, or API usage if applicable.)
python main.py # Example of running the project
This project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature-name
). - Commit your changes (
git commit -m 'Add new feature'
). - Push to your branch (
git push origin feature-name
). - Open a pull request.
For any questions or issues, please open an issue or reach out to [email protected].
🚀 Happy coding! 🎉