-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Mast Center and North San Juan Hydrophones (#197)
* Add in references for Mast Center and North San Juan Center * Update files for Mast Center and North JSC * Updated bucket version and re-deployed all 5 hydrophones * Update Readme for InferenceSystem * Update Lat/Long for SJC and Readme * deployed San Juan and Mast Center * revert dockerfile
- Loading branch information
1 parent
b08be3d
commit 2b4b285
Showing
8 changed files
with
132 additions
and
2 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
10 changes: 10 additions & 0 deletions
10
InferenceSystem/config/Production/FastAI_LiveHLS_MastCenter.yml
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,10 @@ | ||
model_type: "FastAI" | ||
model_local_threshold: 0.5 | ||
model_global_threshold: 3 | ||
model_path: "./model" | ||
model_name: "model.pkl" | ||
hls_stream_type: "LiveHLS" | ||
hls_polling_interval: 60 | ||
hls_hydrophone_id: "rpi_mast_center" | ||
upload_to_azure: True | ||
delete_local_wavs: True |
10 changes: 10 additions & 0 deletions
10
InferenceSystem/config/Production/FastAI_LiveHLS_NorthSJC.yml
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,10 @@ | ||
model_type: "FastAI" | ||
model_local_threshold: 0.5 | ||
model_global_threshold: 3 | ||
model_path: "./model" | ||
model_name: "model.pkl" | ||
hls_stream_type: "LiveHLS" | ||
hls_polling_interval: 60 | ||
hls_hydrophone_id: "rpi_north_sjc" | ||
upload_to_azure: True | ||
delete_local_wavs: True |
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 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,38 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: inference-system | ||
namespace: mast-center | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: inference-system | ||
template: | ||
metadata: | ||
labels: | ||
app: inference-system | ||
spec: | ||
containers: | ||
- name: inference-system | ||
image: orcaconservancycr.azurecr.io/live-inference-system:09-19-24.FastAI.R1-12.MastCenter.v0 | ||
resources: | ||
limits: | ||
cpu: 1 | ||
memory: 3G | ||
env: | ||
- name: AZURE_COSMOSDB_PRIMARY_KEY | ||
valueFrom: | ||
secretKeyRef: | ||
name: inference-system | ||
key: AZURE_COSMOSDB_PRIMARY_KEY | ||
- name: AZURE_STORAGE_CONNECTION_STRING | ||
valueFrom: | ||
secretKeyRef: | ||
name: inference-system | ||
key: AZURE_STORAGE_CONNECTION_STRING | ||
- name: INFERENCESYSTEM_APPINSIGHTS_CONNECTION_STRING | ||
valueFrom: | ||
secretKeyRef: | ||
name: inference-system | ||
key: INFERENCESYSTEM_APPINSIGHTS_CONNECTION_STRING |
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,38 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: inference-system | ||
namespace: north-sjc | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: inference-system | ||
template: | ||
metadata: | ||
labels: | ||
app: inference-system | ||
spec: | ||
containers: | ||
- name: inference-system | ||
image: orcaconservancycr.azurecr.io/live-inference-system:09-19-24.FastAI.R1-12.NorthSJC.v0 | ||
resources: | ||
limits: | ||
cpu: 1 | ||
memory: 3G | ||
env: | ||
- name: AZURE_COSMOSDB_PRIMARY_KEY | ||
valueFrom: | ||
secretKeyRef: | ||
name: inference-system | ||
key: AZURE_COSMOSDB_PRIMARY_KEY | ||
- name: AZURE_STORAGE_CONNECTION_STRING | ||
valueFrom: | ||
secretKeyRef: | ||
name: inference-system | ||
key: AZURE_STORAGE_CONNECTION_STRING | ||
- name: INFERENCESYSTEM_APPINSIGHTS_CONNECTION_STRING | ||
valueFrom: | ||
secretKeyRef: | ||
name: inference-system | ||
key: INFERENCESYSTEM_APPINSIGHTS_CONNECTION_STRING |
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 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