This repository contains the micro-tasks submitted by applicants for Outreachy Round 21. For detailed description about the project and micro-tasks, click here.
Applicants are adviced to use Jupyter Notebooks for the reports. Since the project will be developed using python, applicants are advised to use Python in the notebooks!
Survey Reports should be well documented.
-
Clone the repository
git clone https://github.com/abbasidaniyal/Wikimedia-NSFW-Classifier-Reports.git cd Wikimedia-NSFW-Classifier-Reports
-
Create a Virtual Environment and activate it Virtual environment isolates the entire project. The packages used by different projects will be different and few packages used in a project might not be compatible with another one. So, using a virtual environment sets up packages individually for each project.
python3 -m venv env source env/bin/activate
-
Create a directory in the
reports
directory with you name.cd reports mkdir <NAME> cd <NAME>
-
Use this directory to upload all your work. This can contain Jupyter Notebooks and dependant files, if any.
-
Create a seperate branch and switch to it.
git branch <BRANCH-NAME> git switch <BRANCH-NAME>
-
Add the files you modified/added and commit the changes.
git add file1 file2 git commit -m "MESSAGE"
-
Get a local fork of this repository in your username-space Link.
-
Push to your fork and create a pull request. Link.