Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chase-allen-tech/startup-protocols
💛 ✨ Recent web stack startup projects.
https://github.com/chase-allen-tech/startup-protocols
angular flask material-ui python react redux vue
Last synced: 24 days ago
JSON representation
💛 ✨ Recent web stack startup projects.
- Host: GitHub
- URL: https://github.com/chase-allen-tech/startup-protocols
- Owner: chase-allen-tech
- Created: 2022-06-27T20:01:55.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T09:15:54.000Z (over 2 years ago)
- Last Synced: 2024-11-06T04:40:16.472Z (2 months ago)
- Topics: angular, flask, material-ui, python, react, redux, vue
- Language: JavaScript
- Homepage:
- Size: 1.22 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web-based named entity recognition
### Background ####[Named entity recognition](https://en.wikipedia.org/wiki/Named-entity_recognition) (NER) is a very important and long-standing goal of the NLP community. In it, we attempt to identify and categorize "entities" from text so that we can use them for downstream processing such as argument attachment or [event extraction](http://ceur-ws.org/Vol-779/derive2011_submission_1.pdf).
## Task: Build a web application that can take in text and return named entities.
```
Text: The pilot, John Doe, flew over the United States in his airplane.Named entities: John Doe (PERSON), the United States (GPE)
```### Specifications:
* Text will be no longer than 500 words.
* Required named entity types are PERSON, GPE (Geopolitical Entity), LOC (Location), ORG (Organization) - you can add more if you choose
* If no named entities are found, return a "No entities found" message.### Templates:
Because we don't aim to test you on project setup, we have provided templates that you may choose to use if you wish. For the frontend, we've given you templates in [`Vue.js`](https://vuejs.org/), [`React.js`](https://reactjs.org/), and [`Angular`](https://angular.io/). For the backend, we have provided a template in [`Flask`](https://flask.palletsprojects.com/en/2.0.x/).
1. Make sure you have `Node.js` and `npm` installed.
* In case you don't have Node.js or npm installed, refer to the NodeSource blog posts [Installing Node.js Tutorial: Using nvm](https://nodesource.com/blog/installing-node-js-tutorial-using-nvm-on-mac-os-x-and-ubuntu/) (macOS and Ubuntu) or [Installing Node.js Tutorial: Windows](https://nodesource.com/blog/installing-nodejs-tutorial-windows/) (Windows) for instructions.
2. Run `make install FRONTEND=react-frontend BACKEND=flask-backend`
3. Run `make start FRONTEND=react-frontend BACKEND=flask-backend`### Judging criteria:
* **Code quality** - We want to know that you are capable of writing production-level code involving machine learning material.
* **Usability** - The interface should be intuitive to use for the reviewer.
* **Accuracy of model** - The model you choose to use should be able to cover the very basics, like recognizing `the United States` as a GPE. We will not be giving it a detailed accuracy score, we just want to know the model works.
* **Creativity** - This is a catch-all category for whatever else you want to incorporate to show off your skills. Some examples could be implementing more entity types or other linguistic features, creating a more visually appealing interface, creating an option to use a different language, or adding better error handling. This is your time to shine.![Example app](./assets/web_ner_example.png)
> If you have any questions/comments while working on this, please reach out to your contact at ISI.