Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anasaito/agriedge-project-template
https://github.com/anasaito/agriedge-project-template
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/anasaito/agriedge-project-template
- Owner: AnasAito
- Created: 2021-06-24T14:20:11.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2021-07-01T12:37:30.000Z (over 3 years ago)
- Last Synced: 2024-10-27T00:10:16.088Z (about 2 months ago)
- Language: Jupyter Notebook
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AgriEdge ML project template
## Overview
this is a biased template to be used for AgriEdge project hosted in google drive
## How to use :
> Method 1
- clone the template localy and start working
> Method 2
- create a colab notebook and run this script :
```python
def create_project_from_template( project_name , projects_folder ,template_path = 'https://github.com/AnasAito/AgriEdge-project-template.git' ):
# mount drive
from google.colab import drive
drive.mount('/content/gdrive')
# cd to projects folder
%cd gdrive/MyDrive/{projects_folder}
# clone template
! git clone https://github.com/AnasAito/AgriEdge-project-template.git
# chnage name to project_name
! mv AgriEdge-project-template {project_name}
## run this function
create_project_from_template( project_name='-Project Name-' , projects_folder ='-Parent folder-',template_path = 'https://github.com/AnasAito/AgriEdge-project-template.git' )
```
- the script create a new folder for your project by cloning this template