RepGraph is an application tool to equip Natural Language Processing (NLP) Researchers and Engineers with the ability to visualise and analyse graph data that has been processed by one of the MRP frameworks. Demonstration Video - Demonstration Website
Last Updated March 2021
- DMRS
- EDS
- PTG
- UCCA
- AMR
- React
- React visx
- Material UI
- Spring Boot
- Java
The user interface is easy to use and intuitive but for a clear and easy usage guide, refer to the user manual here: User Manual
If you simply want to use the application without the hassle of compiling and running everything locally - you can go here
To use the RepGraph tool is simple. All that is needed are up to date versions of the following prerequisites and Language compilers/interpreters.
- To access source code, simply clone the RepGraph repository to your local file system:
git clone https://github.com/RepGraph/RepGraph.git
- Java
- Maven
- Node Package Manager
- Python 3.8.5
pip install -r requirements.txt
mvn compile
mvn package
java -jar *Location of Jar File*
npm install
npm start
Remember to change the API endpoint in the AppContextProvider file if you want to use a locally hosted backend.
RepGraph
├── src 'contains all source code for the backend and frontend'
| ├── main 'contains source code for the repgraph tool'
| ├── java 'contains all java source code that is used in backend'
| ├── javascript 'contains all javascript code that is used in frontend'
| └── resources 'contains all other resources used such as config and property files'
A big thanks to Jan Buys ([email protected]) for his help and supervision of this project.
- Edan Toledo
- Roy Cohen
- Jaron Cohen
- Jan Buys
Please ensure that you adhere to the following guidelines when making any contributions to this repo:
- First create an issue describing the feature, improvement or bug fix. Issue wording should be clear and easy to understand.
- Create a new branch for the specific issue and prefix your branch name with the issue number followed by a few words describing the issue (e.g.
34-dark-mode
). - Please also ensure all paths are relative and not hard coded
- For all newly created functions, please make sure to include docs
- For all newly created functions, include corresponding unit tests in the
test
folder. - Commit any changes to your branch with an appropriate message.
- Before creating a new merge request, ensure that your commit passes all unit tests.
- Create a new merge request. Your contribution will not be accepted unless:
- all new functions have docs,
- the appropriate unit tests have been created,
- and your code passes all unit tests.
- Once a core member has reviewed and approved with the changes/additions you have made, your branch will be merged with
master
and will be live in the RepGraph tool. - Please make sure old branches are deleted after they have been merged and are no longer in use.