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
For compiling it yourself, see **Compiling** below
26
36
27
37
# Compiling
38
+
Compiling the demo depends on what platform. Currently two have been tested:
39
+
1. Windows 10 x64; MSVC 2017 (v141)
40
+
2. Linux(Ubuntu) x64: GCC 7.5.0
41
+
42
+
## Windows
28
43
Due to being too heavy, some dependencies (include + libs) have been excluded from the repo. You can find them [here](https://drive.google.com/file/d/1ufLQvH-Me2NLmzNBkjcyD13WTyHb35aB/view?usp=sharing) for Windows 64-bit release. Simply put the `deps` folder into the same place as the solution (.sln) file.
29
44
30
-
### For other platforms
31
-
For Windows x64, precompiled libraries are included. For other platforms (such as Ubuntu), you'll have to download and compile from source the following dependencies:
45
+
## Ubuntu
46
+
Tested with compiler `gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)` . If you've got the same one then you should try my precompiled libs (also includes Tensorflow official C API).
47
+
1. Download [Linux dependencies](https://drive.google.com/file/d/1MF4QXq69l8h6nh4h_nKatShobyfbAkiD/view?usp=sharing) and extract the deps folder in the same place as the .pro
For Windows x64 and Ubuntu 18.04 x64 (gcc version 7.5.0), precompiled libraries are included. For other platforms, you'll have to download and compile from source the following dependencies:
For Tensorflow, you need the C API, which you can grab compiled binaries (or view compile instructions) [from here](https://www.tensorflow.org/install/lang_c).
@@ -41,7 +64,7 @@ For Windows x64, precompiled libraries are included. For other platforms (such a
41
64
42
65
1. With MSVC compiler, you'll have to use `/FORCE` as linker command line option, because otherwise the linker throws `LNK2005` due to OpenFST linking; the included project is already set up for that. Not sure about GCC, but you'll probably have to do something similar.
43
66
2. Tensorflow library malfunctions in debug builds, so only build release.
44
-
3. Using MSVC 2017 (v141) compiler.
67
+
3. Using MSVC 2017 (v141) compiler in Windows.
45
68
46
69
## Externals (and thanks)
47
70
@@ -55,3 +78,4 @@ For Windows x64, precompiled libraries are included. For other platforms (such a
0 commit comments