Skip to content

Commit 8408215

Browse files
committed
Completed features
1 parent 67e6d4a commit 8408215

File tree

7 files changed

+15
-12
lines changed

7 files changed

+15
-12
lines changed

.github/workflows/docker-push.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
# This workflow uses actions that are not certified by GitHub.
2-
# They are provided by a third-party and are governed by
3-
# separate terms of service, privacy policy, and support
4-
# documentation.
5-
6-
name: cd
1+
name: Continuous Deployment
72

83
on:
94
push:
105
branches:
116
- main
7+
- dev
128

139
jobs:
1410
push_to_registry:
@@ -32,4 +28,5 @@ jobs:
3228
with:
3329
context: .
3430
push: true
35-
tags: debiai/docs:latest
31+
# Push the image with latest tag when pushing to main, otherwise with dev tag
32+
tags: debiai/docs:${{ github.ref == 'refs/heads/main' && 'latest' || 'dev' }}

documentation/.vuepress/components/FeaturesList.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ export default {
6666
max-width: none !important;
6767
width: 100%;
6868
border-radius: 5px;
69-
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
7069
}
7170
}
7271
}
Loading
Loading
Loading
Loading

documentation/index.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,28 +55,28 @@ DebiAI provides data scientists with features to:
5555
{
5656
title: 'Bias detection',
5757
description: 'Bias in data can lead to unfair or inaccurate predictions, it is important to detect and mitigate bias in your data before training any model.\n\n With DebiAI, you can easily detect bias in your data. Our analysis page provides a wide range of tools to help you identify bias in your data.',
58-
imageLink: 'features/ans.png',
58+
imageLink: 'features/Bias.png',
5959
linkTitle: 'Bias detection widgets documentation →',
6060
linkDestination: './dashboard/widgets/#bias-detection'
6161
},
6262
{
6363
title: 'Outliers detection',
6464
description: 'Outliers can have a significant impact on the results of your model. Searching for outliers in your data is an important and time-consuming task.\n\n DebiAI provides a set of tools to help you identify outliers in your data. Our analysis page provides a wide range of tools to help you identify outliers in your data.',
65-
imageLink: 'features/ans.png',
65+
imageLink: 'features/Outliers.png',
6666
linkTitle: 'Outliers detection widgets documentation →',
6767
linkDestination: './dashboard/widgets/#outliers-detection'
6868
},
6969
{
7070
title: 'Contextual model comparison',
7171
description: 'Selecting the best model for your project can be a difficult task and is often based on the global performance of the model. Being able to compare the performance of your models according to the contexts that matter the most for your project is a key feature of DebiAI.',
72-
imageLink: 'features/ans.png',
72+
imageLink: 'features/Models.png',
7373
linkTitle: 'Model evaluation widgets documentation →',
7474
linkDestination: './dashboard/widgets/#model-evaluation'
7575
},
7676
{
7777
title: 'Data selection',
7878
description: 'Selecting specific data for your project can be challenging with the existing tools. DebiAI widgets are designed to help you select data graphically to do in depth analysis, for training purposes, for cleaning, sharing or any other purpose.',
79-
imageLink: 'features/ans.png',
79+
imageLink: 'features/Selections.png',
8080
linkTitle: 'Data selection widgets documentation →',
8181
linkDestination: './dashboard/widgets/#data-selection'
8282
},
@@ -132,6 +132,13 @@ One of them is the [Valeo - WoodScape](tutorials/woodscapeTutorial/README.md#woo
132132
<br>
133133
<br>
134134

135+
## Scientific publications
136+
137+
- ICAS 2024 [DebiAI: Open-Source Toolkit for Data Analysis, Visualization and Evaluation in Machine Learning](https://hal.science/hal-04446930).
138+
139+
<br>
140+
<br>
141+
135142
## Who is DebiAI for?
136143

137144
DebiAI is a high level data exploration tool for data scientists and machine learning experts. It is designed to be easily integrated in your project workflow.

0 commit comments

Comments
 (0)