In many uses of multispectral satellite imagery, clouds obscure what we really care about - for example, tracking wildfires, mapping deforestation, or monitoring crop health. Being able to more accurately remove clouds from satellite images filters out interference, unlocking the potential of a vast range of use cases. With this goal in mind, this training dataset was generated as part of crowdsourcing competition.
-
Download VSCode : https://code.visualstudio.com/download
-
Download micromamba : https://mamba.readthedocs.io/en/latest/micromamba-installation.html
- Note : The project dependencies are in conda format so it also works with conda but micromamba is faster and the selected tool for the team.
-
Create an environment and download the project dependencies.
micromamba create --name gif-7005-project --file environment.yml --yes
- This command will create a micromamba/conda environment with the name
gif-7005-project
and download all the dependencies using theenvironment.yml
file from this repository.
- This command will create a micromamba/conda environment with the name
-
In a terminal, locate the path of your environment.
micromamba env list
- Copy the path of the environment you just created.
-
Open VSCode.
-
Open the command palette (Ctrl + Shift + P).
-
Type
Select interpreter
and select the Python option. -
Click on "Enter interpreter path..."
-
Copy & paste the path of your environment to the textbox in VSCode.
-
Press enter to confirm the path in VSCode.
-
Open the
code/src/verify_setup.ipynb
notebook and click on "Select Kernel" -
Click on "Python Environments..."
-
Select your micromamba environment (here
gif-7005-project
) -
Run the notebook cell to confirm that your setup is correct.