-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
baptiste.bernard
committed
Feb 3, 2025
1 parent
191210a
commit 38abd36
Showing
22 changed files
with
395 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="shortcut icon" href="{{ "/assets/img/favicon.ico" | relative_url }}" type="image/x-icon"> | ||
<link rel="stylesheet" type="text/css" href="{{ "/assets/css/style.css" | relative_url }}"> | ||
<script src="https://code.highcharts.com/highcharts.js"></script> | ||
<link rel="preload" as="font" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i" crossorigin> | ||
{% seo %} | ||
</head> | ||
|
||
<body{% if page.id %} id="{{ page.id }}"{% endif %} class="{{ page.layout }}"> | ||
|
||
<div class="page-header pt-4 pb-5"> | ||
<div class="container-lg"> | ||
<nav class="language-switcher mt-3 text-center"> | ||
<a href="{{ site.baseurl }} /" class="text-dark"> | ||
<img src="{{ '/assets/img/fr.png' | relative_url }}" alt="French" style="width: 40px; height: auto;"> | ||
</a> | ||
</nav> | ||
|
||
|
||
<div class="text-center"> | ||
<a href="{{ "/" | relative_url}}"><img class="logo py-3" src="{{ "/assets/img/logo-gaia.png" | relative_url}}" alt="Gaia"></a> | ||
|
||
<ul> | ||
<li class="d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/en/principes/" | relative_url}}" class="text-center btn btn-outline">Principle</a></li> | ||
<li class="d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/en/sia2025/" | relative_url}}" class="text-center btn btn-outline">SIA 2025</a></li> | ||
<li class="d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/en/public_datas/" | relative_url}}" class="text-center btn btn-outline">Data</a></li> | ||
<li class="d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/en/outils/" | relative_url}}" class="text-center btn btn-outline">Tools</a></li> | ||
<li class="d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/en/sia2024/" | relative_url}}" class="text-center btn btn-outline">SIA 2024</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<div class="mini-section mt-6"> | ||
<div class="org-include" id="include-{{ include.id }}"> | ||
<span class="no-matches">No matches.</span> | ||
|
||
{% assign columns = 3 %} | ||
{% for type_hash in include.orgs %} | ||
{% assign slug = type_hash[0] | downcase | replace: ' ','-' | replace: '.','' %} | ||
<div class="org-type clearfix" id="type-{{ include.id }}-{{ slug }}"> | ||
<h3 class="alt-h3 mb-3" id="{{ include.id }}-{{ slug }}">{{ type_hash[0] }}</h3> | ||
|
||
<div class="orgs"> | ||
{% assign org_count = type_hash[1] | size %} | ||
{% for org in type_hash[1] %} | ||
{% assign column_number = forloop.index0 | modulo: columns %} | ||
{% if column_number == 0 %} | ||
<div class="org-row clearfix gutter"> | ||
{% endif %} | ||
|
||
<div class="col-sm-4 float-left org"> | ||
<div class="border d-block text-center px-2 py-4 mb-4 participant-card"> | ||
{% if org.logo %} | ||
<img class="avatar" src="{{ org.logo | relative_url }}" width="100" height="auto"/> | ||
{% endif %} | ||
<div class="org-name text-medium"><a href="{{ org.url }}" target='_blank'>{{ org.name }}</a></div> | ||
<div class="org-description">{{ org.description-en }}</div> | ||
</div> | ||
</div><!-- col-sm-4 float-left org --> | ||
|
||
{% if column_number == columns - 1 or forloop.last %} | ||
</div><!-- org-row clearfix gutter --> | ||
{% endif %} | ||
{% endfor %}<!-- loop orgs --> | ||
|
||
{% if org_count % columns != 0 and forloop.last %} | ||
</div><!-- org-row clearfix gutter --> | ||
{% endif %} | ||
</div><!-- orgs --> | ||
</div><!-- org-type --> | ||
{% endfor %} | ||
</div> <!-- org-include --> | ||
</div> <!-- mini-section --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% include en-header.html %} | ||
|
||
{{ content }} | ||
|
||
{% include footer.html %} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
title: Tools | ||
layout: en-home | ||
description: Tools | ||
permalink: /en/outils/ | ||
lang: en | ||
--- | ||
|
||
<section id="tools" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">Tools</h3> | ||
<div class="tools-grid" id="tools-grid"> | ||
{% include en-tools-table.html orgs=site.data.tools id="tools" name="tools" %} | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Principes | ||
layout: en-home | ||
description: Principes de Gaia | ||
permalink: /en/principes/ | ||
lang: en | ||
--- | ||
<section id="get-started" class="mini-section mt-6"> | ||
<div class="container-lg p-responsive"> | ||
<div class="alt-lead text-gray text-center col-md-10 mx-auto"> We provide | ||
<a href="{{"/en/public_datas/" | relative_url}}">open data</a> or <a href="{{"/en/private_datas/" | relative_url}}">private data</a> to GAIA, we ask a question, and it responds by considering the data source.</div> | ||
<br> | ||
<a href="https://huggingface.co/spaces/gaia-mistral/chatbot-g-pdf" target='_blank' title="Demo Niveau 2" class="border d-block text-center px-2 py-4 mb-4"> | ||
<img src="/assets/img/principes/level2_fr.png" width="800"/> | ||
</a> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Private Agricultural Data | ||
layout: en-home | ||
description: Private Agricultural Data | ||
permalink: /en/private_datas/ | ||
lang: en | ||
--- | ||
<section class="container-lg p-responsive py-5 py-md-6 my-lg-6"> | ||
<h2 class="alt-h2 text-center mb-3 mt-lg-6">The La Vauzelle Farm Dataset</h2> | ||
<div class="clearfix gutter-spacious"> | ||
By nature, private data is not public. However, to develop this project, we rely on open data from a mixed crop-livestock dairy farm. | ||
</div> | ||
<br> | ||
<div class="clearfix gutter-spacious"> | ||
La Vauzelle Farm, located in Charente-Maritime (17), cultivates 115 hectares of mixed crops and has 60 Normande dairy cows. | ||
</div> | ||
<img src="/assets/img/la_vauzelle.png" width="800" display="block" margin-left="auto" margin-right="auto"/> | ||
<p class="text-center"> | ||
<a href="https://github.com/ekylibre/first_run-demo/tree/master/demo" target='_blank' class="btn btn-github btn-outline">Raw Data</a> | ||
<a href="https://demo-innovation.ekylibre.io/" target='_blank' class="btn btn-outline">Data via Ekylibre</a> | ||
<a href="https://ekylibre.stoplight.io/docs/eky/751aacde8cec8-ekylibre" target='_blank' class="btn btn-outline">Data via Ekylibre API</a> | ||
</p> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Public Agricultural Data | ||
layout: en-home | ||
description: Public Agricultural Data | ||
permalink: /en/public_datas/ | ||
lang: en | ||
--- | ||
<section class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 "> | ||
{% include project-table.html orgs=site.data.public_datas id="public_datas" name="Open Data" %} | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
--- | ||
title: Recap of the World Premiere at SIA 2024 | ||
layout: en-home | ||
description: Recap of the World Premiere at SIA 2024 | ||
permalink: /en/sia2024/ | ||
lang: en | ||
--- | ||
|
||
<section id="topics" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">Topics</h3> | ||
<p>For more videos, visit our dedicated page: <a href="https://videos.gaia-ia.org/" target="_blank">GAIA Videos</a></p> | ||
<div class="video-grid"> | ||
<div class="video-thumbnail" data-video-id="yd9agyhuDp4"> | ||
<a href="https://www.youtube.com/watch?v=yd9agyhuDp4" target="_blank"> | ||
<img src="https://img.youtube.com/vi/yd9agyhuDp4/0.jpg" alt="Video thumbnail 1"> | ||
</a> | ||
<div class="play-button"></div> | ||
</div> | ||
<div class="video-thumbnail" data-video-id="LHFijUmdHnQ"> | ||
<a href="https://www.youtube.com/watch?v=LHFijUmdHnQ" target="_blank"> | ||
<img src="https://img.youtube.com/vi/LHFijUmdHnQ/0.jpg" alt="Video thumbnail 2"> | ||
</a> | ||
<div class="play-button"></div> | ||
</div> | ||
<div class="video-thumbnail" data-video-id="43nrjAhT1oo"> | ||
<a href="https://www.youtube.com/watch?v=43nrjAhT1oo" target="_blank"> | ||
<img src="https://img.youtube.com/vi/43nrjAhT1oo/0.jpg" alt="Video thumbnail 3"> | ||
</a> | ||
<div class="play-button"></div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="tools" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-6">Prototypes</h3> | ||
<div class="tools-grid" id="tools-grid"> | ||
<a href="https://gaia-mistral-chatbot-g-pdf.hf.space/" target='_blank' title="Demo Gaia RAG PDF"> | ||
<img class="avatar" src="/assets/img/tools/gaia_1.png" width="400"/> | ||
</a> | ||
<a href="https://gaia-mistral-pest-livestock-information.hf.space/" target='_blank' title="Demo Gaia livestock"> | ||
<img class="avatar" src="/assets/img/tools/gaia_2.png" width="400"/> | ||
</a> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="participants" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">Participants and Contributors</h3> | ||
<div class="participants-grid" id="participants-grid"> | ||
{% include participants-table.html orgs=site.data.participants id="participants" name="Participants" %} | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="sia2024" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">Recap of the World Premiere at SIA 2024</h3> | ||
<div class="media-grid"> | ||
<a href="https://www.bfmtv.com/tech/au-salon-de-l-agriculture-le-premier-hackathon-du-monde-dedie-a-l-agriculture_VN-202403020088.html" target='_blank' title="Report BFM"> | ||
<img class="avatar" src="/assets/img/bfm_tc.jpeg" width="100"/> | ||
</a> | ||
<a href="https://www.ouest-france.fr/economie/agriculture/salon/salon-de-lagriculture-lintelligence-artificielle-promise-a-un-bel-avenir-dans-les-fermes-7eae41de-d579-11ee-96ef-9660257def44" target='_blank' title="Article"> | ||
<img class="avatar" src="/assets/img/ouest_france.png" width="100"/> | ||
</a> | ||
<a href="https://www.reussir.fr/des-chat-gpt-pourlagriculture" target='_blank' title="Article"> | ||
<img class="avatar" src="/assets/img/reussir.png" width="100"/> | ||
</a> | ||
<a href="https://www.terre-net.fr/numerique/article/863818/au-sia2024-l-intelligence-artificielle-prend-une-place-d-honneur" target='_blank' title="Article"> | ||
<img class="avatar" src="/assets/img/terre-net.png" width="100"/> | ||
</a> | ||
<a href="https://parolesdelus.com/actualites/smart-territoires/applications-et-usages/sia-2024-retour-sur-la-hackathon-gaiai-de-la-ferme-digitale-et-de-mistral-ia-avec-david-joulin/" target='_blank' title="Article"> | ||
<img class="avatar" src="/assets/img/paroledelus.svg" width="100"/> | ||
</a> | ||
<a href="https://www.lafranceagricole.fr/salon-de-l-agriculture/article/860803/le-sia-pro-propose-un-hackathon-sur-l-intelligence-artificielle" target='_blank' title="Article"> | ||
<img class="avatar" src="/assets/img/france-agricole.png" height="100"/> | ||
</a> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<script src="/assets/js/sia2024-video.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
title: Sia2025 | ||
layout: en-home | ||
description: Sia2025 | ||
permalink: /en/sia2025/ | ||
lang: en | ||
--- | ||
|
||
<section id="coach" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">The Coaches</h3> | ||
{% include coach-table.html orgs=site.data.coachs id="coachs" name="Coaches" %} | ||
</div> | ||
</section> | ||
|
||
<section id="sujets" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">Topics</h3> | ||
<div class="sujets-content"> | ||
<!-- Content for Topics --> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="mallette-developpement" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">Development Kit</h3> | ||
<div class="mallette-developpement-content"> | ||
<!-- Content for Development Kit --> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="outils" class="bg-gray-light"> | ||
<div class="container-lg p-responsive py-5 py-md-6 text-center"> | ||
<h3 class="alt-h2 mb-4">Partners and Tools</h3> | ||
<div class="outils-grid" id="outils-grid"> | ||
{% include liste-table.html orgs=site.data.liste id="liste" name="list" %} | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.