Update README.md
Browse files
README.md
CHANGED
@@ -9,11 +9,12 @@ tags:
|
|
9 |
# Password security classifier
|
10 |
This is a keras model that gives a binary response showing how secure is a password.
|
11 |
I used this password list as a dataset + random password generation using the `random` library (I know, it's not very secure but this is for a dataset).
|
|
|
12 |
## Model & Training
|
13 |
The model was trained on 4,2MiB of .csv data for 2 epochs on Adam with learning rate 0.00001, batch size 4 and mse loss.
|
14 |
The model embeds every input character with the ord() builtin python function. The model has `128 128` dense layer parameters.
|
15 |
## Evaluation
|
16 |
-
On training the model had
|
17 |
**loss** - 0.0025
|
18 |
**accuracy** - 0.9972
|
19 |
The evaluation of the model on a test dataset shows:
|
|
|
9 |
# Password security classifier
|
10 |
This is a keras model that gives a binary response showing how secure is a password.
|
11 |
I used this password list as a dataset + random password generation using the `random` library (I know, it's not very secure but this is for a dataset).
|
12 |
+
This model has a [space](https://huggingface.co/spaces/MoyAI/password-security).
|
13 |
## Model & Training
|
14 |
The model was trained on 4,2MiB of .csv data for 2 epochs on Adam with learning rate 0.00001, batch size 4 and mse loss.
|
15 |
The model embeds every input character with the ord() builtin python function. The model has `128 128` dense layer parameters.
|
16 |
## Evaluation
|
17 |
+
On training the model had:
|
18 |
**loss** - 0.0025
|
19 |
**accuracy** - 0.9972
|
20 |
The evaluation of the model on a test dataset shows:
|