Skip to content
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

Question about training strategy. #16

Closed
Buffyqsf opened this issue Apr 16, 2024 · 2 comments
Closed

Question about training strategy. #16

Buffyqsf opened this issue Apr 16, 2024 · 2 comments

Comments

@Buffyqsf
Copy link

Thanks for your great work. I tried to read your source code, but I'm not sure how you train your Gaussian model.
In the mapping process, after the initialization is complete, it enters a True loop until the end of the process.
That is to say, the training of Gaussian model is iterative as much as possible in the whole process without other constraints?

@Riboha
Copy link
Member

Riboha commented Apr 17, 2024

In our system, the whole system is divided into two processes, mapping and tracking process.
The tracking process loads the dataset, and if the tracking process arrives at the end of the dataset, it terminates all processes.

As you can see in the mapper process code, the following line to the while True.

while True:
if self.end_of_dataset[0]:
break

@Buffyqsf
Copy link
Author

Yeah, I saw this. So the mapping process keeps running throughout the whole reconstruction process.
I later read your source code and found that there are some shared flag that control the running of each process. Amazing work thanks for sharing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants