X Tutup
Skip to content

Commit 4873c2b

Browse files
committed
update doc
1 parent b455626 commit 4873c2b

File tree

5 files changed

+56
-4
lines changed

5 files changed

+56
-4
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,15 @@ Read the docs & book [The Definitive Guide to Tensorflow.NET](https://tensorflow
6060
More 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

6970
Star 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)

docs/TIM.jpg

-7.04 KB
Loading

tensorflowlib/README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,19 @@ Here are some pre-built TensorFlow binaries you can use for each platform:
88

99
https://www.tensorflow.org/install/source_windows
1010
pacman -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`
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}

0 commit comments

Comments
 (0)
X Tutup