-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp1.py
59 lines (55 loc) · 2.71 KB
/
app1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import streamlit as st
import matplotlib.pyplot as plt
from PIL import Image
import numpy as np
def app():
st.title("🌱 Omdena Algeria Chapter 🌱")
img=Image.open("images/omdena_algeria.png")
# newsize=(280,300)
# img1=img.resize(newsize)
st.write("\n")
st.write("\n")
st.markdown("""Collaborate, Learn, Build, Grow """)
st.subheader("Omdena Algeria Local Chapter for both Part: 1 and Part: 2.")
st.write("\n")
st.write("\n")
st.write("\n")
st.write("\n")
st.image(img,use_column_width='always')
st.write("\n")
st.header("🤞Project Background")
st.markdown("""
Located in North Africa, Algeria has sought to support agriculture because of its potential in this sector. Indeed, it has put in place several agricultural policies and the objective was to achieve food security by substituting local production for imported products. One of the most important goals is the development of modern and sustainable protected greenhouse cultivation in Algeria. Managing greenhouses by means of AI technologies allows growers to be more focused on their crops and provides control at their fingertips.
Proposed by the University of Ain Temouchent, Algeria, this project aims to develop ML models for the management of intelligent greenhouses.""")
st.write("\n")
st.header("📌Repository")
st.markdown("""
This repository is divided into Part 1 and Part 2 respectively.
- Languages : Python
- Domains : Machine Learning, Deep Learning, Computer Vision, Web Development & Frameworks, Internet Of Things
""")
st.write("\n")
st.header("📊Directory Structure")
st.code("""
├── main
│ ├── Part 1
│ ├── Team-1 Water Level Forecasting
│ ├── Team-2 Crop Recommendation System
│ ├── Team-3 Wheat Detection
│ ├── Team-4 Pest Detection
│ ├── Team-5-Indoor Temperature and Humidity Prediction
│ ├── Team-6-Plant Species Identification
│ ├── Part 2
│ ├── Subproject1- Indoor Climate Factors
│ ├── Subproject2- Diseases and Pests Detection
│ ├── Subproject3- Recommendation Systems
│ └── README.md
├── License
├── README.md
└── .gitignore
""")
st.write("\n")
st.header("🌐Website")
link='check out this [link](https://omdena.com/local-chapters/algeria-local-chapter/)'
st.markdown(link,unsafe_allow_html=True)
st.markdown("© 2022 Omdena")