Instructions to use MoyAI/password-security with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use MoyAI/password-security with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://MoyAI/password-security") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -8,8 +8,8 @@ tags:
|
|
| 8 |
|
| 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
|
| 12 |
-
This model has a [
|
| 13 |
## Model & Training
|
| 14 |
The model was trained on 4,2MiB (`200 000` lines) 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 969` dense layer parameters.
|
|
|
|
| 8 |
|
| 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 am aware of it being unsecure).
|
| 12 |
+
This model has a [huggingface space](https://huggingface.co/spaces/MoyAI/password-security). You can visit the link to try using the model online.
|
| 13 |
## Model & Training
|
| 14 |
The model was trained on 4,2MiB (`200 000` lines) 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 969` dense layer parameters.
|