We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d4468 commit e0d5702Copy full SHA for e0d5702
python/paddle/fluid/tests/book/high-level-api/CMakeLists.txt
@@ -10,4 +10,5 @@ add_subdirectory(fit_a_line)
10
add_subdirectory(recognize_digits)
11
add_subdirectory(image_classification)
12
add_subdirectory(understand_sentiment)
13
+add_subdirectory(word2vec)
14
add_subdirectory(recommender_system)
python/paddle/fluid/tests/book/high-level-api/word2vec/CMakeLists.txt
@@ -0,0 +1,7 @@
1
+file(GLOB TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "test_*.py")
2
+string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")
3
+
4
+# default test
5
+foreach(src ${TEST_OPS})
6
+ py_test(${src} SRCS ${src}.py)
7
+endforeach()
0 commit comments