-
Notifications
You must be signed in to change notification settings - Fork 33
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
implementation of get_oracle_summary function #15
Comments
This function generates a summary from summary of 20 users in the dataset. |
The implementation is based on which paragraph of FSCN paper or other paper? |
Chapter 3.1 of this paper: Diverse sequential subset selection for supervised video summarization. In my implementation, the greedy algorithm selects the frame marked by the most users each time. |
After reading Chapter 3.1, I still cannot realize the process. How to get the final summary? |
In my implementation, initialize oracle summary as [0, 0, 0, 0, 0], and then pick the most selected frame (here the third), now the oracle summary will be [0, 0, 1, 0, 0]. Determine if the F-score between oracle summary and user summary increases after adding this frame. If true, continue to select next frame, otherwise it ends. |
Where is FCSN mentioned that they use "Diverse sequential subset selection for supervised video summarization" for generating a summary from summary of users? |
This method is mentioned in supplementary materials of paper Video Summarization with Long Short-term Memory. |
After I read the paragraph, I implement it. Is my understanding identical to yours? But the performance is quite bad... |
Have you print the final F-score between generated oracle summary and user summary? |
Did you mean the parameter "best_fscore"? |
I found that tvsum use avg but summe use max when evaluating. But I do not know why to use this method... |
Could you share the tvsum video on your google drive? |
Is this result on SumMe? It seems close to that in paper! |
Wait a moment, I'm now uploading it... |
Yes, it is summe. |
Thank you |
Here is the link. |
Got it. Thank you very much. |
May be it is a default setting in evaluation? I also think it's strange... |
I agree with your opinion. Let's take this evaluation method for granted. |
I have not read this paper yet, its architecture looks complicated. |
Do you have any idea of FCSN in unsupervised version? |
No... I skip that part when reading the paper... |
Shall we implement that part? |
I will try to implement it after reading that part, but there may be some problems because my computer at home doesn't have a nvidia gpu 😅😅 |
I am counting on you. |
Thanks for this. |
https://github.com/weirme/Video_Summary_using_FCSN/blob/0895cccbb2a488369b1bfc7d2c087b3050250898/make_dataset.py#L70
What is the meaning of this function?
The text was updated successfully, but these errors were encountered: