File tree Expand file tree Collapse file tree 5 files changed +56
-4
lines changed
test/TensorFlowNET.Examples Expand file tree Collapse file tree 5 files changed +56
-4
lines changed Original file line number Diff line number Diff line change @@ -60,14 +60,15 @@ Read the docs & book [The Definitive Guide to Tensorflow.NET](https://tensorflow
6060More examples:
6161
6262* [ Hello World] ( test/TensorFlowNET.Examples/HelloWorld.cs )
63-
6463* [ Basic Operations] ( test/TensorFlowNET.Examples/BasicOperations.cs )
6564* [ Image Recognition] ( test/TensorFlowNET.Examples/ImageRecognition.cs )
6665* [ Linear Regression] ( test/TensorFlowNET.Examples/LinearRegression.cs )
67- * [ Text Classification with Movie Review] ( test/TensorFlowNET.Examples/TextClassificationWithMovieReviews.cs )
66+ * [ Text Classification] ( test/TensorFlowNET.Examples/TextClassificationWithMovieReviews.cs )
67+ * [ Naive Bayes Classification] ( test/TensorFlowNET.Examples/NaiveBayesClassifier.cs )
68+ * [ Named Entity Recognition] ( test/TensorFlowNET.Examples/NamedEntityRecognition.cs )
6869
6970Star me or raise issue on [ Github] ( https://github.com/SciSharp/TensorFlow.NET ) feel free.
7071
71- Scan QR code to join TIM group:
72+ Scan QR code to join Tencent TIM group:
7273
7374![ SciSharp STACK] ( docs/TIM.jpg )
Original file line number Diff line number Diff line change @@ -8,4 +8,19 @@ Here are some pre-built TensorFlow binaries you can use for each platform:
88
99https://www.tensorflow.org/install/source_windows
1010pacman -S git patch unzip
11- bazel build --config=opt //tensorflow: libtensorflow .so
11+
12+ 1 . Build static library
13+
14+ ` bazel build --config=opt //tensorflow:libtensorflow.so `
15+
16+ 2 . Build pip package
17+
18+ ` bazel build --config=opt //tensorflow/tools/pip_package:build_pip_package `
19+
20+ 3 . Generate pip installation file
21+
22+ ` bazel-bin\tensorflow\tools\pip_package\build_pip_package C:/tmp/tensorflow_pkg `
23+
24+ 4 . Install from local wheel file.
25+
26+ ` pip install C:/tmp/tensorflow_pkg/tensorflow-1.13.0-cp36-cp36m-win_amd64.whl `
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Text ;
4+ using Tensorflow ;
5+
6+ namespace TensorFlowNET . Examples
7+ {
8+ /// <summary>
9+ /// https://github.com/nicolov/naive_bayes_tensorflow
10+ /// </summary>
11+ public class NaiveBayesClassifier : Python , IExample
12+ {
13+ public void Run ( )
14+ {
15+ throw new NotImplementedException ( ) ;
16+ }
17+ }
18+ }
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Text ;
4+ using Tensorflow ;
5+
6+ namespace TensorFlowNET . Examples
7+ {
8+ /// <summary>
9+ /// https://github.com/guillaumegenthial/tf_ner
10+ /// </summary>
11+ public class NamedEntityRecognition : Python , IExample
12+ {
13+ public void Run ( )
14+ {
15+ throw new NotImplementedException ( ) ;
16+ }
17+ }
18+ }
You can’t perform that action at this time.
0 commit comments