We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We should place the error types in a single place and serve it via URL
The text was updated successfully, but these errors were encountered:
Implemented in
GET http://localhost:8080/error_types
http://localhost:8080/error_types
{ "composition_resolution": "Composition resolution", "extraction": "Extraction", "from_table": "From table", "linking": "Linking", "tc_classification": "Tc classification", "value_resolution": "Value resolution" }
Sorry, something went wrong.
fetch error types from the URL #131
f5d5697
To update the error types:
db.tabular.update({error_type: "Linking"}, {"$set": {error_type: "linking"}}, {multi:1}) db.tabular.update({error_type: "Tc classification"}, {"$set": {error_type: "tc_classification"}}, {multi:1}) db.tabular.update({error_type: "Extraction"}, {"$set": {error_type: "extraction"}}, {multi:1}) db.tabular.update({error_type: "Composition resolution"}, {"$set": {error_type: "composition_resolution"}}, {multi:1})
t29mato
No branches or pull requests
We should place the error types in a single place and serve it via URL
The text was updated successfully, but these errors were encountered: