This repository was archived by the owner on Oct 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathREADME
More file actions
139 lines (78 loc) · 3.68 KB
/
README
File metadata and controls
139 lines (78 loc) · 3.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
================================
AlchemyAPI .NET SDK: version 0.8
================================
This is a .NET (C#) implementation of the AlchemyAPI SDK. Mono and .NET
sections for installation and examples are below. AlchemyAPI requires an
API key for proper usage. You may create an API key at www.alchemyapi.com.
================================
MONO
================================
INSTALLATION
To compile this module, enter the "module" directory and run the "build.sh"
script.
To install this module, copy the AlchemyAPI.dll file into your desired
.NET import directory, or set your MONO_PATH environment variable to point
to the directory containing the compiled AlchemyAPI.dll file.
RUNNING EXAMPLES
Several code examples are included to illustrate using the AlchemyAPI
for named entity extraction, text classification, language identification,
and other tasks.
All code samples are within the "example" directory.
To run these code samples you must first edit the (example/api_key.txt) file,
adding your assigned Orchestr8 API key.
Compiling Code Samples:
1. Run "build.sh" (Compiles code using Mono)
Running Code Samples:
1. Entity Extraction: ./run-test.sh entities.exe
2. Concept Tagging: ./run-test.sh concepts.exe
3. Keyword Extraction: ./run-test.sh keywords.exe
4. Text Categorization: ./run-test.sh categories.exe
5. Language Identification: ./run-test.sh language.exe
6. HTML Text Extraction: ./run-test.sh text_extract.exe
7. HTML Structured Content Scraping: ./run-test.sh constraint_queries.exe
8. Microformats Extraction: ./run-test.sh microformats.exe
9. RSS / ATOM Feed Links Extraction: ./run-test.sh feed_links.exe
10. Sentiment Analysis: ./run-test.sh sentiment.exe
11. Relations Extraction: ./run-test.sh relations.exe
12. Example Parameter Usage: ./run-test.sh parameters.exe
13. Author Extraction: ./run-test.sh author.exe
================================
Windows .NET
================================
INSTALLATION
To compile this module, enter the "module" directory and run the "build"
script.
To install this module, copy the AlchemyAPI.dll file into your desired
.NET import directory. For purposes of running examples, the dll is
copied into the example folder.
RUNNING EXAMPLES
Several code examples are included to illustrate using the AlchemyAPI
for named entity extraction, text classification, language identification,
and other tasks.
All code samples are within the "example" directory.
To run these code samples you must first edit the (example/api_key.txt) file,
adding your assigned Orchestr8 API key.
Compiling Code Samples:
1. Run "build" (Compiles code using .NET)
Running Code Samples:
1. Entity Extraction: entities.exe
2. Concept Tagging: concepts.exe
3. Keyword Extraction: keywords.exe
4. Text Categorization: categories.exe
5. Language Identification: language.exe
6. HTML Text Extraction: text_extract.exe
7. HTML Structured Content Scraping: constraint_queries.exe
8. Microformats Extraction: microformats.exe
9. RSS / ATOM Feed Links Extraction: feed_links.exe
10. Sentiment Analysis: sentiment.exe
11. Relations Extraction: relations.exe
12. Example Parameter Usage: parameters.exe
13. Author Extraction: author.exe
DEPENDENCIES
This module requires a C# compiler such as Mono or Microsoft Visual Studio.NET
The included "build.sh" is for use with the Mono C# compiler only.
COPYRIGHT AND LICENCE
Copyright (C) 2009-2011 Orchestr8, LLC.
This library is free software; you can redistribute it and/or modify
it under the same terms as Mono itself, either Mono version 2.2 or,
at your option, any later version of Mono 2.2 you may have available.