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
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: keras
|
| 3 |
+
pipeline_tag: text-classification
|
| 4 |
+
tags:
|
| 5 |
+
- security
|
| 6 |
+
- password
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
This is a keras model that gives a binary response showing how secure is a password. The `start.py` file has a `clf` function that inputs a string of a password and responds with a 0-1 float value.
|