VietCat commited on
Commit
5fcb5d5
·
1 Parent(s): efa5dec

init model

Browse files
Files changed (2) hide show
  1. .gitignore +207 -0
  2. models/GTSRB.pt +3 -0
.gitignore ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Miscellaneous
2
+ *.class
3
+ *.log
4
+ *.pyc
5
+ *.swp
6
+ .DS_Store
7
+ .atom/
8
+ .buildlog/
9
+ .history
10
+ .svn/
11
+
12
+ # IntelliJ related
13
+ *.iml
14
+ *.ipr
15
+ *.iws
16
+ .idea/
17
+
18
+ # The .vscode folder contains launch configuration and tasks you configure in
19
+ # VS Code which you may wish to be included in version control, so this line
20
+ # is commented out by default.
21
+ #.vscode/
22
+
23
+ # Flutter/Dart/Pub related
24
+ **/doc/api/
25
+ **/ios/Flutter/.last_build_id
26
+ .dart_tool/
27
+ .flutter-plugins
28
+ .flutter-plugins-dependencies
29
+ .packages
30
+ .pub-cache/
31
+ .pub/
32
+ /build/
33
+ build/
34
+ **/build/
35
+
36
+ # Symbolication related
37
+ app.*.symbols
38
+
39
+ # Obfuscation related
40
+ app.*.map.json
41
+
42
+ # Android Studio will place build artifacts here
43
+ /android/app/debug
44
+ /android/app/profile
45
+ /android/app/release
46
+
47
+ # iOS/Xcode related
48
+ **/ios/**/*.mode1v3
49
+ **/ios/**/*.mode2v3
50
+ **/ios/**/*.moved-aside
51
+ **/ios/**/*.pbxuser
52
+ **/ios/**/*.perspectivev3
53
+ **/ios/**/*sync/
54
+ **/ios/**/.sconsign.dblite
55
+ **/ios/**/.tags*
56
+ **/ios/**/.vagrant/
57
+ **/ios/**/DerivedData/
58
+ **/ios/**/Icon?
59
+ **/ios/**/Pods/
60
+ **/ios/**/.symlinks/
61
+ **/ios/**/profile
62
+ **/ios/**/xcuserdata
63
+ **/ios/.generated/
64
+ **/ios/Flutter/.last_build_id
65
+ **/ios/Flutter/App.framework
66
+ **/ios/Flutter/Flutter.framework
67
+ **/ios/Flutter/Flutter.podspec
68
+ **/ios/Flutter/Generated.xcconfig
69
+ **/ios/Flutter/ephemeral/
70
+ **/ios/Flutter/Local.xcconfig
71
+ **/ios/Flutter/app.flx
72
+ **/ios/Flutter/app.zip
73
+ **/ios/Flutter/flutter_assets/
74
+ **/ios/Flutter/flutter_export_environment.sh
75
+ **/ios/ServiceDefinitions.json
76
+ **/ios/Runner/GeneratedPluginRegistrant.*
77
+ **/ios/build/
78
+ ios/build/
79
+
80
+ # Android related
81
+ **/android/**/gradle-wrapper.jar
82
+ **/android/.gradle
83
+ **/android/captures/
84
+ **/android/gradlew
85
+ **/android/gradlew.bat
86
+ **/android/local.properties
87
+ **/android/**/GeneratedPluginRegistrant.java
88
+ **/android/key.properties
89
+ *.jks
90
+
91
+ # Web related
92
+ lib/generated_plugin_registrant.dart
93
+
94
+ # Coverage
95
+ coverage/
96
+
97
+ # Exceptions to above rules.
98
+ !**/ios/**/default.mode1v3
99
+ !**/ios/**/default.mode2v3
100
+ !**/ios/**/default.pbxuser
101
+ !**/ios/**/default.perspectivev3
102
+
103
+ # Firebase configuration files
104
+ # Uncomment the following lines if you want to ignore Firebase config files
105
+ # (usually you want to keep them in version control)
106
+ # **/ios/**/GoogleService-Info.plist
107
+ # **/android/**/google-services.json
108
+
109
+ # Environment configuration
110
+ .env
111
+ .env.local
112
+ .env.development
113
+ .env.test
114
+ .env.production
115
+
116
+ # Temporary files
117
+ *.tmp
118
+ *.temp
119
+
120
+ # Editor directories and files
121
+ .vscode/
122
+ !.vscode/extensions.json
123
+ .idea
124
+ *.suo
125
+ *.ntvs*
126
+ *.njsproj
127
+ *.sln
128
+ *.sw?
129
+
130
+ # AI/ML Models (since WeSpeed uses AI models)
131
+ models/*.tflite
132
+ models/*.mlmodel
133
+ models/*.onnx
134
+ *.h5
135
+ *.pb
136
+
137
+ # Local storage and cache
138
+ storage/
139
+ cache/
140
+ temp/
141
+
142
+ # Generated files
143
+ *.g.dart
144
+ *.freezed.dart
145
+ *.mocks.dart
146
+ *.config.dart
147
+ *.gr.dart
148
+
149
+ # Test coverage
150
+ test/coverage_helper_test.dart
151
+
152
+ # Build outputs specific to WeSpeed
153
+ # Already covered by build/ patterns above
154
+
155
+ # Additional cache and temporary directories
156
+ **/.dart_tool/
157
+
158
+ # Lock files (keep pubspec.lock for Flutter, but ignore others that shouldn't be committed)
159
+ # pubspec.lock should be committed in Flutter projects
160
+ # Podfile.lock can be committed or ignored - we'll keep it for consistency
161
+ **/yarn.lock
162
+ **/package-lock.json
163
+
164
+ # Development tools and IDE
165
+ .vscode/settings.json
166
+ .vscode/launch.json
167
+ .vscode/tasks.json
168
+ !.vscode/extensions.json
169
+
170
+ # macOS system files
171
+ .DS_Store
172
+ .AppleDouble
173
+ .LSOverride
174
+ Icon
175
+ ._*
176
+ .DocumentRevisions-V100
177
+ .fseventsd
178
+ .Spotlight-V100
179
+ .TemporaryItems
180
+ .Trashes
181
+ .VolumeIcon.icns
182
+ .com.apple.timemachine.donotpresent
183
+
184
+ # Windows system files
185
+ Thumbs.db
186
+ ehthumbs.db
187
+ Desktop.ini
188
+ $RECYCLE.BIN/
189
+ *.lnk
190
+
191
+ # Xcode additional ignores
192
+ *.hmap
193
+ *.ipa
194
+ *.dSYM.zip
195
+ *.dSYM
196
+
197
+ # Android additional ignores
198
+ *.apk
199
+ *.aab
200
+ *.ap_
201
+ *.class
202
+
203
+ # Firebase emulator
204
+ .firebase/
205
+ firebase-debug.log
206
+ firestore-debug.log
207
+ ui-debug.log
models/GTSRB.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd4aac38f463ad29dddbb33648a04287138c9d9dd84a7d5c40a4709e4aa4da11
3
+ size 6258794