Skip to content

Commit

Permalink
Chore(AI): fix problems of accuracy
Browse files Browse the repository at this point in the history
  • Loading branch information
Oumaimafisaoui committed Oct 2, 2024
1 parent 231b3f2 commit da46bf9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion subjects/ai/credit-scoring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ There are 3 expected deliverables associated with the scoring model:
- The trained machine learning model with the features engineering pipeline:

- Do not forget: **Coming up with features is difficult, time-consuming, requires expert knowledge. β€˜Applied machine learning’ is basically feature engineering.**
- The model is validated if the **AUC on the test set is higher than 50%**.
- The model is validated if the **AUC on the test set is at minimum 55%, ideally to 62% included (or in best cases higher than 62% if you can !)**.
- The labelled test data is not publicly available. However, a Kaggle competition uses the same data. The procedure to evaluate test set submission is the same as the one used for the project 1.
- Here are the [DataSets](https://assets.01-edu.org/ai-branch/project5/home-credit-default-risk.zip).

Expand Down
4 changes: 2 additions & 2 deletions subjects/ai/credit-scoring/audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ project

###### Is the model trained only the training set?

###### Is the AUC on the test set higher than 50%?
###### Is the AUC on the test set is between 55% (included) to 62%(included) or higher than 62%?

###### Does the model learning curves prove that the model is not overfitting?

Expand All @@ -59,7 +59,7 @@ project
```prompt
python predict.py
AUC on test set: 0.50
AUC on test set: 0.62
```

Expand Down
8 changes: 4 additions & 4 deletions subjects/ai/emotions-detector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,10 @@ Balance technical prowess with psychological insight: as you fine-tune your CNN

### Resources

- https://machinelearningmastery.com/what-is-computer-vision/
- [What is computer vision](https://machinelearningmastery.com/what-is-computer-vision/)

- Use a pre-trained CNN: https://arxiv.org/pdf/1812.06387.pdf
- [Use a pre-trained CNN](https://arxiv.org/pdf/1812.06387.pdf)

- Hack the CNN https://medium.com/@ageitgey/machine-learning-is-fun-part-8-how-to-intentionally-trick-neural-networks-b55da32b7196
- [Hack the CNN](https://medium.com/@ageitgey/machine-learning-is-fun-part-8-how-to-intentionally-trick-neural-networks-b55da32b7196)

- https://arxiv.org/pdf/1812.06387.pdf
- [Convolutional Neural Network](https://arxiv.org/pdf/1812.06387.pdf)
4 changes: 2 additions & 2 deletions subjects/ai/kaggle-titanic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ All people having 100% of accuracy on the Leaderboard cheated, there's no point
```console
project
β”‚ README.md
β”‚ environment.yml
β”‚ requirements.txt
β”‚ username.txt
β”‚
└───data
Expand All @@ -90,7 +90,7 @@ project

- `README.md` introduction of the project, shows the username, describes the features engineering and the best score on the **leaderboard**. Note the score on the test set using the exact same pipeline that led to the best score on the leaderboard.

- `environment.yml` contains all libraries required to run the code.
- 'requirements.txt` contains all libraries required to run the code.

- `username.txt` contains the username, the last modified date of the file **has to correspond to the first day of the project**.

Expand Down
1 change: 1 addition & 0 deletions subjects/ai/nlp-scraper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ project
β”œβ”€β”€ data
β”‚Β Β  └── ...
β”œβ”€β”€ nlp_enriched_news.py
β”œβ”€β”€ requirements.txt
β”œβ”€β”€ README.md
β”œβ”€β”€ results
β”‚Β Β  β”œβ”€β”€ training_model.py
Expand Down

0 comments on commit da46bf9

Please sign in to comment.