Spaces:
Running
Running
File size: 831 Bytes
8292d89 a2b13e5 8292d89 a2b13e5 8292d89 | 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 | <!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> |