You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/label-commenter-config.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -115,9 +115,9 @@
115
115
labeled:
116
116
issue:
117
117
body: |
118
-
See [Digital Digits](https://jomjol.github.io/neural-network-digital-counter-readout) resp. [Analogue Pointers](https://jomjol.github.io/neural-network-analog-needle-readout) for an overview of all trained data.
118
+
See [Digits](https://jomjol.github.io/neural-network-digital-counter-readout) resp. [Analogue Pointers](https://jomjol.github.io/neural-network-analog-needle-readout) for an overview of all trained data.
119
119
If your type is not contained it can be added to our training material, see [here](https://jomjol.github.io/AI-on-the-edge-device-docs/collect-new-images/).
120
120
discussion:
121
121
body: |
122
-
See [Digital Digits](https://jomjol.github.io/neural-network-digital-counter-readout) resp. [Analogue Pointers](https://jomjol.github.io/neural-network-analog-needle-readout) for an overview of all trained data.
122
+
See [Digits](https://jomjol.github.io/neural-network-digital-counter-readout) resp. [Analogue Pointers](https://jomjol.github.io/neural-network-analog-needle-readout) for an overview of all trained data.
123
123
If your type is not contained it can be added to our training material, see [here](https://jomjol.github.io/AI-on-the-edge-device-docs/collect-new-images/).
Copy file name to clipboardExpand all lines: .github/workflows/build.yaml
+25-10Lines changed: 25 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ jobs:
53
53
./code/.pio/build/esp32cam/partitions.bin
54
54
./code/.pio/build/esp32cam/bootloader.bin
55
55
./html/*
56
+
./demo/*
56
57
key: generated-files-${{ github.run_id }}
57
58
restore-keys: generated-files # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
58
59
@@ -87,6 +88,11 @@ jobs:
87
88
echo "Replacing variables..."
88
89
cd html; find . -type f -exec sed -i 's/$COMMIT_HASH/${{ steps.vars.outputs.sha_short }}/g' {} \;
restore-keys: generated-files # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
116
124
@@ -135,6 +143,9 @@ jobs:
135
143
136
144
- name: Add Web UI to update
137
145
run: cp -r ./html ./update/
146
+
147
+
- name: Add Demo mode files to update
148
+
run: cp -r ./demo ./update/
138
149
139
150
- name: Add CNN to update
140
151
run: |
@@ -158,6 +169,7 @@ jobs:
158
169
# remote_setup__version.zip file with following content:
159
170
# - /firmware.bin
160
171
# - /html/* (inkl. subfolders)
172
+
# - /demo/*
161
173
# - /config/*
162
174
runs-on: ubuntu-latest
163
175
needs: build
@@ -173,6 +185,7 @@ jobs:
173
185
./code/.pio/build/esp32cam/partitions.bin
174
186
./code/.pio/build/esp32cam/bootloader.bin
175
187
./html/*
188
+
./demo/*
176
189
key: generated-files-${{ github.run_id }}
177
190
restore-keys: generated-files # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
178
191
@@ -197,6 +210,9 @@ jobs:
197
210
- name: Add Web UI to remote_setup
198
211
run: cp -r ./html ./remote_setup/
199
212
213
+
- name: Add Demo mode files to update
214
+
run: cp -r ./demo ./update/
215
+
200
216
- name: Add whole config folder to remote_setup
201
217
run: |
202
218
rm -rf ./remote_setup/config/
@@ -229,6 +245,7 @@ jobs:
229
245
./code/.pio/build/esp32cam/partitions.bin
230
246
./code/.pio/build/esp32cam/bootloader.bin
231
247
./html/*
248
+
./demo/*
232
249
key: generated-files-${{ github.run_id }}
233
250
restore-keys: generated-files # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
0 commit comments