We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
reference : stanford cs276 Introduction of Information Retrieval Evaluation part By glee1228@naver.com
5k Dataset Download Link : http://www.robots.ox.ac.uk/~vgg/data/oxbuildings/
루트 디렉토리 이름 : oxbuild_images
train
레이블 없는1503 pics
Set a rank threshold K
Compute % relevant in top K
Ignores documents ranked lower than K
Consider rank position of each relevant doc
Compute Precision@K for each K_1, K_2, … , K_R
Average precision = average of P@K
![MAP_example]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Evaluation 방법
reference : stanford cs276 Introduction of Information Retrieval Evaluation part
By glee1228@naver.com
5k Dataset Download Link : http://www.robots.ox.ac.uk/~vgg/data/oxbuildings/
루트 디렉토리 이름 : oxbuild_images
train
레이블 없는1503 pics
성능 평가 방법
Precision@K
Set a rank threshold K
Compute % relevant in top K
Ignores documents ranked lower than K
Ex: True, False, True, False, True
Prec@3 of 2/3
Prec@4 of 2/4
Prec@5 of 3/5
Mean Average Precision
Consider rank position of each relevant doc
Compute Precision@K for each K_1, K_2, … , K_R
Average precision = average of P@K
Ex: True, False, True, False, True
이 결과의 MAP = 1/3*(1/1+2/3+3/5) :=0.76
queries/rankings
Average Precision example
MAP example
![MAP_example]
The text was updated successfully, but these errors were encountered: