Text Classification
Keras
English
sql-injection
malicious-sql
sql-injection-detection
malicious-sql-detection
deathsaber93 commited on
Commit
9cb5aac
1 Parent(s): 7d9be0d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -83,7 +83,7 @@ available [here](dataset/benchmark.csv). The data was curated from the following
83
  1. Based on your hardware (whether using GPU or not), please download the corresponding `requiremnts-[cpu/gpu].txt` file and install it (`pip install -r requirements.txt`)
84
  2. Download the model file `sqid.keras`.
85
  3. The model expects certain numerical features along with the SQL query. As of v1, some boiler-plate code needs to be written in order to add the numeric features. Please use the below code snippet to load the model, add the expected numeric features and run an inference.
86
- Future iterations of the model will have the feature addition baked into the model itself.
87
 
88
 
89
  ```Python
 
83
  1. Based on your hardware (whether using GPU or not), please download the corresponding `requiremnts-[cpu/gpu].txt` file and install it (`pip install -r requirements.txt`)
84
  2. Download the model file `sqid.keras`.
85
  3. The model expects certain numerical features along with the SQL query. As of v1, some boiler-plate code needs to be written in order to add the numeric features. Please use the below code snippet to load the model, add the expected numeric features and run an inference.
86
+ Future iterations of the model will have the numeric features baked into the network's layers.
87
 
88
 
89
  ```Python