guokan-shang
Repos
1
Followers
26
Following
21

sample code for several design patterns in PHP 8

21189
4176

AMI and ICSI Corpora in JSON format.

15
1

Events

guokan-shang create branch 0.2.0
Created at 21 hours ago
guokan-shang create branch 0.2.0
Created at 21 hours ago
guokan-shang create branch 0.2.0
Created at 21 hours ago
guokan-shang create branch 0.2.0
Created at 1 day ago
zero organization leads to blank interface

Describe the bug The website shows blank interface (empty page) once the user account is associated to 0 organization.

To Reproduce Steps to reproduce the behavior:

  1. Go to "create an account", at this step, a personal organization will also be created.
  2. Login to the main interface: https://alpha.linto.ai/interface/conversations
  3. Go to "organization setting", and delete the created organization (there should be only 1 organization).
  4. See error, empty webpage with zero UI components.

Expected behavior I guess the conversation-manager assumes the user should have at least 1 organization. So the "delete organization" should not be allowed if this is the case.

Created at 2 days ago
Created at 3 days ago
Created at 1 week ago
Created at 2 weeks ago
Created at 2 weeks ago
usage

What I explained above only concerns the NLP related services:

I don't know much about the big picture nor the other docker images regarding STT, but you may find some information here https://doc.linto.ai/, or the other contributors want to intervene this discussion.

Created at 2 months ago
usage

Hi, Among with other elements, I'm trying to understand how NLP core works and what it can do for my needs.

I succeeded in installing it by building the docker (there is an issue though because if I mv .envdefault to .env as suggested it does not build so I kept .endefault

=> ERROR [5/7] COPY .envdefault /app/                                                                                                                                                                                                                                     0.0s
------
 > [5/7] COPY .envdefault /app/:
------
failed to compute cache key: "/.envdefault" not found: not found

Now I have a running core and I went to localhost/doc asu suggested and tested the API with few "articles" I guess you mean paragraphs of text. The result is quite confusing, I have a 200 answer but well it's basically just a copy of my text with no entity. Thus several questions, what is an entity ? what an article is ? what is the NLP core supposed to do ? Do you have any further documentation on this as your documentation website point out directly to this depot ?

Regards

Eli

Created at 2 months ago
usage

Hi, Among with other elements, I'm trying to understand how NLP core works and what it can do for my needs.

I succeeded in installing it by building the docker (there is an issue though because if I mv .envdefault to .env as suggested it does not build so I kept .endefault

=> ERROR [5/7] COPY .envdefault /app/                                                                                                                                                                                                                                     0.0s
------
 > [5/7] COPY .envdefault /app/:
------
failed to compute cache key: "/.envdefault" not found: not found

Now I have a running core and I went to localhost/doc asu suggested and tested the API with few "articles" I guess you mean paragraphs of text. The result is quite confusing, I have a 200 answer but well it's basically just a copy of my text with no entity. Thus several questions, what is an entity ? what an article is ? what is the NLP core supposed to do ? Do you have any further documentation on this as your documentation website point out directly to this depot ?

Regards

Eli

Created at 2 months ago
usage

HI Eli, Thank you for your interest in these NLP services. To response your questions, I suppose you would like to run linto-platform-nlp-named-entity-recognition.

  1. linto-platform-nlp-core is a base docker image that hold some Python dependency packages. It is required in order to build the other services' images, see L1
  2. It is a typo, Instead of mv .envdefault .env, it should be cp .envdefault .env
  3. As pointed here, the system will recognize 4 types of named entities: LOC, MISC, ORG, PER
  4. As of now, article is just a piece of text, which could be a sentence, a paragraph, or a document, the API request format can be found here

Regarding the process, first build the image of linto-platform-nlp-core, no need to run this image. Then follow the instruction to build and run the image of linto-platform-nlp-named-entity-recognition. In the end, test the API on http://localhost/docs with provided request examples. Best, Guokan

Created at 2 months ago