Skip to content

Commit

Permalink
Comment about solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasGLund99 committed Dec 12, 2023
1 parent 99343b7 commit 0376ffc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def do_triple_construction():
post_data = request.get_data().decode('utf-8')
post_json = json.loads(post_data)

RelationExtractor.begin_extraction(post_json)
entity_type_classification(post_json)
RelationExtractor.begin_extraction(post_json) # Relation Extraction
entity_type_classification(post_json) # Concept Linking

message = "Post request was successfully processed. Relation extraction and concept linking completed."
return jsonify(message=message), 200
Expand Down

0 comments on commit 0376ffc

Please sign in to comment.