relation-api / static /index.html
aaljabari's picture
add event arguments and All relations
a2b13e5 verified
raw
history blame contribute delete
831 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Arabic IE System (NER + RE + EAE)</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<h2>Arabic Information Extraction</h2>
<textarea id="text" placeholder="Enter Arabic text..."></textarea>
<div class="buttons">
<button class="ner" onclick="runNER()">Extract NER</button>
<button class="re" onclick="runRE()">Extract Relations</button>
<button class="event" onclick="runEAE()">Extract Event Arguments</button>
<button class="all" onclick="runAllRelations()">Extract All Relations</button>
</div>
<div class="output-box">
<h3>Output</h3>
<pre id="output">Results will appear here...</pre>
</div>
</div>
<script src="/static/script.js"></script>
</body>
</html>