-
Hello, I love this tool and its predecessor, webanno, as a free annotation tool. As I use the functionality locally, because I do not have servers to host the web app, I wonder if there is any get-around to curate separate tsvs which are locally tagged on different computers (under two copied projects). I tried to unzip the project, put two separate tsvs under the folders, and compress the project again, but this get-around does not seem to work. Is there any way to make this possible? Thank you so much again for the great tool! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It is not quite as easy as that. First, when importing a project, INCEpTION would only use the What you could do is, you could enable the remote API and then use it to upload externally created annotations into specific users in your local annotation projects. Normally, the remote API us for use with scripting languages like via the Python pycaprio library - but INCEpTION also includes a minimal Swagger UI which allows to use the remote API directly from a browser. See: https://inception-project.github.io/releases/25.1/docs/admin-guide.html#sect_remote_api |
Beta Was this translation helpful? Give feedback.
It is not quite as easy as that. First, when importing a project, INCEpTION would only use the
.ser
files. Second, if you just copy the.ser
files there, it still won't work because INCEpTION does not know about them. You would also have to update the.json
file that is at the root of the project export to reference these new files. I would not recommended to do that though for this purpose.What you could do is, you could enable the remote API and then use it to upload externally created annotations into specific users in your local annotation projects. Normally, the remote API us for use with scripting languages like via the Python pycaprio library - but INCEpTION also includes a minima…