Hmm, does the dataset ner_method_tutku exist? Perhaps you meant ner_method-tutku (note the dash vs. underscore based from your screenshot). You can check if which datasets exist by running:
prodigy stats -l
Whenever you run prodigy db-out, it will show the annotations that were saved. To sanity-check, are you saving your annotations? Perhaps the other texts were already saved in the "named" datasets (i.e., ner_method-XXXX)?
All other annotations (about 60K) are in example table in prodigy db as you can see on the image in my fist message. But I don't know how to reach them to train a model.
I also tried "ner_method-tutku" and it still throws "Can't find 'ner_method-tutku' in database SQLite" error. It isn't in datasets either.
Are you sure that the .db file you're looking at and querying is the same database Prodigy is accessing (in the same location as shown when you run prodigy stats)? Maybe you ended up with two SQLite databases on the cloud machine?
Because it looks like the ner_method dataset, as well as the named session datasets like ner_method-tutku are definitely available and added, so Prodigy should be able to find them if it's accessing the same DB.
Did you customise the path to the Prodigy database in your prodigy.json? In your screenshot from prodigy stats, it shows the Prodigy home directory as /home/datascience_in_tourism/.prodigy (note the . here). So this is where Prodigy would be looking for the prodigy.db by default. So maybe you ended up with 2 databases by accident?
You're right! There exists a ".prodigy" directory and I don't know how it exists. I replace the db file and now prodigy sees the dataset. I really appreciate your help!