This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from Daethyra/v1.5.2
V1.5.2
- Loading branch information
Showing
31 changed files
with
237 additions
and
331 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Enable version updates for npm | ||
- package-ecosystem: "npm" | ||
# Look for `package.json` and `lock` files in the `root` directory | ||
directory: "/project/modules/web-ui" # MUST BE UPDATED UPON TYPESCRIPT PROGRAMMING | ||
# Check the npm registry for updates every day (weekdays) | ||
schedule: | ||
interval: "daily" | ||
# Check for npm updates at 9am UTC | ||
time: "09:00" | ||
timezone: "America/Los_Angeles" | ||
target-branch: "master" | ||
versioning-strategy: auto | ||
|
||
# Enable version updates for Docker | ||
- package-ecosystem: "docker" | ||
# Look for a `Dockerfile` in the `root` directory | ||
directory: "/project/modules/orchestration" | ||
# Check for updates once a week | ||
schedule: | ||
interval: "daily" | ||
# Check for npm updates at 9am UTC | ||
time: "09:00" | ||
timezone: "America/Los_Angeles" | ||
target-branch: "master" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
# Enable version updates for multiple branches | ||
- package-ecosystem: "pip" | ||
directory: "project/modules/orchestration" | ||
schedule: | ||
interval: "daily" | ||
# Check for pip updates at 9am UTC | ||
time: "09:00" | ||
timezone: "America/Los_Angeles" | ||
target-branch: "master" | ||
versioning-strategy: auto | ||
|
||
- package-ecosystem: "pip" | ||
directory: "project/modules/orchestration" | ||
schedule: | ||
interval: "daily" | ||
# Check for pip updates at 9am UTC | ||
time: "09:00" | ||
timezone: "America/Los_Angeles" | ||
target-branch: "v1.5*" | ||
versioning-strategy: auto |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
These subdirectories contain contextual information for the project. | ||
- The AI may make use of everything inside 'supplementary-information/' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
TRAINING_DATA_PATH= | ||
# Create a copy of this file and name it '.env' | ||
|
||
# Model Training Configuration | ||
TRAINING_DATA_PATH=project/modules/CyberSentinel/training-data/ | ||
LEARNING_RATE=0.001 | ||
BATCH_SIZE=32 | ||
EPOCHS=10 | ||
L2_REG=0.01 | ||
|
||
# Preprocessor Configuration (Use '.' for current working directory) | ||
INPUT_FILE_PATH= | ||
PREPROCESSED_DATA_FILE_PATH=project/modules/CyberSentinel/training-data/Processed-Data/ | ||
|
||
# Temporary file paths for DataLabeler | ||
TEMP_PDF_FILE_PATH=temp_pdf_data.csv | ||
TEMP_TXT_FILE_PATH=temp_txt_data.csv | ||
|
||
# Path to save labeled data | ||
LABELED_DATA_FILE_PATH=project/modules/CyberSentinel/preprocess/ |
Empty file.
This file contains 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
Oops, something went wrong.