-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
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
Bugs with Rasa X UI while uploading new training data #3580
Comments
awesome @psds01 thanks so much for your feedback :D glad you like Rasa X!
|
actually re 3: I guess in future the plan is to group by intent anyways right @abhilasharoy ? |
First approach, let's say I have 10 conversations b/w a bot and a user. Normally, I would combine all user inputs into a single But, let's say I have 1000 of such conversations that I need tagged. To train both nlu and core, I can upload a single conversation, tag its intents and generate a rasa story for that conversation using some custom script. I can do this for all the 1000 files. This will give me 1000 intents files and 1000 stories files but I have to go over each file only once (unlike the first approach, where I go through intents as well as stories). In the first approach, I tag 2000 in total (1000 files at a time, for intent tagging and 1000X1 file at a time for stories creation). In the second approch, I tag 1000X1 file at a time, and from that itself I can generate 1000X1 stories, saving me the manual trouble of making 1000 rasa stories. So for me atleast, it makes sense that I have my intents in order and not grouped by intents. |
And in the future, it would not be grouped by intent by default on this screen (though we do have designs for a "intents" landing page, where this would happen). But discovery can still be super easy because users can filter by intent at will. |
We can avoid this, generating stories and intents differently for a conversation, if my 'nlu.json' file also had two addition fields, namely,
if I had
Then it would save a lot of time while tagging files. I wouldn't need to worry about the order in which intent text appeared on the rasa X UI. I could always get multiple rasa stories from a single This would make it very easy to tag data : intents or stories. |
Regarding the startup delay - do you experience this with a fresh project (after |
Thanks @ricwo for the kind comment. There is no startup delay with |
It makes more sense to open a separate issue for the startup delay as that is separate from the whole training data upload topic. @psds01 do you mind doing that? |
Is this getting any attention? I'm sorry to see #4067 getting resolved without addressing this related issue. |
@rgstephens could you clarify what you mean? That PR is related to addressing the NLU training data page, not related to Rasa X |
Sounds like I mis-read that issue. Nevermind. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Thank you for raising this issue about Rasa X. We decided to stop supporting the Community Edition (free version) of ‘Rasa X’ (see more info here: https://rasa.com/blog/rasa-x-community-edition-changes/). That’s why we’ve closed your issue. We suggest that Rasa Enterprise customers raise the issue with our customer support team if they haven’t done so already. |
Rasa version: 1.0.1
Python version: 3.6.8/ Anaconda
Operating system (windows, osx, ...): Ubuntu
Issue: First of all, great work team Rasa on the project
Rasa X
, this is just beautiful .Rasa X UI bugs/features: I actually have found 4 "things" in UI of Rasa X that are not working as expected.
[More of a Feature Request] Under
Training
->NLU Training
->Training data
. If I have training data loaded there already and try to upload a new training data file, it doesn't ask me for "confirmation" like "Are you sure? You might not have downloaded this tagged data." Should have options like : "Download current data and upload" and "ignore current data and upload".If I upload a new training data file under the same UI as above, the new file content does not show up immediately. I have to refresh the page and then it shows the new training data that I just uploaded. Keeps stale data even after uploading new data.
The order in which the contents of this new training data is displayed is in reverse order. What I mean is if I have content like `{ "rasa_nlu_data":
}` the UI will show the intents like this :
![](https://user-images.githubusercontent.com/49634935/58305043-4eeb4d00-7e14-11e9-9ec4-6edd3e3a09ac.png)
It takes more than 2 minutes for my rasa X UI to load. During this time, I see a file named
rasa.db_journal
getting created and deleted at least a hundred times. (This does not happen withrasa init
)Content of configuration file (config.yml):
Content of domain file (domain.yml) (if used & relevant):
The text was updated successfully, but these errors were encountered: