Skip to content

Commit 3910a58

Browse files
committed
validation script fix
1 parent c7c8ee3 commit 3910a58

File tree

4 files changed

+5
-17
lines changed

4 files changed

+5
-17
lines changed

scripts/apple/validate-ios.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,7 @@ struct ContentView: View {
163163
.padding()
164164
165165
// Display some param values to confirm the framework is working
166-
Text("n_ctx: \(params.n_ctx)")
167-
.font(.body)
168-
169-
Text("n_batch: \(params.n_batch)")
166+
Text("dtw_n_top: \(params.dtw_n_top)")
170167
.font(.body)
171168
172169
Spacer()

scripts/apple/validate-macos.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,7 @@ struct ContentView: View {
158158
.padding()
159159
160160
// Display some param values to confirm the framework is working
161-
Text("n_ctx: \(params.n_ctx)")
162-
.font(.body)
163-
164-
Text("n_batch: \(params.n_batch)")
161+
Text("dtw_n_top: \(params.dtw_n_top)")
165162
.font(.body)
166163
167164
Spacer()

scripts/apple/validate-tvos.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,8 @@ struct ContentView: View {
155155
.padding()
156156
157157
// Display some param values to confirm the framework is working
158-
Text("n_ctx: \(params.n_ctx)")
159-
.font(.title2)
160-
161-
Text("n_batch: \(params.n_batch)")
162-
.font(.title2)
158+
Text("dtw_n_top: \(params.dtw_n_top)")
159+
.font(.body)
163160
164161
Spacer()
165162
}

scripts/apple/validate-visionos.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,7 @@ struct ContentView: View {
151151
.padding()
152152
153153
// Display some param values to confirm the framework is working
154-
Text("n_ctx: \(params.n_ctx)")
155-
.font(.body)
156-
157-
Text("n_batch: \(params.n_batch)")
154+
Text("dtw_n_top: \(params.dtw_n_top)")
158155
.font(.body)
159156
160157
Spacer()

0 commit comments

Comments
 (0)