-
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
model is retrained everytime due to dynamic checkpoint names #4612
Comments
you forgot to kill previous action server, so it cannot start the new one |
The problem are the
|
@btotharye @wochinge Right now, at commit 6980a71 on master, when I do
|
@JEM-Mosig I think I know what I might have missed, gimme a few and I'll test fixing this |
@wochinge I don't see anything obvious yet with the change I made I'll look into this further but I didn't even think about testing the interactive piece with this before |
so I feel pretty confident this is not related to my commit if someone wants to double check my work I only changed the info the |
I'm . tackling it 👍 |
@wochinge to be clear you tackled the comment #4612 (comment) but not the overall issue of this thread right? cause i just had a customer run into it as well. AFAIK they have checkpoints but not OR statements, but I can verify that |
it'll happen as well if they have cycles due to checkpoints |
Yes, I only tackled the comment #4612 (comment) . |
hey @wochinge I don't believe there is anything for me to do on this issue right? If so I can probably unassign myself from it. Thanks |
@btotharye i just figured out what tobias meant - he fixed only the part in the comment here: #4612 (comment) |
ok makes sense now so the original issue that this was filed for is what actually needs to be looked at by me then, gotcha. |
so is the original issue not related to the amount of I haven't been able so far to reproduce the action server issue as I think that might have just been related to it still running or something before being stopped. I do agree there is an issue with the fact it runs rasa train again with the rasa interactive even though the model is already there and trained. |
Looks like it happens to me with a basic setup without any
|
Looking into why this happens I've been able to reproduce this with the rasa-demo code as well and you can see the issue there since it has more data and takes a few with the story blocks before you can talk to it. Should have updates shortly on it. Thanks |
@btotharye I unassigned it since you haven't started yet. Feel free to pick it up again :-) |
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. |
@wochinge do checkpoints and ORs exist still in 2.0 stories? wondering if this may have been incidentally fixed |
if they are not, they should be |
they still exist sadly, we don't have a better solution yet |
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. |
related other issue: #7581 |
Rasa version:
Rasa 1.3.8
Commit 39300da
Python version:
3.6.9
Operating system (windows, osx, ...):
osx
Issue:
I trained my model, and running
rasa shell
everything works fine. But once I startrasa interactive
, it starts training a model, even though I didn’t change anything. AfterYour Rasa model is trained and saved at ...
andType a message and press enter (press 'Ctr-c' to exit).
, it continues with processing story blocks, which takes longer than training the model. (I aborted at this point.)If I want do
rasa train
andrasa shell
after that, the action server seems not accessible.Error (including full traceback):
First, no error message, just unexpected behaviour. Here is a screenshot:
Then, If I want do
rasa train
andrasa shell
after that, I get this message:Restarting my machine fixes this issue until I run
rasa interactive
again.Command or request that led to error:
Content of configuration file (config.yml) (if relevant):
Content of domain file (domain.yml) (if relevant):
Enable Squad Definition of Done:
rasa train
will not retrain model if stories have not changed, even if they containOR
steps.The text was updated successfully, but these errors were encountered: