-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more details about the lemmatizer at the new corpus phase. (#317)
* Add more details about the lemmatizer at the new corpus phase. * Add test for lemmatization services * Add more verbosity because tests hang * Remove various screenshots
- Loading branch information
1 parent
63661c3
commit f41d822
Showing
12 changed files
with
832 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from typing import Optional | ||
from dataclasses import dataclass | ||
|
||
|
||
@dataclass | ||
class LemmatizerService: | ||
title: str # e.g. "Old French" | ||
uri: str # Current address | ||
provider: str # e.g. Deucalion at Ecole nationale des Chartes | ||
bibtex: str # Citation Scheme | ||
apa: str # APA equivalent | ||
ui: Optional[str] = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from flask import Flask, request, Response, stream_with_context | ||
app = Flask("fixture") | ||
|
||
|
||
@app.route("/lemma", methods=["POST"]) | ||
def lemmatizing(): | ||
r = Response( | ||
"\n".join( | ||
["token\tlemma"] + | ||
["\t".join([tok, f"{idx}"]) for idx, tok in enumerate(request.form.get("data").split())] | ||
), | ||
200, | ||
headers={ | ||
'Content-Type': 'text/plain; charset=utf-8', | ||
'Access-Control-Allow-Origin': "*" | ||
} | ||
) | ||
return r | ||
|
||
|
||
if __name__ == "__main__": | ||
app.run(port="4567") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.