Skip to content

Commit

Permalink
Merge pull request #1 from ramp-kits/logo
Browse files Browse the repository at this point in the history
logo Dataia
  • Loading branch information
frcaud authored Dec 15, 2024
2 parents aa55dda + 0515a97 commit 6848924
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
Binary file added img/DATAIA-h.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 5 additions & 8 deletions template_starting_kit.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"metadata": {},
"source": [
"<div style=\"text-align: center;\">\n",
" <a href=\"http://www.datascience-paris-saclay.fr\">\n",
" <img border=\"0\" src=\"http://project.inria.fr/saclaycds/files/2017/02/logoUPSayPlusCDS_990.png\" width=\"90%\"></a>\n",
" <a href=\"https://www.dataia.eu/\">\n",
" <img border=\"0\" src=\"https://github.com/ramp-kits/template-kit/raw/main/img/DATAIA-h.png\" width=\"90%\"></a>\n",
"</div>\n",
"\n",
"# Template Kit for RAMP challenge\n",
Expand Down Expand Up @@ -36,7 +36,7 @@
"The goal of this section is to show what's in the data, and how to play with it.\n",
"This is the first set in any data science project, and here, you should give a sense of the data the participants will be working with.\n",
"\n",
"You can first load and describe the data, and then show some intersting properties of it."
"You can first load and describe the data, and then show some interesting properties of it."
]
},
{
Expand Down Expand Up @@ -83,7 +83,7 @@
"source": [
"## The pipeline workflow\n",
"\n",
"The input data are stored in a dataframe. To go from a dataframe to a numpy array we will a scikit-learn column transformer. The first example we will write will just consist in selecting a subset of columns we want to work with."
"The input data are stored in a dataframe. To go from a dataframe to a numpy array we will use a scikit-learn column transformer. The first example we will write will just consist in selecting a subset of columns we want to work with."
]
},
{
Expand Down Expand Up @@ -117,7 +117,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": null,
"metadata": {},
"outputs": [
{
Expand All @@ -129,11 +129,8 @@
}
],
"source": [
"import problem\n",
"from sklearn.model_selection import cross_val_score\n",
"\n",
"X_df, y = problem.get_train_data()\n",
"\n",
"scores = cross_val_score(get_estimator(), X_df, y, cv=5, scoring='accuracy')\n",
"print(scores)"
]
Expand Down

0 comments on commit 6848924

Please sign in to comment.