This repository was archived by the owner on Apr 23, 2025. It is now read-only.
File tree 6 files changed +37
-1
lines changed
6 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
1
+ add_executable (Autoencoder
2
+ Autoencoder1D/main.swift
3
+ Autoencoder2D/main.swift
4
+ VAE1D/main.swift)
5
+ target_link_libraries (Autoencoder PRIVATE
6
+ Datasets
7
+ ModelSupport)
8
+
9
+
10
+ install (TARGETS Autoencoder
11
+ DESTINATION bin)
Original file line number Diff line number Diff line change
1
+ //
2
+ // File.swift
3
+ //
4
+ //
5
+ // Created by Vaibhav Balloli on 13/04/20.
6
+ //
7
+
8
+ import Foundation
Original file line number Diff line number Diff line change @@ -127,4 +127,4 @@ for epoch in 1...epochCount {
127
127
128
128
optimizer. update ( & vae, along: 𝛁model)
129
129
}
130
- }
130
+ }
Original file line number Diff line number Diff line change
1
+ //
2
+ // File.swift
3
+ //
4
+ //
5
+ // Created by Vaibhav Balloli on 29/03/20.
6
+ //
7
+
8
+ import Foundation
Original file line number Diff line number Diff line change
1
+ //
2
+ // File.swift
3
+ //
4
+ //
5
+ // Created by Vaibhav Balloli on 29/03/20.
6
+ //
7
+
8
+ import Foundation
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ set_target_properties(SwiftProtobuf PROPERTIES
68
68
INTERFACE_INCLUDE_DIRECTORIES ${BINARY_DIR} /swift)
69
69
add_dependencies (SwiftProtobuf swift-protobuf-build )
70
70
71
+ add_subdirectory (Autoencoder)
71
72
add_subdirectory (Support)
72
73
add_subdirectory (Batcher)
73
74
add_subdirectory (Datasets)
You can’t perform that action at this time.
0 commit comments