Ahmad Shallouf commited on
Commit
b1839bb
·
1 Parent(s): 9186120

changed numbers to percentages

Browse files
Files changed (2) hide show
  1. CQI_Leaderboard.csv +2 -2
  2. DataProcessing.ipynb +11 -11
CQI_Leaderboard.csv CHANGED
@@ -1,3 +1,3 @@
1
  Model,Accuracy,Precision,Recall,F1 Score,Evaluation Time,Overall Score
2
- Dummy,0.5,0.5,0.5,0.5,0.5,0.5
3
- Dummy2,0.6,0.6,0.6,0.6,0.6,0.6
 
1
  Model,Accuracy,Precision,Recall,F1 Score,Evaluation Time,Overall Score
2
+ Dummy,51,59,54,52,50,50
3
+ Dummy2,52,60,55,53,51,51
DataProcessing.ipynb CHANGED
@@ -2,22 +2,22 @@
2
  "cells": [
3
  {
4
  "cell_type": "code",
5
- "execution_count": 3,
6
  "id": "initial_id",
7
  "metadata": {
8
  "collapsed": true,
9
  "ExecuteTime": {
10
- "end_time": "2024-03-24T11:48:41.895997Z",
11
- "start_time": "2024-03-24T11:48:41.863555Z"
12
  }
13
  },
14
  "outputs": [
15
  {
16
  "data": {
17
- "text/plain": " Model Accuracy Precision Recall F1 Score Evaluation Time \\\n0 Dummy 0.5 0.5 0.5 0.5 0.5 \n0 Dummy2 0.6 0.6 0.6 0.6 0.6 \n\n Overall Score \n0 0.5 \n0 0.6 ",
18
- "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>Model</th>\n <th>Accuracy</th>\n <th>Precision</th>\n <th>Recall</th>\n <th>F1 Score</th>\n <th>Evaluation Time</th>\n <th>Overall Score</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>Dummy</td>\n <td>0.5</td>\n <td>0.5</td>\n <td>0.5</td>\n <td>0.5</td>\n <td>0.5</td>\n <td>0.5</td>\n </tr>\n <tr>\n <th>0</th>\n <td>Dummy2</td>\n <td>0.6</td>\n <td>0.6</td>\n <td>0.6</td>\n <td>0.6</td>\n <td>0.6</td>\n <td>0.6</td>\n </tr>\n </tbody>\n</table>\n</div>"
19
  },
20
- "execution_count": 3,
21
  "metadata": {},
22
  "output_type": "execute_result"
23
  }
@@ -31,10 +31,10 @@
31
  "model_results = pd.DataFrame(columns=['Model', 'Accuracy', 'Precision', 'Recall', 'F1 Score', 'Evaluation Time', 'Overall Score'])\n",
32
  "\n",
33
  "# Add dummy data using concat\n",
34
- "model_results = pd.concat([model_results, pd.DataFrame([['Dummy', 0.5, 0.5, 0.5, 0.5, 0.5, 0.5]], columns=['Model', 'Accuracy', 'Precision', 'Recall', 'F1 Score', 'Evaluation Time', 'Overall Score'])])\n",
35
  "\n",
36
  "# add more dummy data\n",
37
- "model_results = pd.concat([model_results, pd.DataFrame([['Dummy2', 0.6, 0.6, 0.6, 0.6, 0.6, 0.6]], columns=['Model', 'Accuracy', 'Precision', 'Recall', 'F1 Score', 'Evaluation Time', 'Overall Score'])])\n",
38
  "\n",
39
  "model_results"
40
  ]
@@ -49,12 +49,12 @@
49
  "metadata": {
50
  "collapsed": false,
51
  "ExecuteTime": {
52
- "end_time": "2024-03-24T11:49:23.687615Z",
53
- "start_time": "2024-03-24T11:49:23.602354Z"
54
  }
55
  },
56
  "id": "d6d288e1af91dd1d",
57
- "execution_count": 4
58
  },
59
  {
60
  "cell_type": "code",
 
2
  "cells": [
3
  {
4
  "cell_type": "code",
5
+ "execution_count": 5,
6
  "id": "initial_id",
7
  "metadata": {
8
  "collapsed": true,
9
  "ExecuteTime": {
10
+ "end_time": "2024-03-24T13:27:06.474663Z",
11
+ "start_time": "2024-03-24T13:27:06.433992Z"
12
  }
13
  },
14
  "outputs": [
15
  {
16
  "data": {
17
+ "text/plain": " Model Accuracy Precision Recall F1 Score Evaluation Time Overall Score\n0 Dummy 51 59 54 52 50 50\n0 Dummy2 52 60 55 53 51 51",
18
+ "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>Model</th>\n <th>Accuracy</th>\n <th>Precision</th>\n <th>Recall</th>\n <th>F1 Score</th>\n <th>Evaluation Time</th>\n <th>Overall Score</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>Dummy</td>\n <td>51</td>\n <td>59</td>\n <td>54</td>\n <td>52</td>\n <td>50</td>\n <td>50</td>\n </tr>\n <tr>\n <th>0</th>\n <td>Dummy2</td>\n <td>52</td>\n <td>60</td>\n <td>55</td>\n <td>53</td>\n <td>51</td>\n <td>51</td>\n </tr>\n </tbody>\n</table>\n</div>"
19
  },
20
+ "execution_count": 5,
21
  "metadata": {},
22
  "output_type": "execute_result"
23
  }
 
31
  "model_results = pd.DataFrame(columns=['Model', 'Accuracy', 'Precision', 'Recall', 'F1 Score', 'Evaluation Time', 'Overall Score'])\n",
32
  "\n",
33
  "# Add dummy data using concat\n",
34
+ "model_results = pd.concat([model_results, pd.DataFrame([['Dummy', 51, 59, 54, 52, 50, 50]], columns=['Model', 'Accuracy', 'Precision', 'Recall', 'F1 Score', 'Evaluation Time', 'Overall Score'])])\n",
35
  "\n",
36
  "# add more dummy data\n",
37
+ "model_results = pd.concat([model_results, pd.DataFrame([['Dummy2', 52, 60, 55, 53, 51, 51]], columns=['Model', 'Accuracy', 'Precision', 'Recall', 'F1 Score', 'Evaluation Time', 'Overall Score'])])\n",
38
  "\n",
39
  "model_results"
40
  ]
 
49
  "metadata": {
50
  "collapsed": false,
51
  "ExecuteTime": {
52
+ "end_time": "2024-03-24T13:27:07.540305Z",
53
+ "start_time": "2024-03-24T13:27:07.535417Z"
54
  }
55
  },
56
  "id": "d6d288e1af91dd1d",
57
+ "execution_count": 6
58
  },
59
  {
60
  "cell_type": "code",