Merge branch 'feat/convert-keras-model-to-tensorjs-model' into 'master'
feat: Convert keras model to tensorjs model See merge request !1
Showing
10 changed files
with
132 additions
and
176 deletions
... | @@ -8,9 +8,9 @@ | ... | @@ -8,9 +8,9 @@ |
8 | * @format | 8 | * @format |
9 | */ | 9 | */ |
10 | 10 | ||
11 | -import {NativeBaseProvider} from 'native-base'; | 11 | +import {NativeBaseProvider, Text} from 'native-base'; |
12 | import React, {useLayoutEffect} from 'react'; | 12 | import React, {useLayoutEffect} from 'react'; |
13 | -import {SafeAreaView} from 'react-native'; | 13 | +import {StyleSheet} from 'react-native'; |
14 | import {Camera, useCameraDevices} from 'react-native-vision-camera'; | 14 | import {Camera, useCameraDevices} from 'react-native-vision-camera'; |
15 | 15 | ||
16 | const App = () => { | 16 | const App = () => { |
... | @@ -37,9 +37,11 @@ const App = () => { | ... | @@ -37,9 +37,11 @@ const App = () => { |
37 | 37 | ||
38 | return ( | 38 | return ( |
39 | <NativeBaseProvider> | 39 | <NativeBaseProvider> |
40 | - <SafeAreaView> | 40 | + {device ? ( |
41 | - {device && <Camera isActive device={device} />} | 41 | + <Camera isActive device={device} style={StyleSheet.absoluteFill} /> |
42 | - </SafeAreaView> | 42 | + ) : ( |
43 | + <Text>Loading camera..</Text> | ||
44 | + )} | ||
43 | </NativeBaseProvider> | 45 | </NativeBaseProvider> |
44 | ); | 46 | ); |
45 | }; | 47 | }; | ... | ... |
... | @@ -8,11 +8,11 @@ | ... | @@ -8,11 +8,11 @@ |
8 | 8 | ||
9 | /* Begin PBXBuildFile section */ | 9 | /* Begin PBXBuildFile section */ |
10 | 00E356F31AD99517003FC87E /* DetectAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* DetectAppTests.m */; }; | 10 | 00E356F31AD99517003FC87E /* DetectAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* DetectAppTests.m */; }; |
11 | - 0C80B921A6F3F58F76C31292 /* libPods-DetectApp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-DetectApp.a */; }; | ||
12 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; | 11 | 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; }; |
13 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; | 12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; |
14 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; | 13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; |
15 | - 7699B88040F8A987B510C191 /* libPods-DetectApp-DetectAppTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-DetectApp-DetectAppTests.a */; }; | 14 | + 1A579EEFC41FBDF1080C11AF /* libPods-DetectApp-DetectAppTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A2107E732BB33504FF9A8178 /* libPods-DetectApp-DetectAppTests.a */; }; |
15 | + 7D1AEADF53D93879EB2FD81A /* libPods-DetectApp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C2705E25A2A1B1C832681BB /* libPods-DetectApp.a */; }; | ||
16 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; | 16 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; |
17 | /* End PBXBuildFile section */ | 17 | /* End PBXBuildFile section */ |
18 | 18 | ||
... | @@ -36,13 +36,13 @@ | ... | @@ -36,13 +36,13 @@ |
36 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DetectApp/Images.xcassets; sourceTree = "<group>"; }; | 36 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DetectApp/Images.xcassets; sourceTree = "<group>"; }; |
37 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = DetectApp/Info.plist; sourceTree = "<group>"; }; | 37 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = DetectApp/Info.plist; sourceTree = "<group>"; }; |
38 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = DetectApp/main.m; sourceTree = "<group>"; }; | 38 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = DetectApp/main.m; sourceTree = "<group>"; }; |
39 | - 19F6CBCC0A4E27FBF8BF4A61 /* libPods-DetectApp-DetectAppTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DetectApp-DetectAppTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; | 39 | + 6BB98A846E9259C91066018E /* Pods-DetectApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp.release.xcconfig"; path = "Target Support Files/Pods-DetectApp/Pods-DetectApp.release.xcconfig"; sourceTree = "<group>"; }; |
40 | - 3B4392A12AC88292D35C810B /* Pods-DetectApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp.debug.xcconfig"; path = "Target Support Files/Pods-DetectApp/Pods-DetectApp.debug.xcconfig"; sourceTree = "<group>"; }; | 40 | + 6C2705E25A2A1B1C832681BB /* libPods-DetectApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DetectApp.a"; sourceTree = BUILT_PRODUCTS_DIR; }; |
41 | - 5709B34CF0A7D63546082F79 /* Pods-DetectApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp.release.xcconfig"; path = "Target Support Files/Pods-DetectApp/Pods-DetectApp.release.xcconfig"; sourceTree = "<group>"; }; | 41 | + 792F606D27AAD2AE6AC15AE7 /* Pods-DetectApp-DetectAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp-DetectAppTests.release.xcconfig"; path = "Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests.release.xcconfig"; sourceTree = "<group>"; }; |
42 | - 5B7EB9410499542E8C5724F5 /* Pods-DetectApp-DetectAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp-DetectAppTests.debug.xcconfig"; path = "Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests.debug.xcconfig"; sourceTree = "<group>"; }; | ||
43 | - 5DCACB8F33CDC322A6C60F78 /* libPods-DetectApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DetectApp.a"; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
44 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = DetectApp/LaunchScreen.storyboard; sourceTree = "<group>"; }; | 42 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = DetectApp/LaunchScreen.storyboard; sourceTree = "<group>"; }; |
45 | - 89C6BE57DB24E9ADA2F236DE /* Pods-DetectApp-DetectAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp-DetectAppTests.release.xcconfig"; path = "Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests.release.xcconfig"; sourceTree = "<group>"; }; | 43 | + A2107E732BB33504FF9A8178 /* libPods-DetectApp-DetectAppTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DetectApp-DetectAppTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; |
44 | + DB56DC7F86770E6819051298 /* Pods-DetectApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp.debug.xcconfig"; path = "Target Support Files/Pods-DetectApp/Pods-DetectApp.debug.xcconfig"; sourceTree = "<group>"; }; | ||
45 | + DB66464ADC48CCA573625B2E /* Pods-DetectApp-DetectAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DetectApp-DetectAppTests.debug.xcconfig"; path = "Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests.debug.xcconfig"; sourceTree = "<group>"; }; | ||
46 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; | 46 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; |
47 | /* End PBXFileReference section */ | 47 | /* End PBXFileReference section */ |
48 | 48 | ||
... | @@ -51,7 +51,7 @@ | ... | @@ -51,7 +51,7 @@ |
51 | isa = PBXFrameworksBuildPhase; | 51 | isa = PBXFrameworksBuildPhase; |
52 | buildActionMask = 2147483647; | 52 | buildActionMask = 2147483647; |
53 | files = ( | 53 | files = ( |
54 | - 7699B88040F8A987B510C191 /* libPods-DetectApp-DetectAppTests.a in Frameworks */, | 54 | + 1A579EEFC41FBDF1080C11AF /* libPods-DetectApp-DetectAppTests.a in Frameworks */, |
55 | ); | 55 | ); |
56 | runOnlyForDeploymentPostprocessing = 0; | 56 | runOnlyForDeploymentPostprocessing = 0; |
57 | }; | 57 | }; |
... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
59 | isa = PBXFrameworksBuildPhase; | 59 | isa = PBXFrameworksBuildPhase; |
60 | buildActionMask = 2147483647; | 60 | buildActionMask = 2147483647; |
61 | files = ( | 61 | files = ( |
62 | - 0C80B921A6F3F58F76C31292 /* libPods-DetectApp.a in Frameworks */, | 62 | + 7D1AEADF53D93879EB2FD81A /* libPods-DetectApp.a in Frameworks */, |
63 | ); | 63 | ); |
64 | runOnlyForDeploymentPostprocessing = 0; | 64 | runOnlyForDeploymentPostprocessing = 0; |
65 | }; | 65 | }; |
... | @@ -100,8 +100,8 @@ | ... | @@ -100,8 +100,8 @@ |
100 | isa = PBXGroup; | 100 | isa = PBXGroup; |
101 | children = ( | 101 | children = ( |
102 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, | 102 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, |
103 | - 5DCACB8F33CDC322A6C60F78 /* libPods-DetectApp.a */, | 103 | + 6C2705E25A2A1B1C832681BB /* libPods-DetectApp.a */, |
104 | - 19F6CBCC0A4E27FBF8BF4A61 /* libPods-DetectApp-DetectAppTests.a */, | 104 | + A2107E732BB33504FF9A8178 /* libPods-DetectApp-DetectAppTests.a */, |
105 | ); | 105 | ); |
106 | name = Frameworks; | 106 | name = Frameworks; |
107 | sourceTree = "<group>"; | 107 | sourceTree = "<group>"; |
... | @@ -140,10 +140,10 @@ | ... | @@ -140,10 +140,10 @@ |
140 | BBD78D7AC51CEA395F1C20DB /* Pods */ = { | 140 | BBD78D7AC51CEA395F1C20DB /* Pods */ = { |
141 | isa = PBXGroup; | 141 | isa = PBXGroup; |
142 | children = ( | 142 | children = ( |
143 | - 3B4392A12AC88292D35C810B /* Pods-DetectApp.debug.xcconfig */, | 143 | + DB56DC7F86770E6819051298 /* Pods-DetectApp.debug.xcconfig */, |
144 | - 5709B34CF0A7D63546082F79 /* Pods-DetectApp.release.xcconfig */, | 144 | + 6BB98A846E9259C91066018E /* Pods-DetectApp.release.xcconfig */, |
145 | - 5B7EB9410499542E8C5724F5 /* Pods-DetectApp-DetectAppTests.debug.xcconfig */, | 145 | + DB66464ADC48CCA573625B2E /* Pods-DetectApp-DetectAppTests.debug.xcconfig */, |
146 | - 89C6BE57DB24E9ADA2F236DE /* Pods-DetectApp-DetectAppTests.release.xcconfig */, | 146 | + 792F606D27AAD2AE6AC15AE7 /* Pods-DetectApp-DetectAppTests.release.xcconfig */, |
147 | ); | 147 | ); |
148 | path = Pods; | 148 | path = Pods; |
149 | sourceTree = "<group>"; | 149 | sourceTree = "<group>"; |
... | @@ -155,12 +155,12 @@ | ... | @@ -155,12 +155,12 @@ |
155 | isa = PBXNativeTarget; | 155 | isa = PBXNativeTarget; |
156 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "DetectAppTests" */; | 156 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "DetectAppTests" */; |
157 | buildPhases = ( | 157 | buildPhases = ( |
158 | - A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */, | 158 | + BD3C81B9EAFC412F041924FD /* [CP] Check Pods Manifest.lock */, |
159 | 00E356EA1AD99517003FC87E /* Sources */, | 159 | 00E356EA1AD99517003FC87E /* Sources */, |
160 | 00E356EB1AD99517003FC87E /* Frameworks */, | 160 | 00E356EB1AD99517003FC87E /* Frameworks */, |
161 | 00E356EC1AD99517003FC87E /* Resources */, | 161 | 00E356EC1AD99517003FC87E /* Resources */, |
162 | - C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */, | 162 | + 6AC9C48B0B76F76CF4851AE8 /* [CP] Embed Pods Frameworks */, |
163 | - F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */, | 163 | + 503D09C65E5DD49E6E9481D2 /* [CP] Copy Pods Resources */, |
164 | ); | 164 | ); |
165 | buildRules = ( | 165 | buildRules = ( |
166 | ); | 166 | ); |
... | @@ -176,14 +176,14 @@ | ... | @@ -176,14 +176,14 @@ |
176 | isa = PBXNativeTarget; | 176 | isa = PBXNativeTarget; |
177 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DetectApp" */; | 177 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DetectApp" */; |
178 | buildPhases = ( | 178 | buildPhases = ( |
179 | - C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */, | 179 | + 31055D39BE0ADA61DDD7A2B4 /* [CP] Check Pods Manifest.lock */, |
180 | FD10A7F022414F080027D42C /* Start Packager */, | 180 | FD10A7F022414F080027D42C /* Start Packager */, |
181 | 13B07F871A680F5B00A75B9A /* Sources */, | 181 | 13B07F871A680F5B00A75B9A /* Sources */, |
182 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, | 182 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, |
183 | 13B07F8E1A680F5B00A75B9A /* Resources */, | 183 | 13B07F8E1A680F5B00A75B9A /* Resources */, |
184 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, | 184 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, |
185 | - 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */, | 185 | + 9011D6D9487FF0EDADCEDD29 /* [CP] Embed Pods Frameworks */, |
186 | - E235C05ADACE081382539298 /* [CP] Copy Pods Resources */, | 186 | + 97EFBFE94AD33A857840271D /* [CP] Copy Pods Resources */, |
187 | ); | 187 | ); |
188 | buildRules = ( | 188 | buildRules = ( |
189 | ); | 189 | ); |
... | @@ -200,7 +200,7 @@ | ... | @@ -200,7 +200,7 @@ |
200 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { | 200 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { |
201 | isa = PBXProject; | 201 | isa = PBXProject; |
202 | attributes = { | 202 | attributes = { |
203 | - LastUpgradeCheck = 1210; | 203 | + LastUpgradeCheck = 1340; |
204 | TargetAttributes = { | 204 | TargetAttributes = { |
205 | 00E356ED1AD99517003FC87E = { | 205 | 00E356ED1AD99517003FC87E = { |
206 | CreatedOnToolsVersion = 6.2; | 206 | CreatedOnToolsVersion = 6.2; |
... | @@ -264,85 +264,80 @@ | ... | @@ -264,85 +264,80 @@ |
264 | shellPath = /bin/sh; | 264 | shellPath = /bin/sh; |
265 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; | 265 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; |
266 | }; | 266 | }; |
267 | - 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = { | 267 | + 31055D39BE0ADA61DDD7A2B4 /* [CP] Check Pods Manifest.lock */ = { |
268 | isa = PBXShellScriptBuildPhase; | 268 | isa = PBXShellScriptBuildPhase; |
269 | buildActionMask = 2147483647; | 269 | buildActionMask = 2147483647; |
270 | files = ( | 270 | files = ( |
271 | ); | 271 | ); |
272 | inputFileListPaths = ( | 272 | inputFileListPaths = ( |
273 | - "${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-frameworks-${CONFIGURATION}-input-files.xcfilelist", | ||
274 | ); | 273 | ); |
275 | - name = "[CP] Embed Pods Frameworks"; | 274 | + inputPaths = ( |
275 | + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||
276 | + "${PODS_ROOT}/Manifest.lock", | ||
277 | + ); | ||
278 | + name = "[CP] Check Pods Manifest.lock"; | ||
276 | outputFileListPaths = ( | 279 | outputFileListPaths = ( |
277 | - "${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-frameworks-${CONFIGURATION}-output-files.xcfilelist", | 280 | + ); |
281 | + outputPaths = ( | ||
282 | + "$(DERIVED_FILE_DIR)/Pods-DetectApp-checkManifestLockResult.txt", | ||
278 | ); | 283 | ); |
279 | runOnlyForDeploymentPostprocessing = 0; | 284 | runOnlyForDeploymentPostprocessing = 0; |
280 | shellPath = /bin/sh; | 285 | shellPath = /bin/sh; |
281 | - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-frameworks.sh\"\n"; | 286 | + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; |
282 | showEnvVarsInLog = 0; | 287 | showEnvVarsInLog = 0; |
283 | }; | 288 | }; |
284 | - A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = { | 289 | + 503D09C65E5DD49E6E9481D2 /* [CP] Copy Pods Resources */ = { |
285 | isa = PBXShellScriptBuildPhase; | 290 | isa = PBXShellScriptBuildPhase; |
286 | buildActionMask = 2147483647; | 291 | buildActionMask = 2147483647; |
287 | files = ( | 292 | files = ( |
288 | ); | 293 | ); |
289 | inputFileListPaths = ( | 294 | inputFileListPaths = ( |
295 | + "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-resources-${CONFIGURATION}-input-files.xcfilelist", | ||
290 | ); | 296 | ); |
291 | - inputPaths = ( | 297 | + name = "[CP] Copy Pods Resources"; |
292 | - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||
293 | - "${PODS_ROOT}/Manifest.lock", | ||
294 | - ); | ||
295 | - name = "[CP] Check Pods Manifest.lock"; | ||
296 | outputFileListPaths = ( | 298 | outputFileListPaths = ( |
297 | - ); | 299 | + "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-resources-${CONFIGURATION}-output-files.xcfilelist", |
298 | - outputPaths = ( | ||
299 | - "$(DERIVED_FILE_DIR)/Pods-DetectApp-DetectAppTests-checkManifestLockResult.txt", | ||
300 | ); | 300 | ); |
301 | runOnlyForDeploymentPostprocessing = 0; | 301 | runOnlyForDeploymentPostprocessing = 0; |
302 | shellPath = /bin/sh; | 302 | shellPath = /bin/sh; |
303 | - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; | 303 | + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-resources.sh\"\n"; |
304 | showEnvVarsInLog = 0; | 304 | showEnvVarsInLog = 0; |
305 | }; | 305 | }; |
306 | - C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = { | 306 | + 6AC9C48B0B76F76CF4851AE8 /* [CP] Embed Pods Frameworks */ = { |
307 | isa = PBXShellScriptBuildPhase; | 307 | isa = PBXShellScriptBuildPhase; |
308 | buildActionMask = 2147483647; | 308 | buildActionMask = 2147483647; |
309 | files = ( | 309 | files = ( |
310 | ); | 310 | ); |
311 | inputFileListPaths = ( | 311 | inputFileListPaths = ( |
312 | + "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", | ||
312 | ); | 313 | ); |
313 | - inputPaths = ( | 314 | + name = "[CP] Embed Pods Frameworks"; |
314 | - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||
315 | - "${PODS_ROOT}/Manifest.lock", | ||
316 | - ); | ||
317 | - name = "[CP] Check Pods Manifest.lock"; | ||
318 | outputFileListPaths = ( | 315 | outputFileListPaths = ( |
319 | - ); | 316 | + "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", |
320 | - outputPaths = ( | ||
321 | - "$(DERIVED_FILE_DIR)/Pods-DetectApp-checkManifestLockResult.txt", | ||
322 | ); | 317 | ); |
323 | runOnlyForDeploymentPostprocessing = 0; | 318 | runOnlyForDeploymentPostprocessing = 0; |
324 | shellPath = /bin/sh; | 319 | shellPath = /bin/sh; |
325 | - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; | 320 | + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-frameworks.sh\"\n"; |
326 | showEnvVarsInLog = 0; | 321 | showEnvVarsInLog = 0; |
327 | }; | 322 | }; |
328 | - C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = { | 323 | + 9011D6D9487FF0EDADCEDD29 /* [CP] Embed Pods Frameworks */ = { |
329 | isa = PBXShellScriptBuildPhase; | 324 | isa = PBXShellScriptBuildPhase; |
330 | buildActionMask = 2147483647; | 325 | buildActionMask = 2147483647; |
331 | files = ( | 326 | files = ( |
332 | ); | 327 | ); |
333 | inputFileListPaths = ( | 328 | inputFileListPaths = ( |
334 | - "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", | 329 | + "${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-frameworks-${CONFIGURATION}-input-files.xcfilelist", |
335 | ); | 330 | ); |
336 | name = "[CP] Embed Pods Frameworks"; | 331 | name = "[CP] Embed Pods Frameworks"; |
337 | outputFileListPaths = ( | 332 | outputFileListPaths = ( |
338 | - "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", | 333 | + "${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-frameworks-${CONFIGURATION}-output-files.xcfilelist", |
339 | ); | 334 | ); |
340 | runOnlyForDeploymentPostprocessing = 0; | 335 | runOnlyForDeploymentPostprocessing = 0; |
341 | shellPath = /bin/sh; | 336 | shellPath = /bin/sh; |
342 | - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-frameworks.sh\"\n"; | 337 | + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-frameworks.sh\"\n"; |
343 | showEnvVarsInLog = 0; | 338 | showEnvVarsInLog = 0; |
344 | }; | 339 | }; |
345 | - E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = { | 340 | + 97EFBFE94AD33A857840271D /* [CP] Copy Pods Resources */ = { |
346 | isa = PBXShellScriptBuildPhase; | 341 | isa = PBXShellScriptBuildPhase; |
347 | buildActionMask = 2147483647; | 342 | buildActionMask = 2147483647; |
348 | files = ( | 343 | files = ( |
... | @@ -359,21 +354,26 @@ | ... | @@ -359,21 +354,26 @@ |
359 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-resources.sh\"\n"; | 354 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp/Pods-DetectApp-resources.sh\"\n"; |
360 | showEnvVarsInLog = 0; | 355 | showEnvVarsInLog = 0; |
361 | }; | 356 | }; |
362 | - F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = { | 357 | + BD3C81B9EAFC412F041924FD /* [CP] Check Pods Manifest.lock */ = { |
363 | isa = PBXShellScriptBuildPhase; | 358 | isa = PBXShellScriptBuildPhase; |
364 | buildActionMask = 2147483647; | 359 | buildActionMask = 2147483647; |
365 | files = ( | 360 | files = ( |
366 | ); | 361 | ); |
367 | inputFileListPaths = ( | 362 | inputFileListPaths = ( |
368 | - "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-resources-${CONFIGURATION}-input-files.xcfilelist", | ||
369 | ); | 363 | ); |
370 | - name = "[CP] Copy Pods Resources"; | 364 | + inputPaths = ( |
365 | + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||
366 | + "${PODS_ROOT}/Manifest.lock", | ||
367 | + ); | ||
368 | + name = "[CP] Check Pods Manifest.lock"; | ||
371 | outputFileListPaths = ( | 369 | outputFileListPaths = ( |
372 | - "${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-resources-${CONFIGURATION}-output-files.xcfilelist", | 370 | + ); |
371 | + outputPaths = ( | ||
372 | + "$(DERIVED_FILE_DIR)/Pods-DetectApp-DetectAppTests-checkManifestLockResult.txt", | ||
373 | ); | 373 | ); |
374 | runOnlyForDeploymentPostprocessing = 0; | 374 | runOnlyForDeploymentPostprocessing = 0; |
375 | shellPath = /bin/sh; | 375 | shellPath = /bin/sh; |
376 | - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DetectApp-DetectAppTests/Pods-DetectApp-DetectAppTests-resources.sh\"\n"; | 376 | + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; |
377 | showEnvVarsInLog = 0; | 377 | showEnvVarsInLog = 0; |
378 | }; | 378 | }; |
379 | FD10A7F022414F080027D42C /* Start Packager */ = { | 379 | FD10A7F022414F080027D42C /* Start Packager */ = { |
... | @@ -428,15 +428,16 @@ | ... | @@ -428,15 +428,16 @@ |
428 | /* Begin XCBuildConfiguration section */ | 428 | /* Begin XCBuildConfiguration section */ |
429 | 00E356F61AD99517003FC87E /* Debug */ = { | 429 | 00E356F61AD99517003FC87E /* Debug */ = { |
430 | isa = XCBuildConfiguration; | 430 | isa = XCBuildConfiguration; |
431 | - baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-DetectApp-DetectAppTests.debug.xcconfig */; | 431 | + baseConfigurationReference = DB66464ADC48CCA573625B2E /* Pods-DetectApp-DetectAppTests.debug.xcconfig */; |
432 | buildSettings = { | 432 | buildSettings = { |
433 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; | ||
433 | BUNDLE_LOADER = "$(TEST_HOST)"; | 434 | BUNDLE_LOADER = "$(TEST_HOST)"; |
434 | GCC_PREPROCESSOR_DEFINITIONS = ( | 435 | GCC_PREPROCESSOR_DEFINITIONS = ( |
435 | "DEBUG=1", | 436 | "DEBUG=1", |
436 | "$(inherited)", | 437 | "$(inherited)", |
437 | ); | 438 | ); |
438 | INFOPLIST_FILE = DetectAppTests/Info.plist; | 439 | INFOPLIST_FILE = DetectAppTests/Info.plist; |
439 | - IPHONEOS_DEPLOYMENT_TARGET = 11.0; | 440 | + IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
440 | LD_RUNPATH_SEARCH_PATHS = ( | 441 | LD_RUNPATH_SEARCH_PATHS = ( |
441 | "$(inherited)", | 442 | "$(inherited)", |
442 | "@executable_path/Frameworks", | 443 | "@executable_path/Frameworks", |
... | @@ -455,12 +456,13 @@ | ... | @@ -455,12 +456,13 @@ |
455 | }; | 456 | }; |
456 | 00E356F71AD99517003FC87E /* Release */ = { | 457 | 00E356F71AD99517003FC87E /* Release */ = { |
457 | isa = XCBuildConfiguration; | 458 | isa = XCBuildConfiguration; |
458 | - baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-DetectApp-DetectAppTests.release.xcconfig */; | 459 | + baseConfigurationReference = 792F606D27AAD2AE6AC15AE7 /* Pods-DetectApp-DetectAppTests.release.xcconfig */; |
459 | buildSettings = { | 460 | buildSettings = { |
461 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; | ||
460 | BUNDLE_LOADER = "$(TEST_HOST)"; | 462 | BUNDLE_LOADER = "$(TEST_HOST)"; |
461 | COPY_PHASE_STRIP = NO; | 463 | COPY_PHASE_STRIP = NO; |
462 | INFOPLIST_FILE = DetectAppTests/Info.plist; | 464 | INFOPLIST_FILE = DetectAppTests/Info.plist; |
463 | - IPHONEOS_DEPLOYMENT_TARGET = 11.0; | 465 | + IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
464 | LD_RUNPATH_SEARCH_PATHS = ( | 466 | LD_RUNPATH_SEARCH_PATHS = ( |
465 | "$(inherited)", | 467 | "$(inherited)", |
466 | "@executable_path/Frameworks", | 468 | "@executable_path/Frameworks", |
... | @@ -479,11 +481,12 @@ | ... | @@ -479,11 +481,12 @@ |
479 | }; | 481 | }; |
480 | 13B07F941A680F5B00A75B9A /* Debug */ = { | 482 | 13B07F941A680F5B00A75B9A /* Debug */ = { |
481 | isa = XCBuildConfiguration; | 483 | isa = XCBuildConfiguration; |
482 | - baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-DetectApp.debug.xcconfig */; | 484 | + baseConfigurationReference = DB56DC7F86770E6819051298 /* Pods-DetectApp.debug.xcconfig */; |
483 | buildSettings = { | 485 | buildSettings = { |
484 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | 486 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
485 | CLANG_ENABLE_MODULES = YES; | 487 | CLANG_ENABLE_MODULES = YES; |
486 | CURRENT_PROJECT_VERSION = 1; | 488 | CURRENT_PROJECT_VERSION = 1; |
489 | + DEVELOPMENT_TEAM = 4APG4YR4B6; | ||
487 | ENABLE_BITCODE = NO; | 490 | ENABLE_BITCODE = NO; |
488 | INFOPLIST_FILE = DetectApp/Info.plist; | 491 | INFOPLIST_FILE = DetectApp/Info.plist; |
489 | LD_RUNPATH_SEARCH_PATHS = ( | 492 | LD_RUNPATH_SEARCH_PATHS = ( |
... | @@ -505,11 +508,12 @@ | ... | @@ -505,11 +508,12 @@ |
505 | }; | 508 | }; |
506 | 13B07F951A680F5B00A75B9A /* Release */ = { | 509 | 13B07F951A680F5B00A75B9A /* Release */ = { |
507 | isa = XCBuildConfiguration; | 510 | isa = XCBuildConfiguration; |
508 | - baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-DetectApp.release.xcconfig */; | 511 | + baseConfigurationReference = 6BB98A846E9259C91066018E /* Pods-DetectApp.release.xcconfig */; |
509 | buildSettings = { | 512 | buildSettings = { |
510 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | 513 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
511 | CLANG_ENABLE_MODULES = YES; | 514 | CLANG_ENABLE_MODULES = YES; |
512 | CURRENT_PROJECT_VERSION = 1; | 515 | CURRENT_PROJECT_VERSION = 1; |
516 | + DEVELOPMENT_TEAM = 4APG4YR4B6; | ||
513 | INFOPLIST_FILE = DetectApp/Info.plist; | 517 | INFOPLIST_FILE = DetectApp/Info.plist; |
514 | LD_RUNPATH_SEARCH_PATHS = ( | 518 | LD_RUNPATH_SEARCH_PATHS = ( |
515 | "$(inherited)", | 519 | "$(inherited)", |
... | @@ -576,7 +580,7 @@ | ... | @@ -576,7 +580,7 @@ |
576 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | 580 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
577 | GCC_WARN_UNUSED_FUNCTION = YES; | 581 | GCC_WARN_UNUSED_FUNCTION = YES; |
578 | GCC_WARN_UNUSED_VARIABLE = YES; | 582 | GCC_WARN_UNUSED_VARIABLE = YES; |
579 | - IPHONEOS_DEPLOYMENT_TARGET = 11.0; | 583 | + IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
580 | LD_RUNPATH_SEARCH_PATHS = ( | 584 | LD_RUNPATH_SEARCH_PATHS = ( |
581 | /usr/lib/swift, | 585 | /usr/lib/swift, |
582 | "$(inherited)", | 586 | "$(inherited)", |
... | @@ -640,7 +644,7 @@ | ... | @@ -640,7 +644,7 @@ |
640 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | 644 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; |
641 | GCC_WARN_UNUSED_FUNCTION = YES; | 645 | GCC_WARN_UNUSED_FUNCTION = YES; |
642 | GCC_WARN_UNUSED_VARIABLE = YES; | 646 | GCC_WARN_UNUSED_VARIABLE = YES; |
643 | - IPHONEOS_DEPLOYMENT_TARGET = 11.0; | 647 | + IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
644 | LD_RUNPATH_SEARCH_PATHS = ( | 648 | LD_RUNPATH_SEARCH_PATHS = ( |
645 | /usr/lib/swift, | 649 | /usr/lib/swift, |
646 | "$(inherited)", | 650 | "$(inherited)", |
... | @@ -672,7 +676,7 @@ | ... | @@ -672,7 +676,7 @@ |
672 | 00E356F71AD99517003FC87E /* Release */, | 676 | 00E356F71AD99517003FC87E /* Release */, |
673 | ); | 677 | ); |
674 | defaultConfigurationIsVisible = 0; | 678 | defaultConfigurationIsVisible = 0; |
675 | - defaultConfigurationName = Release; | 679 | + defaultConfigurationName = Debug; |
676 | }; | 680 | }; |
677 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DetectApp" */ = { | 681 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DetectApp" */ = { |
678 | isa = XCConfigurationList; | 682 | isa = XCConfigurationList; |
... | @@ -681,7 +685,7 @@ | ... | @@ -681,7 +685,7 @@ |
681 | 13B07F951A680F5B00A75B9A /* Release */, | 685 | 13B07F951A680F5B00A75B9A /* Release */, |
682 | ); | 686 | ); |
683 | defaultConfigurationIsVisible = 0; | 687 | defaultConfigurationIsVisible = 0; |
684 | - defaultConfigurationName = Release; | 688 | + defaultConfigurationName = Debug; |
685 | }; | 689 | }; |
686 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "DetectApp" */ = { | 690 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "DetectApp" */ = { |
687 | isa = XCConfigurationList; | 691 | isa = XCConfigurationList; |
... | @@ -690,7 +694,7 @@ | ... | @@ -690,7 +694,7 @@ |
690 | 83CBBA211A601CBA00E9B192 /* Release */, | 694 | 83CBBA211A601CBA00E9B192 /* Release */, |
691 | ); | 695 | ); |
692 | defaultConfigurationIsVisible = 0; | 696 | defaultConfigurationIsVisible = 0; |
693 | - defaultConfigurationName = Release; | 697 | + defaultConfigurationName = Debug; |
694 | }; | 698 | }; |
695 | /* End XCConfigurationList section */ | 699 | /* End XCConfigurationList section */ |
696 | }; | 700 | }; | ... | ... |
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <Scheme | 2 | <Scheme |
3 | - LastUpgradeVersion = "1210" | 3 | + LastUpgradeVersion = "1340" |
4 | version = "1.3"> | 4 | version = "1.3"> |
5 | <BuildAction | 5 | <BuildAction |
6 | parallelizeBuildables = "YES" | 6 | parallelizeBuildables = "YES" | ... | ... |
DetectApp/model/group1-shard1of2.bin
0 → 100644
No preview for this file type
DetectApp/model/group1-shard2of2.bin
0 → 100644
No preview for this file type
DetectApp/model/model.json
0 → 100644
1 | +{"format": "layers-model", "generatedBy": "keras v2.8.0", "convertedBy": "TensorFlow.js Converter v3.18.0", "modelTopology": {"keras_version": "2.8.0", "backend": "tensorflow", "model_config": {"class_name": "Sequential", "config": {"name": "sequential_1", "layers": [{"class_name": "InputLayer", "config": {"batch_input_shape": [null, 24, 24, 1], "dtype": "float32", "sparse": false, "ragged": false, "name": "conv2d_3_input"}}, {"class_name": "Conv2D", "config": {"name": "conv2d_3", "trainable": true, "batch_input_shape": [null, 24, 24, 1], "dtype": "float32", "filters": 32, "kernel_size": [3, 3], "strides": [1, 1], "padding": "valid", "data_format": "channels_last", "dilation_rate": [1, 1], "groups": 1, "activation": "relu", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "MaxPooling2D", "config": {"name": "max_pooling2d_3", "trainable": true, "dtype": "float32", "pool_size": [2, 2], "padding": "valid", "strides": [1, 1], "data_format": "channels_last"}}, {"class_name": "Conv2D", "config": {"name": "conv2d_4", "trainable": true, "dtype": "float32", "filters": 32, "kernel_size": [3, 3], "strides": [1, 1], "padding": "valid", "data_format": "channels_last", "dilation_rate": [1, 1], "groups": 1, "activation": "relu", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "MaxPooling2D", "config": {"name": "max_pooling2d_4", "trainable": true, "dtype": "float32", "pool_size": [2, 2], "padding": "valid", "strides": [1, 1], "data_format": "channels_last"}}, {"class_name": "Conv2D", "config": {"name": "conv2d_5", "trainable": true, "dtype": "float32", "filters": 64, "kernel_size": [3, 3], "strides": [1, 1], "padding": "valid", "data_format": "channels_last", "dilation_rate": [1, 1], "groups": 1, "activation": "relu", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "MaxPooling2D", "config": {"name": "max_pooling2d_5", "trainable": true, "dtype": "float32", "pool_size": [2, 2], "padding": "valid", "strides": [1, 1], "data_format": "channels_last"}}, {"class_name": "Dropout", "config": {"name": "dropout_2", "trainable": true, "dtype": "float32", "rate": 0.25, "noise_shape": null, "seed": null}}, {"class_name": "Flatten", "config": {"name": "flatten_1", "trainable": true, "dtype": "float32", "data_format": "channels_last"}}, {"class_name": "Dense", "config": {"name": "dense_2", "trainable": true, "dtype": "float32", "units": 128, "activation": "relu", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}, {"class_name": "Dropout", "config": {"name": "dropout_3", "trainable": true, "dtype": "float32", "rate": 0.5, "noise_shape": null, "seed": null}}, {"class_name": "Dense", "config": {"name": "dense_3", "trainable": true, "dtype": "float32", "units": 2, "activation": "softmax", "use_bias": true, "kernel_initializer": {"class_name": "GlorotUniform", "config": {"seed": null}}, "bias_initializer": {"class_name": "Zeros", "config": {}}, "kernel_regularizer": null, "bias_regularizer": null, "activity_regularizer": null, "kernel_constraint": null, "bias_constraint": null}}]}}, "training_config": {"loss": "categorical_crossentropy", "metrics": [[{"class_name": "MeanMetricWrapper", "config": {"name": "accuracy", "dtype": "float32", "fn": "categorical_accuracy"}}]], "weighted_metrics": null, "loss_weights": null, "optimizer_config": {"class_name": "Adam", "config": {"name": "Adam", "learning_rate": 0.0010000000474974513, "decay": 0.0, "beta_1": 0.8999999761581421, "beta_2": 0.9990000128746033, "epsilon": 1e-07, "amsgrad": false}}}}, "weightsManifest": [{"paths": ["group1-shard1of2.bin", "group1-shard2of2.bin"], "weights": [{"name": "conv2d_3/kernel", "shape": [3, 3, 1, 32], "dtype": "float32"}, {"name": "conv2d_3/bias", "shape": [32], "dtype": "float32"}, {"name": "conv2d_4/kernel", "shape": [3, 3, 32, 32], "dtype": "float32"}, {"name": "conv2d_4/bias", "shape": [32], "dtype": "float32"}, {"name": "conv2d_5/kernel", "shape": [3, 3, 32, 64], "dtype": "float32"}, {"name": "conv2d_5/bias", "shape": [64], "dtype": "float32"}, {"name": "dense_2/kernel", "shape": [14400, 128], "dtype": "float32"}, {"name": "dense_2/bias", "shape": [128], "dtype": "float32"}, {"name": "dense_3/kernel", "shape": [128, 2], "dtype": "float32"}, {"name": "dense_3/bias", "shape": [2], "dtype": "float32"}]}]} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -4,39 +4,58 @@ channels: | ... | @@ -4,39 +4,58 @@ channels: |
4 | - defaults | 4 | - defaults |
5 | - conda-forge | 5 | - conda-forge |
6 | dependencies: | 6 | dependencies: |
7 | + - abseil-cpp=20210324.2=hc377ac9_0 | ||
8 | + - aiohttp=3.8.1=py39h1a28f6b_1 | ||
9 | + - aiosignal=1.2.0=pyhd3eb1b0_0 | ||
7 | - aom=3.3.0=h07bb92c_1 | 10 | - aom=3.3.0=h07bb92c_1 |
8 | - appnope=0.1.2=py39hca03da5_1001 | 11 | - appnope=0.1.2=py39hca03da5_1001 |
9 | - asttokens=2.0.5=pyhd3eb1b0_0 | 12 | - asttokens=2.0.5=pyhd3eb1b0_0 |
13 | + - astunparse=1.6.3=py_0 | ||
14 | + - async-timeout=4.0.1=pyhd3eb1b0_0 | ||
15 | + - attrs=21.4.0=pyhd3eb1b0_0 | ||
10 | - backcall=0.2.0=pyhd3eb1b0_0 | 16 | - backcall=0.2.0=pyhd3eb1b0_0 |
11 | - blas=2.114=openblas | 17 | - blas=2.114=openblas |
12 | - blas-devel=3.9.0=14_osxarm64_openblas | 18 | - blas-devel=3.9.0=14_osxarm64_openblas |
19 | + - blinker=1.4=py39hca03da5_0 | ||
13 | - brotli=1.0.7=hc377ac9_0 | 20 | - brotli=1.0.7=hc377ac9_0 |
21 | + - brotlipy=0.7.0=py39h1a28f6b_1002 | ||
14 | - bzip2=1.0.8=h620ffc9_4 | 22 | - bzip2=1.0.8=h620ffc9_4 |
15 | - c-ares=1.18.1=h1a28f6b_0 | 23 | - c-ares=1.18.1=h1a28f6b_0 |
16 | - ca-certificates=2022.4.26=hca03da5_0 | 24 | - ca-certificates=2022.4.26=hca03da5_0 |
17 | - cairo=1.16.0=h0ab239c_1 | 25 | - cairo=1.16.0=h0ab239c_1 |
18 | - - certifi=2021.10.8=py39hca03da5_2 | 26 | + - certifi=2022.5.18.1=py39hca03da5_0 |
27 | + - cffi=1.15.0=py39h22df2f2_1 | ||
28 | + - click=8.0.4=py39hca03da5_0 | ||
29 | + - cryptography=3.4.7=py39h9dbe03d_0 | ||
19 | - cycler=0.11.0=pyhd3eb1b0_0 | 30 | - cycler=0.11.0=pyhd3eb1b0_0 |
31 | + - dataclasses=0.8=pyh6d0b6a4_7 | ||
20 | - debugpy=1.5.1=py39hc377ac9_0 | 32 | - debugpy=1.5.1=py39hc377ac9_0 |
21 | - decorator=5.1.1=pyhd3eb1b0_0 | 33 | - decorator=5.1.1=pyhd3eb1b0_0 |
34 | + - dlib=19.24.0=py39he4b90f5_0 | ||
22 | - entrypoints=0.4=py39hca03da5_0 | 35 | - entrypoints=0.4=py39hca03da5_0 |
23 | - executing=0.8.3=pyhd3eb1b0_0 | 36 | - executing=0.8.3=pyhd3eb1b0_0 |
24 | - ffmpeg=4.4.1=heb85afd_3 | 37 | - ffmpeg=4.4.1=heb85afd_3 |
25 | - fontconfig=2.13.1=h1f4a5ec_0 | 38 | - fontconfig=2.13.1=h1f4a5ec_0 |
26 | - fonttools=4.25.0=pyhd3eb1b0_0 | 39 | - fonttools=4.25.0=pyhd3eb1b0_0 |
27 | - freetype=2.11.0=h1192e45_0 | 40 | - freetype=2.11.0=h1192e45_0 |
41 | + - frozenlist=1.2.0=py39h1a28f6b_0 | ||
42 | + - gast=0.5.3=pyhd3eb1b0_0 | ||
28 | - gettext=0.21.0=h826f4ad_0 | 43 | - gettext=0.21.0=h826f4ad_0 |
29 | - giflib=5.2.1=h1a28f6b_0 | 44 | - giflib=5.2.1=h1a28f6b_0 |
30 | - glib=2.70.2=hccf11d3_4 | 45 | - glib=2.70.2=hccf11d3_4 |
31 | - glib-tools=2.70.2=hccf11d3_4 | 46 | - glib-tools=2.70.2=hccf11d3_4 |
32 | - gmp=6.2.1=hc377ac9_0 | 47 | - gmp=6.2.1=hc377ac9_0 |
33 | - gnutls=3.6.15=h887c41c_0 | 48 | - gnutls=3.6.15=h887c41c_0 |
49 | + - google-pasta=0.2.0=pyhd3eb1b0_0 | ||
34 | - graphite2=1.3.14=h0e5e14a_0 | 50 | - graphite2=1.3.14=h0e5e14a_0 |
35 | - - grpcio=1.42.0=py39h95c9599_0 | 51 | + - grpc-cpp=1.45.2=h42cd831_3 |
52 | + - grpcio=1.45.0=py39hcf421d0_0 | ||
36 | - h5py=3.6.0=py39h7fe8675_0 | 53 | - h5py=3.6.0=py39h7fe8675_0 |
37 | - harfbuzz=4.2.1=hd36a07e_0 | 54 | - harfbuzz=4.2.1=hd36a07e_0 |
38 | - hdf5=1.12.1=h5aa262f_1 | 55 | - hdf5=1.12.1=h5aa262f_1 |
39 | - icu=70.1=h6b3803e_0 | 56 | - icu=70.1=h6b3803e_0 |
57 | + - idna=3.3=pyhd3eb1b0_0 | ||
58 | + - importlib-metadata=4.11.3=py39hca03da5_0 | ||
40 | - ipykernel=6.9.1=py39hca03da5_0 | 59 | - ipykernel=6.9.1=py39hca03da5_0 |
41 | - ipython=8.3.0=py39hca03da5_0 | 60 | - ipython=8.3.0=py39hca03da5_0 |
42 | - jasper=2.0.33=hba35424_0 | 61 | - jasper=2.0.33=hba35424_0 |
... | @@ -45,14 +64,16 @@ dependencies: | ... | @@ -45,14 +64,16 @@ dependencies: |
45 | - jpeg=9e=h1a28f6b_0 | 64 | - jpeg=9e=h1a28f6b_0 |
46 | - jupyter_client=7.2.2=py39hca03da5_0 | 65 | - jupyter_client=7.2.2=py39hca03da5_0 |
47 | - jupyter_core=4.10.0=py39hca03da5_0 | 66 | - jupyter_core=4.10.0=py39hca03da5_0 |
67 | + - keras=2.8.0=pyhd8ed1ab_0 | ||
68 | + - keras-preprocessing=1.1.2=pyhd3eb1b0_0 | ||
48 | - kiwisolver=1.3.2=py39hc377ac9_0 | 69 | - kiwisolver=1.3.2=py39hc377ac9_0 |
49 | - - krb5=1.19.2=h3b8d789_0 | 70 | + - krb5=1.19.3=hf9b2bbe_0 |
50 | - lame=3.100=h1a28f6b_0 | 71 | - lame=3.100=h1a28f6b_0 |
51 | - lcms2=2.12=hba8e193_0 | 72 | - lcms2=2.12=hba8e193_0 |
52 | - lerc=3.0=hc377ac9_0 | 73 | - lerc=3.0=hc377ac9_0 |
53 | - libblas=3.9.0=14_osxarm64_openblas | 74 | - libblas=3.9.0=14_osxarm64_openblas |
54 | - libcblas=3.9.0=14_osxarm64_openblas | 75 | - libcblas=3.9.0=14_osxarm64_openblas |
55 | - - libcurl=7.82.0=hc6d1d07_0 | 76 | + - libcurl=7.83.1=h2fcd78c_0 |
56 | - libcxx=14.0.3=h6a5c8ee_0 | 77 | - libcxx=14.0.3=h6a5c8ee_0 |
57 | - libdeflate=1.8=h1a28f6b_5 | 78 | - libdeflate=1.8=h1a28f6b_5 |
58 | - libedit=3.1.20210910=h1a28f6b_0 | 79 | - libedit=3.1.20210910=h1a28f6b_0 |
... | @@ -65,7 +86,7 @@ dependencies: | ... | @@ -65,7 +86,7 @@ dependencies: |
65 | - libidn2=2.3.1=h1a28f6b_0 | 86 | - libidn2=2.3.1=h1a28f6b_0 |
66 | - liblapack=3.9.0=14_osxarm64_openblas | 87 | - liblapack=3.9.0=14_osxarm64_openblas |
67 | - liblapacke=3.9.0=14_osxarm64_openblas | 88 | - liblapacke=3.9.0=14_osxarm64_openblas |
68 | - - libnghttp2=1.46.0=h95c9599_0 | 89 | + - libnghttp2=1.47.0=he723fca_0 |
69 | - libopenblas=0.3.20=openmp_h2209c59_0 | 90 | - libopenblas=0.3.20=openmp_h2209c59_0 |
70 | - libopencv=4.5.5=py39h86e1ac9_9 | 91 | - libopencv=4.5.5=py39h86e1ac9_9 |
71 | - libpng=1.6.37=hb8d0fd4_0 | 92 | - libpng=1.6.37=hb8d0fd4_0 |
... | @@ -85,17 +106,19 @@ dependencies: | ... | @@ -85,17 +106,19 @@ dependencies: |
85 | - matplotlib=3.5.1=py39hca03da5_1 | 106 | - matplotlib=3.5.1=py39hca03da5_1 |
86 | - matplotlib-base=3.5.1=py39hc377ac9_1 | 107 | - matplotlib-base=3.5.1=py39hc377ac9_1 |
87 | - matplotlib-inline=0.1.2=pyhd3eb1b0_2 | 108 | - matplotlib-inline=0.1.2=pyhd3eb1b0_2 |
109 | + - multidict=5.2.0=py39h1a28f6b_2 | ||
88 | - munkres=1.1.4=py_0 | 110 | - munkres=1.1.4=py_0 |
89 | - ncurses=6.3=h1a28f6b_2 | 111 | - ncurses=6.3=h1a28f6b_2 |
90 | - nest-asyncio=1.5.5=py39hca03da5_0 | 112 | - nest-asyncio=1.5.5=py39hca03da5_0 |
91 | - nettle=3.7.3=h84b5d62_1 | 113 | - nettle=3.7.3=h84b5d62_1 |
92 | - numpy=1.21.5=py39h25ab29e_2 | 114 | - numpy=1.21.5=py39h25ab29e_2 |
93 | - numpy-base=1.21.5=py39h974a1f5_2 | 115 | - numpy-base=1.21.5=py39h974a1f5_2 |
116 | + - oauthlib=3.2.0=pyhd3eb1b0_0 | ||
94 | - openblas=0.3.20=openmp_h745f6c2_0 | 117 | - openblas=0.3.20=openmp_h745f6c2_0 |
95 | - opencv=4.5.5=py39hdf13c20_9 | 118 | - opencv=4.5.5=py39hdf13c20_9 |
96 | - openh264=2.1.1=h98b2900_0 | 119 | - openh264=2.1.1=h98b2900_0 |
97 | - openssl=1.1.1o=h1a28f6b_0 | 120 | - openssl=1.1.1o=h1a28f6b_0 |
98 | - - packaging=21.3=pyhd3eb1b0_0 | 121 | + - opt_einsum=3.3.0=pyhd3eb1b0_1 |
99 | - parso=0.8.3=pyhd3eb1b0_0 | 122 | - parso=0.8.3=pyhd3eb1b0_0 |
100 | - pcre=8.45=hc377ac9_0 | 123 | - pcre=8.45=hc377ac9_0 |
101 | - pexpect=4.8.0=pyhd3eb1b0_3 | 124 | - pexpect=4.8.0=pyhd3eb1b0_3 |
... | @@ -107,68 +130,73 @@ dependencies: | ... | @@ -107,68 +130,73 @@ dependencies: |
107 | - ptyprocess=0.7.0=pyhd3eb1b0_2 | 130 | - ptyprocess=0.7.0=pyhd3eb1b0_2 |
108 | - pure_eval=0.2.2=pyhd3eb1b0_0 | 131 | - pure_eval=0.2.2=pyhd3eb1b0_0 |
109 | - py-opencv=4.5.5=py39hfa6204d_9 | 132 | - py-opencv=4.5.5=py39hfa6204d_9 |
133 | + - pyasn1=0.4.8=pyhd3eb1b0_0 | ||
134 | + - pycparser=2.21=pyhd3eb1b0_0 | ||
110 | - pygments=2.11.2=pyhd3eb1b0_0 | 135 | - pygments=2.11.2=pyhd3eb1b0_0 |
136 | + - pyjwt=2.1.0=py39hca03da5_0 | ||
137 | + - pyopenssl=21.0.0=pyhd3eb1b0_1 | ||
111 | - pyparsing=3.0.4=pyhd3eb1b0_0 | 138 | - pyparsing=3.0.4=pyhd3eb1b0_0 |
139 | + - pysocks=1.7.1=py39hca03da5_0 | ||
112 | - python=3.9.12=hfc7342c_1_cpython | 140 | - python=3.9.12=hfc7342c_1_cpython |
113 | - python-dateutil=2.8.2=pyhd3eb1b0_0 | 141 | - python-dateutil=2.8.2=pyhd3eb1b0_0 |
142 | + - python-flatbuffers=2.0=pyhd3eb1b0_0 | ||
114 | - python_abi=3.9=2_cp39 | 143 | - python_abi=3.9=2_cp39 |
115 | - pyzmq=22.3.0=py39hc377ac9_2 | 144 | - pyzmq=22.3.0=py39hc377ac9_2 |
145 | + - re2=2022.04.01=hc377ac9_0 | ||
116 | - readline=8.1.2=h1a28f6b_1 | 146 | - readline=8.1.2=h1a28f6b_1 |
147 | + - requests=2.27.1=pyhd3eb1b0_0 | ||
117 | - scipy=1.7.3=py39h2f0f56f_0 | 148 | - scipy=1.7.3=py39h2f0f56f_0 |
118 | - setuptools=61.2.0=py39hca03da5_0 | 149 | - setuptools=61.2.0=py39hca03da5_0 |
119 | - - sqlite=3.38.2=h1058600_0 | 150 | + - snappy=1.1.9=hc377ac9_0 |
151 | + - sqlite=3.38.5=h40dfcc0_0 | ||
120 | - stack_data=0.2.0=pyhd3eb1b0_0 | 152 | - stack_data=0.2.0=pyhd3eb1b0_0 |
121 | - svt-av1=0.9.1=h07bb92c_0 | 153 | - svt-av1=0.9.1=h07bb92c_0 |
154 | + - tensorboard=2.8.0=pyhd8ed1ab_1 | ||
155 | + - tensorflow=2.8.1=cpu_py39h2839aeb_0 | ||
156 | + - tensorflow-base=2.8.1=cpu_py39h84f6f83_0 | ||
122 | - tensorflow-deps=2.8.0=0 | 157 | - tensorflow-deps=2.8.0=0 |
158 | + - tensorflow-estimator=2.8.1=cpu_py39hfad2b03_0 | ||
123 | - tk=8.6.12=he1e0b03_0 | 159 | - tk=8.6.12=he1e0b03_0 |
124 | - tornado=6.1=py39h1a28f6b_0 | 160 | - tornado=6.1=py39h1a28f6b_0 |
125 | - traitlets=5.1.1=pyhd3eb1b0_0 | 161 | - traitlets=5.1.1=pyhd3eb1b0_0 |
162 | + - typing_extensions=4.1.1=pyh06a4308_0 | ||
126 | - tzdata=2022a=hda174b7_0 | 163 | - tzdata=2022a=hda174b7_0 |
164 | + - urllib3=1.26.9=py39hca03da5_0 | ||
127 | - wcwidth=0.2.5=pyhd3eb1b0_0 | 165 | - wcwidth=0.2.5=pyhd3eb1b0_0 |
128 | - wheel=0.37.1=pyhd3eb1b0_0 | 166 | - wheel=0.37.1=pyhd3eb1b0_0 |
129 | - x264=1!161.3030=h3422bc3_1 | 167 | - x264=1!161.3030=h3422bc3_1 |
130 | - x265=3.5=hbc6ce65_3 | 168 | - x265=3.5=hbc6ce65_3 |
131 | - xz=5.2.5=h1a28f6b_1 | 169 | - xz=5.2.5=h1a28f6b_1 |
170 | + - yarl=1.6.3=py39h1a28f6b_1 | ||
132 | - zeromq=4.3.4=hc377ac9_0 | 171 | - zeromq=4.3.4=hc377ac9_0 |
172 | + - zipp=3.8.0=py39hca03da5_0 | ||
133 | - zlib=1.2.11=h90dfc92_1014 | 173 | - zlib=1.2.11=h90dfc92_1014 |
134 | - zstd=1.5.2=h861e0a7_0 | 174 | - zstd=1.5.2=h861e0a7_0 |
135 | - pip: | 175 | - pip: |
136 | - absl-py==1.0.0 | 176 | - absl-py==1.0.0 |
137 | - - astunparse==1.6.3 | ||
138 | - cachetools==5.0.0 | 177 | - cachetools==5.0.0 |
139 | - charset-normalizer==2.0.12 | 178 | - charset-normalizer==2.0.12 |
140 | - - flatbuffers==2.0 | ||
141 | - - gast==0.5.3 | ||
142 | - google-auth==2.6.6 | 179 | - google-auth==2.6.6 |
143 | - google-auth-oauthlib==0.4.6 | 180 | - google-auth-oauthlib==0.4.6 |
144 | - - google-pasta==0.2.0 | ||
145 | - - idna==3.3 | ||
146 | - - importlib-metadata==4.11.3 | ||
147 | - imutils==0.5.4 | 181 | - imutils==0.5.4 |
148 | - - keras==2.8.0 | ||
149 | - - keras-preprocessing==1.1.2 | ||
150 | - libclang==14.0.1 | 182 | - libclang==14.0.1 |
151 | - markdown==3.3.7 | 183 | - markdown==3.3.7 |
152 | - - oauthlib==3.2.0 | 184 | + - packaging==20.9 |
153 | - - opt-einsum==3.3.0 | ||
154 | - protobuf==3.20.1 | 185 | - protobuf==3.20.1 |
155 | - - pyasn1==0.4.8 | ||
156 | - pyasn1-modules==0.2.8 | 186 | - pyasn1-modules==0.2.8 |
157 | - pygame==2.1.2 | 187 | - pygame==2.1.2 |
158 | - - requests==2.27.1 | ||
159 | - requests-oauthlib==1.3.1 | 188 | - requests-oauthlib==1.3.1 |
160 | - rsa==4.8 | 189 | - rsa==4.8 |
161 | - six==1.15.0 | 190 | - six==1.15.0 |
162 | - - tensorboard==2.8.0 | ||
163 | - tensorboard-data-server==0.6.1 | 191 | - tensorboard-data-server==0.6.1 |
164 | - tensorboard-plugin-wit==1.8.1 | 192 | - tensorboard-plugin-wit==1.8.1 |
193 | + - tensorflow-hub==0.12.0 | ||
165 | - tensorflow-macos==2.8.0 | 194 | - tensorflow-macos==2.8.0 |
166 | - tensorflow-metal==0.4.0 | 195 | - tensorflow-metal==0.4.0 |
196 | + - tensorflowjs==3.18.0 | ||
167 | - termcolor==1.1.0 | 197 | - termcolor==1.1.0 |
168 | - tf-estimator-nightly==2.8.0.dev2021122109 | 198 | - tf-estimator-nightly==2.8.0.dev2021122109 |
169 | - typing-extensions==4.2.0 | 199 | - typing-extensions==4.2.0 |
170 | - - urllib3==1.26.9 | ||
171 | - werkzeug==2.1.2 | 200 | - werkzeug==2.1.2 |
172 | - wrapt==1.14.1 | 201 | - wrapt==1.14.1 |
173 | - - zipp==3.8.0 | ||
174 | prefix: /Users/skywrace/miniforge3/envs/drowsiness_detector | 202 | prefix: /Users/skywrace/miniforge3/envs/drowsiness_detector | ... | ... |
DetectModel/model/extended_weight.h5
0 → 100644
This file is too large to display.
This diff could not be displayed because it is too large.
DetectModel/requirements.txt
deleted
100644 → 0
1 | -absl-py==1.0.0 | ||
2 | -appnope @ file:///Users/ktietz/demo/mc3/conda-bld/appnope_1629146036738/work | ||
3 | -asttokens @ file:///opt/conda/conda-bld/asttokens_1646925590279/work | ||
4 | -astunparse==1.6.3 | ||
5 | -backcall @ file:///home/ktietz/src/ci/backcall_1611930011877/work | ||
6 | -cachetools==5.0.0 | ||
7 | -certifi==2021.10.8 | ||
8 | -charset-normalizer==2.0.12 | ||
9 | -cycler @ file:///tmp/build/80754af9/cycler_1637851556182/work | ||
10 | -debugpy @ file:///Users/builder/miniconda3/envs/prefect/conda-bld/debugpy_1637092214173/work | ||
11 | -decorator @ file:///opt/conda/conda-bld/decorator_1643638310831/work | ||
12 | -entrypoints @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_croot-jb01gaox/entrypoints_1650293758411/work | ||
13 | -executing @ file:///opt/conda/conda-bld/executing_1646925071911/work | ||
14 | -flatbuffers==2.0 | ||
15 | -fonttools==4.25.0 | ||
16 | -gast==0.5.3 | ||
17 | -google-auth==2.6.6 | ||
18 | -google-auth-oauthlib==0.4.6 | ||
19 | -google-pasta==0.2.0 | ||
20 | -grpcio @ file:///Users/builder/miniconda3/envs/prefect/conda-bld/grpcio_1637592348692/work | ||
21 | -h5py @ file:///Users/builder/miniconda3/envs/prefect/conda-bld/h5py_1637162753555/work | ||
22 | -idna==3.3 | ||
23 | -importlib-metadata==4.11.3 | ||
24 | -imutils==0.5.4 | ||
25 | -ipykernel @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_croot-4yxj69n0/ipykernel_1647009452031/work/dist/ipykernel-6.9.1-py3-none-any.whl | ||
26 | -ipython @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_b42ce53b-9348-4ffe-874e-ee7a7d34be58zn88hkt_/croots/recipe/ipython_1651600151534/work | ||
27 | -jedi @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/croot-f1t6hma6/jedi_1644315882177/work | ||
28 | -jupyter-client @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_37f0874a-8189-43c8-984a-7cc5aa7f2a00vekz677y/croots/recipe/jupyter_client_1650622203010/work | ||
29 | -jupyter-core @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_5839c60e-0f30-4a99-b0b9-2b009ec5fec40y9fo9ym/croots/recipe/jupyter_core_1651671230982/work | ||
30 | -keras==2.8.0 | ||
31 | -Keras-Preprocessing==1.1.2 | ||
32 | -kiwisolver @ file:///Users/builder/miniconda3/envs/prefect/conda-bld/kiwisolver_1638569888412/work | ||
33 | -libclang==14.0.1 | ||
34 | -Markdown==3.3.7 | ||
35 | -matplotlib @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_croot-_3usbnl1/matplotlib-suite_1647506475477/work | ||
36 | -matplotlib-inline @ file:///tmp/build/80754af9/matplotlib-inline_1628242447089/work | ||
37 | -munkres==1.1.4 | ||
38 | -nest-asyncio @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_croot-xymukih3/nest-asyncio_1649931465456/work | ||
39 | -numpy @ file:///private/var/folders/nz/j6p8yfhx1mv_0grj5xl4650h0000gp/T/abs_e99dd190-62ea-4b66-a328-d961062afa8ar4io6k3p/croots/recipe/numpy_and_numpy_base_1651563626935/work | ||
40 | -oauthlib==3.2.0 | ||
41 | -opencv-python==4.5.5 | ||
42 | -opt-einsum==3.3.0 | ||
43 | -packaging @ file:///tmp/build/80754af9/packaging_1637314298585/work | ||
44 | -parso @ file:///opt/conda/conda-bld/parso_1641458642106/work | ||
45 | -pexpect @ file:///tmp/build/80754af9/pexpect_1605563209008/work | ||
46 | -pickleshare @ file:///tmp/build/80754af9/pickleshare_1606932040724/work | ||
47 | -Pillow==9.0.1 | ||
48 | -prompt-toolkit @ file:///tmp/build/80754af9/prompt-toolkit_1633440160888/work | ||
49 | -protobuf==3.20.1 | ||
50 | -ptyprocess @ file:///tmp/build/80754af9/ptyprocess_1609355006118/work/dist/ptyprocess-0.7.0-py2.py3-none-any.whl | ||
51 | -pure-eval @ file:///opt/conda/conda-bld/pure_eval_1646925070566/work | ||
52 | -pyasn1==0.4.8 | ||
53 | -pyasn1-modules==0.2.8 | ||
54 | -pygame==2.1.2 | ||
55 | -Pygments @ file:///opt/conda/conda-bld/pygments_1644249106324/work | ||
56 | -pyparsing @ file:///tmp/build/80754af9/pyparsing_1635766073266/work | ||
57 | -python-dateutil @ file:///tmp/build/80754af9/python-dateutil_1626374649649/work | ||
58 | -pyzmq @ file:///Users/builder/miniconda3/envs/prefect/conda-bld/pyzmq_1638447141825/work | ||
59 | -requests==2.27.1 | ||
60 | -requests-oauthlib==1.3.1 | ||
61 | -rsa==4.8 | ||
62 | -scipy @ file:///Users/ktietz/ci_310/scipy_1644255974431/work | ||
63 | -six==1.15.0 | ||
64 | -stack-data @ file:///opt/conda/conda-bld/stack_data_1646927590127/work | ||
65 | -tensorboard==2.8.0 | ||
66 | -tensorboard-data-server==0.6.1 | ||
67 | -tensorboard-plugin-wit==1.8.1 | ||
68 | -tensorflow-macos==2.8.0 | ||
69 | -tensorflow-metal==0.4.0 | ||
70 | -termcolor==1.1.0 | ||
71 | -tf-estimator-nightly==2.8.0.dev2021122109 | ||
72 | -tornado @ file:///Users/ktietz/demo/mc3/conda-bld/tornado_1628698929452/work | ||
73 | -traitlets @ file:///tmp/build/80754af9/traitlets_1636710298902/work | ||
74 | -typing_extensions==4.2.0 | ||
75 | -urllib3==1.26.9 | ||
76 | -wcwidth @ file:///Users/ktietz/demo/mc3/conda-bld/wcwidth_1629357192024/work | ||
77 | -Werkzeug==2.1.2 | ||
78 | -wrapt==1.14.1 | ||
79 | -zipp==3.8.0 |
-
Please register or login to post a comment