Skip to content

Commit

Permalink
Merge pull request #62 from agrilens/develop
Browse files Browse the repository at this point in the history
About Us: AI Technology Stack
  • Loading branch information
jyassien authored Dec 3, 2024
2 parents 9fe64ba + 92b7dd6 commit 9072ebb
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/aboutUs/AboutUs.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,30 @@
margin-bottom: 40px;
}

.models-section {
background-color: #f8faf8;
padding: 30px;
border-radius: 12px;
}

.tech-stack-subtitle {
font-size: 1.2rem;
color: #666;
margin-bottom: 40px;
text-align: center;
max-width: 1800px;
}
.models-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 20px;
}

.model-card {
transition: transform 0.2s ease-in-out;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
Expand Down
49 changes: 49 additions & 0 deletions src/aboutUs/AboutUs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,55 @@ export default function AboutUs() {
</div>
</div>

<div className="section">
<h1 className="feature-title fs-1 fw-bold text-center">
Our AI Technology Stack{" "}
</h1>
<p className="tech-stack-subtitle fs-4 fw-bold">
Leveraging state-of-the-art AI models to deliver comprehensive plant
identification, health analysis, and agricultural insights.
</p>
<div className="models-grid">
<div className="model-card feature-card">
<h3 className="feature-title fs-2 fw-bold">Qwen2-2VL-7B</h3>
<p className="feature-text">
The Qwen2-2VL-7b is a Multimodal Model of 7B parameters plus
visual language understanding capabilities for comprehensive
plant analysis. Our implementation of the Qwen language model
specializes in agricultural domain knowledge, providing detailed
analysis of plant conditions and offering specific
recommendations for treatment and care. This model excels at
understanding complex agricultural contexts and delivering
actionable insights to farmers.
</p>
</div>
<div className="model-card feature-card">
<h3 className="feature-title fs-2 fw-bold">Pixtral-12B-2409</h3>
<p className="feature-text">
The Pixtral-12B-2409 is a Multimodal Model of 12B parameters
plus a 400M parameter vision encoder. We utilize this Llama
based model for advanced plant analysis and disease detection.
This model processes visual data to identify plant health
issues, assess growth patterns, and detect early signs of
diseases or nutrient deficiencies. Its sophisticated analysis
capabilities help farmers take proactive measures to protect
their crops.
</p>
</div>
<div className="model-card feature-card">
<h3 className="feature-title fs-2 fw-bold">Plant.id v3</h3>
<p className="feature-text">
Plant.id v3 is an advanced machine learning service specialized
in identifying plant species and assessing plant health
conditions through image analysis. This model uses computer
vision technology to accurately identify plant species,
varieties, and growth stages. This closed-sourced model enables
precise plant recognition that informs subsequent analysis and
recommendations.
</p>
</div>
</div>
</div>
<div className="section">
<h2 className="feature-title fs-3 fw-bold">Core Features</h2>
<ul className="feature-text">
Expand Down

0 comments on commit 9072ebb

Please sign in to comment.