https://github.com/rishanthakumar/google-nlp-demo
Demonstration of Goole Cloud Natural Language API
https://github.com/rishanthakumar/google-nlp-demo
google-cloud-apis natural-language-processing
Last synced: 2 months ago
JSON representation
Demonstration of Goole Cloud Natural Language API
- Host: GitHub
- URL: https://github.com/rishanthakumar/google-nlp-demo
- Owner: Rishanthakumar
- Created: 2017-09-02T15:14:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-19T16:29:13.000Z (over 1 year ago)
- Last Synced: 2025-05-20T01:14:40.683Z (7 months ago)
- Topics: google-cloud-apis, natural-language-processing
- Language: Java
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demonstration of Google Cloud Natural Language API
Google Cloud Natural Language API provides natural language
understanding technologies to developers, including sentiment analysis, entity
recognition, and syntax analysis. This API is part of the larger collection of
Cloud Machine Learning APIs.
These sample Java applications demonstrate how to access the Cloud Natural
Language API.
## Quickstart
- Install [Maven](http://maven.apache.org/).
- Clone this project.
- Get the key json from Google.
- Save it in a json file ( ex: NLPFirstProject.json).
- Get the absolute path of the `NLPFirstProject.json` file, which is available in the project root folder.
- Set the environment variable as follows
```bash
export GOOGLE_APPLICATION_CREDENTIALS=/pathTo/NLPFirstProject.json
```
- Run the main method in the `Sample.java` file.