Created
July 18, 2018 04:34
-
-
Save theSage21/8bdbdd3d2cf5e8010653a83691b1f053 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
name = 'tfidf_benchmark' | |
contest = 'marco-search' | |
fpath = 'output' | |
files = {"upload": open(fpath, 'rb')} | |
url = 'https://models.clapresearch.com/api/submit' | |
requests.post(url, data={"user": name, "contest": contest}, | |
files=files) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment