Conversation
added 3 commits
June 26, 2025 20:58
Mise à jours du code et ajout de l'analyse des résultats numériques
Mise à jour du rapport et retrait du pdf
Mise à jour du rapport et ajout de commentaires pours les résultats.
|
Status: |
dpo
reviewed
Aug 17, 2025
| @@ -0,0 +1 @@ | |||
| *.pdf No newline at end of file | |||
| @@ -0,0 +1,3 @@ | |||
| [deps] | |||
| Images = "916415d5-f1e6-5110-898d-aaa5f9f070e0" | |||
| MLDatasets = "eb30cadb-4394-5ae3-aed4-317e484a6458" | |||
Contributor
There was a problem hiding this comment.
Ça n'a rien à voir avec ce labo ...
| Pkg.add("Printf") | ||
| Pkg.add("ADNLPModels") | ||
| Pkg.add("NLPModels") | ||
| Pkg.add("IterativeSolvers") |
Contributor
There was a problem hiding this comment.
Est-ce un module qu'on a utilisé en laboratoire ??? Si tu étais venu, tu le saurais peut-être.
| if lambda_min ≤ 0 | ||
| E = -lambda_min * I(n) + epsilon * I(n) | ||
| hess_f += E | ||
| epsilon *= 10 |
Contributor
There was a problem hiding this comment.
Ce n'est pas l'implémentation qui est demandée...
| # Modification de la hessienne | ||
| if lambda_min ≤ 0 | ||
| E = -lambda_min * I(n) + epsilon * I(n) | ||
| hess_f += E |
| end | ||
|
|
||
| # Recherche linéaire | ||
| t = linesearch(model, x, d, grad_f) |
Contributor
There was a problem hiding this comment.
Ce n'est absolument pas ça qu'on demande...
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implémentation des fonctions de Newton modifié et Newton inexacte. Validation des résultats obtenus.