├── img ├── KDD17.jpg ├── airAI.jpg ├── aliju.jpg ├── CIKM17.jpg ├── IJCAI17.jpg ├── OPEDAC.jpg ├── byte16.png ├── cainiao.jpg ├── elecAI.jpg ├── ensure.jpg ├── medAI_1.jpg ├── mobike.jpg ├── tianchi.png ├── zhihu17.jpg ├── O2Ocoupon.jpg ├── ali_music.jpg ├── earthquake.jpg ├── guangdong.jpg ├── SMP_CUP_2016.png ├── SMP_CUP_2017.png └── guizhou_jiaotong.jpg ├── header.md ├── LICENSE ├── utility.py ├── ReadMe.md ├── solutions.json └── competitions.json /img/KDD17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/KDD17.jpg -------------------------------------------------------------------------------- /img/airAI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/airAI.jpg -------------------------------------------------------------------------------- /img/aliju.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/aliju.jpg -------------------------------------------------------------------------------- /img/CIKM17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/CIKM17.jpg -------------------------------------------------------------------------------- /img/IJCAI17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/IJCAI17.jpg -------------------------------------------------------------------------------- /img/OPEDAC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/OPEDAC.jpg -------------------------------------------------------------------------------- /img/byte16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/byte16.png -------------------------------------------------------------------------------- /img/cainiao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/cainiao.jpg -------------------------------------------------------------------------------- /img/elecAI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/elecAI.jpg -------------------------------------------------------------------------------- /img/ensure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/ensure.jpg -------------------------------------------------------------------------------- /img/medAI_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/medAI_1.jpg -------------------------------------------------------------------------------- /img/mobike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/mobike.jpg -------------------------------------------------------------------------------- /img/tianchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/tianchi.png -------------------------------------------------------------------------------- /img/zhihu17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/zhihu17.jpg -------------------------------------------------------------------------------- /img/O2Ocoupon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/O2Ocoupon.jpg -------------------------------------------------------------------------------- /img/ali_music.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/ali_music.jpg -------------------------------------------------------------------------------- /img/earthquake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/earthquake.jpg -------------------------------------------------------------------------------- /img/guangdong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/guangdong.jpg -------------------------------------------------------------------------------- /img/SMP_CUP_2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/SMP_CUP_2016.png -------------------------------------------------------------------------------- /img/SMP_CUP_2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/SMP_CUP_2017.png -------------------------------------------------------------------------------- /img/guizhou_jiaotong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geekinglcq/CDCS/HEAD/img/guizhou_jiaotong.jpg -------------------------------------------------------------------------------- /header.md: -------------------------------------------------------------------------------- 1 | # CDCS 中国数据竞赛优胜解集锦 2 | Chinese Data Competitions Solutions 3 | 4 | 做这个搜集主要只因为自己之前在做比赛时受到[Kaggle Past Solution](http://ndres.me/kaggle-past-solutions/)的很多帮助,同时发现虽然很多国内竞赛的获奖团队会热心地公开自己的算法甚至是源码,但是往往较为分散,因此萌生了搜集国内数据竞赛优胜团队解法的念头。 5 | 希望能对需要的同学有所帮助,同时,如果有发现没有被收录进去的解决方案,欢迎发起`pull request`,请在本`repo`下执行以下代码后提交`pull request`,不要直接修改`ReadMe.md`: 6 | 7 | ```py 8 | import utility 9 | utility.addCompe() # 新增竞赛 10 | # 接着按提示输入信息 11 | utility.renderToMK() # 修改markdown文件的显示 12 | ``` 13 | 14 | *搬运仅供学习使用,代码/算法的所有权归原作者使用,如有发现侵犯到您的权益,请联系我处理。可以直接在Github提Issue,[发邮件](mailto:lcqgeek@live.com)或者[知乎私信我](https://www.zhihu.com/people/geeking-lcq)* 15 | 16 | 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 lunar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /utility.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | import json 3 | import codecs 4 | from pprint import pprint 5 | 6 | 7 | def addSolutionInfo(id): 8 | """ 9 | Add one solution of a competition 10 | """ 11 | with codecs.open('solutions.json', 'r', encoding='utf-8') as f: 12 | solutions = json.load(f) 13 | if str(id) in solutions.keys(): 14 | print("ID exsited, please try again") 15 | return 16 | algo = input("Enter algorithm: ") 17 | code = input("Enter code: ") 18 | s = {"algorithm": algo, "code": code} 19 | solutions[id] = s 20 | with codecs.open("solutions.json", 'w', encoding='utf-8') as f: 21 | json.dump(solutions, f, indent=4, ensure_ascii=False) 22 | 23 | 24 | def addCompe(): 25 | """ 26 | Add a competition 27 | """ 28 | with codecs.open('competitions.json', 'r', encoding='utf-8') as f: 29 | coms = json.load(f) 30 | with codecs.open('solutions.json', 'r', encoding='utf-8') as f: 31 | solutions = json.load(f) 32 | cid = max([int(i) for i in solutions.keys()]) + 1 33 | newCom = {} 34 | for i in ["name", "link", "type", "platform", "hosts", "ddl"]: 35 | newCom[i] = input("Enter %s: " % (i)) 36 | solution = [] 37 | num = input("How many solutins you find? ") 38 | for i in range(int(num)): 39 | rank = input("Rank: ") 40 | print("The id of this solutions is %d" % (cid)) 41 | addSolutionInfo(cid) 42 | solution.append({"rank": rank, "id": cid}) 43 | cid += 1 44 | 45 | newCom["solutions"] = solution 46 | coms.append(newCom) 47 | with codecs.open("competitions.json", "w", encoding='utf-8') as f: 48 | json.dump(coms, f, indent=4, ensure_ascii=False) 49 | 50 | 51 | def renderToMK(): 52 | data = codecs.open("header.md", 'r', 'utf-8').readlines() 53 | f = codecs.open("ReadMe.md", 'w', 'utf-8') 54 | coms = json.load(codecs.open('competitions.json', encoding='utf-8')) 55 | solutions = json.load(codecs.open('solutions.json', encoding='utf-8')) 56 | for line in data: 57 | f.write(line) 58 | f.write("|名称|类型|截止日期|解决方案|平台|主办方| \n") 59 | f.write("|--|--|--|--|--|--| \n") 60 | for com in sorted(coms, key=lambda x: x['ddl'], reverse=True): 61 | f.write("|[%s](%s)|%s|%s|"%( \ 62 | com['name'], com['link'], com['type'], com['ddl'])) 63 | soStrings = [] 64 | print(com['name']) 65 | for solution in com['solutions']: 66 | st = "第%s名 " % (solution['rank']) 67 | so = solutions[str(solution['id'])] 68 | if so['algorithm'] != "null" and so['algorithm'] != "": 69 | st = "%s [算法](%s)" % (st, so['algorithm']) 70 | if so['code'] != "null" and so['code'] != "": 71 | st = "%s [代码](%s)" % (st, so['code']) 72 | soStrings.append(st) 73 | f.write('
'.join(soStrings)) 74 | f.write("|%s|%s| \n" % (com['platform'], com['hosts'])) 75 | 76 | f.close() 77 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | # CDCS 中国数据竞赛优胜解集锦 2 | Chinese Data Competitions Solutions 3 | 4 | 做这个搜集主要只因为自己之前在做比赛时受到[Kaggle Past Solution](http://ndres.me/kaggle-past-solutions/)的很多帮助,同时发现虽然很多国内竞赛的获奖团队会热心地公开自己的算法甚至是源码,但是往往较为分散,因此萌生了搜集国内数据竞赛优胜团队解法的念头。 5 | 希望能对需要的同学有所帮助,同时,如果有发现没有被收录进去的解决方案,欢迎发起`pull request`,请在本`repo`下执行以下代码后提交`pull request`,不要直接修改`ReadMe.md`: 6 | 7 | ```py 8 | import utility 9 | utility.addCompe() # 新增竞赛 10 | # 接着按提示输入信息 11 | utility.renderToMK() # 修改markdown文件的显示 12 | ``` 13 | 14 | *搬运仅供学习使用,代码/算法的所有权归原作者使用,如有发现侵犯到您的权益,请联系我处理。可以直接在Github提Issue,[发邮件](mailto:lcqgeek@live.com)或者[知乎私信我](https://www.zhihu.com/people/geeking-lcq)* 15 | 16 | 17 | |名称|类型|截止日期|解决方案|平台|主办方| 18 | |--|--|--|--|--|--| 19 | |[津南数字制造算法挑战赛——赛场一:原料企业工艺优化](https://tianchi.aliyun.com/competition/entrance/231695/introduction?spm=5176.12281957.1004.16.38b076d8d9Bkba)|预测、医药化学|20190221|第?名 [算法](https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.3.54587ffcBbKm9R&postId=41822)
第6名 [代码](https://github.com/JonneryR/2019.1-TianChi-Jinnan)
第17名 [算法](https://github.com/taoyafan/jinnan) [代码](https://github.com/taoyafan/jinnan)|tianchi|津南区政府 阿里云| 20 | |[2018云从人头计数](https://www.biendata.com/competition/cloudcup2018/)|CV|20190129|第1名 [算法](https://github.com/ywcmaike/2018--ZJUAI--PyramidBoxDetector) [代码](https://github.com/ywcmaike/2018--ZJUAI--PyramidBoxDetector)|biendata|云从科技| 21 | |[2018年甜橙金融杯大数据建模大赛](http://www.dcjingsai.com/common/cmpt/2018%E5%B9%B4%E7%94%9C%E6%A9%99%E9%87%91%E8%9E%8D%E6%9D%AF%E5%A4%A7%E6%95%B0%E6%8D%AE%E5%BB%BA%E6%A8%A1%E5%A4%A7%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html)|分类、金融|20181228|第6名 [代码](https://github.com/BirderEric/Tiancheng)
第9名 [算法](https://github.com/PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9) [代码](https://github.com/PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9)|DC|甜橙金融| 22 | |[Byte Cup 2018 国际机器学习竞赛](https://biendata.com/forum/index_category/33)|文本生成/摘要/NLP|20181206|第6名 [算法](https://github.com/iwangjian/ByteCup2018) [代码](https://github.com/iwangjian/ByteCup2018)
第23名 [代码](https://github.com/taoyafan/abstractive_summarization)|biendata|字节跳动| 23 | |[瑞金医院MMC人工智能辅助构建知识图谱大赛](https://tianchi.aliyun.com/competition/entrance/231687/introduction)|知识图谱|20181206|第1名 [算法](https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.12.f21e4487aoZEga&postId=48822)
第2名 [算法](https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.9.f21e4487aoZEga&postId=48133) [代码](https://github.com/qrfaction/ruijin-kg-SuperGUTScode)
第4名 [算法](https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.3.f21e4487aoZEga&postId=48593) [代码](https://github.com/megemini/-_megemini-)
第5名 [算法](https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.6.f21e4487aoZEga&postId=48833)|tianchi|阿里/瑞金医院| 24 | |[OGeek算法挑战赛]()|预测|20181203|第9名 [算法](https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.9.651d4cd6uJjKS3&postId=50285)
第7名 [算法](https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.12.651d4cd6uJjKS3&postId=50184)
第2名 [算法](https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.18.651d4cd6uJjKS3&postId=49578) [代码](https://github.com/fanfanda/OGeek-Competition)
第3名 [算法](https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.15.651d4cd6uJjKS3&postId=50016)
第6名 [算法](https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.6.651d4cd6uJjKS3&postId=49880)
第10+名 [算法](https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.3.651d4cd6uJjKS3&postId=50456)|tianchi|OPPO| 25 | |[国能日新光伏功率预测大赛](http://www.dcjingsai.com/common/cmpt/%E5%9B%BD%E8%83%BD%E6%97%A5%E6%96%B0%E5%85%89%E4%BC%8F%E5%8A%9F%E7%8E%87%E9%A2%84%E6%B5%8B%E5%A4%A7%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html)|预测|20181203|第21名 [算法](https://github.com/yyhhlancelot/DC_power_prediction_top21) [代码](https://github.com/yyhhlancelot/DC_power_prediction_top21)
第?名 [代码](https://github.com/Questions1/Calculate_solar_angle)|DC|国能日新| 26 | |[2018开放学术数据挖掘大赛](https://www.biendata.com/competition/scholar2018/)|聚类|20181201|第4名 [算法](https://github.com/geekinglcq/opendac2018) [代码](https://github.com/geekinglcq/opendac2018)|biendata|AMiner.org| 27 | |[面向电信行业存量用户的智能套餐个性化匹配模型](https://www.datafountain.cn/competitions/311/details)|分类预测|20181117|第2名 [代码](https://github.com/PandasCute/2018-CCF-BDCI-China-Unicom-Research-Institute-top2)
第6名 [算法](https://huangqinjian.blog.csdn.net/article/details/88827501) [代码](https://github.com/ZengHaihong/2018_CCF_BDCI_ChinaUnicom_Package_Match_Rank6)|DataFountain|CCF,中国联通| 28 | |[第3届 融360天机智能金融算法挑战赛](http://www.dcjingsai.com/common/cmpt/%E7%AC%AC3%E5%B1%8A%20%E8%9E%8D360%E5%A4%A9%E6%9C%BA%E6%99%BA%E8%83%BD%E9%87%91%E8%9E%8D%E7%AE%97%E6%B3%95%E6%8C%91%E6%88%98%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html)|金融|20181110|第6名 [算法](https://github.com/Questions1/Rong360_2nd) [代码](https://github.com/Questions1/Rong360_2nd)
第5名 [代码](https://github.com/juzstu/2018_rong360_task2)
第?名 [代码](https://github.com/ultimatejoe/rong_360_1)|DC|融360| 29 | |[2018广东工业智造大数据创新大赛——智能算法赛 铝型材表面瑕疵识别](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afYmcuAD&raceId=231682)|CV分类|20181106|第1名 [算法](https://github.com/herbert-chen/tianchi_lvcai) [代码](https://github.com/herbert-chen/tianchi_lvcai)
第2名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38553)
第3名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38548)
第4名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38298)
第5名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38497)
第6名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38560)|tianchi|阿里巴巴 广东省人民政府| 30 | |[2018之江杯全球人工智能大赛 零样本图像目标识别](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afYmcuAD&raceId=231677)|CV 目标检测|20181030|第baseline名 [算法](https://tianchi.aliyun.com/notebook/detail.html?spm=5176.8366600.0.0.c251311ftmNGpN&id=9365)|tianchi|之江实验室、浙江省人工智能发展专家委员会(AI TOP 30)、中国人工智能产业发展联盟(AIIA)| 31 | |[2018之江杯全球人工智能大赛
:视频识别&问答](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afYmcuAD&raceId=231676)|视频识别 问答|20181030|第?名 [代码](https://github.com/Sunnyhoster/TianChi)|tianchi|之江实验室、浙江省人工智能发展专家委员会(AI TOP 30)、中国人工智能产业发展联盟(AIIA)| 32 | |[2018科大讯飞AI营销算法大赛](http://www.dcjingsai.com/common/cmpt/2018%E7%A7%91%E5%A4%A7%E8%AE%AF%E9%A3%9EAI%E8%90%A5%E9%94%80%E7%AE%97%E6%B3%95%E5%A4%A7%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html)|预测|20181025|第4名 [代码](https://github.com/cklient/iflytek)
第30名 [算法](https://github.com/YunaQiu/kedaxunfei2018) [代码](https://github.com/YunaQiu/kedaxunfei2018)|DC|科大讯飞| 33 | |[IEEE ICDM 2018 全球气象AI挑战赛](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231662)|预测 回归|20181010|第1名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fd2Tjg2&raceId=231662&postsId=38113)
第2名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fd2Tjg2&raceId=231662&postsId=38136)
第3名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fJGFK1k&raceId=231662&postsId=38065)
第4名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fJGFK1k&raceId=231662&postsId=38098)
第5名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fJGFK1k&raceId=231662&postsId=38003)|tianchi|ICDM深圳气象局 香港天文台| 34 | |[天池云上智能降雨量预测](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.11165320.5678.1.205d3d78uOUSPA&raceId=231669)|预测|20180921|第1名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=26088)
第2名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=25742)
第3名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=26354)
第4名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=26314)|tianchi|阿里巴巴| 35 | |[雪浪制造AI挑战赛—视觉计算辅助良品检测](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231666)|CV|20180913|第14名 [算法](https://github.com/maozezhong/TIANCHI_XUELANG_AI_2?spm=5176.9876270.0.0.4ed3e44alCnhcx) [代码](https://github.com/maozezhong/TIANCHI_XUELANG_AI_2?spm=5176.9876270.0.0.4ed3e44alCnhcx)|tianchi|江苏省无锡经济开发区 阿里云| 36 | |[阿里巴巴全球调度算法大赛](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231663)|调度 优化|20180907|第18名 [代码](https://github.com/im2608/tianchi_dispatch/tree/dispatch_semifinal?spm=5176.9876270.0.0.7d04e44a0wi1rt)|tianchi|阿里巴巴| 37 | |[FDDC2018金融算法挑战赛01-A股上市公司季度营收预测](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231660)|预测|20180824|第1名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12435)
第2名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12505)
第3名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12714)
第4名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12040)
第答辩视频名 [算法](https://tianchi.aliyun.com/forum/videoStream.html#postsId=10397)
第30名 [代码](https://github.com/jianfeng123/financial-competition)
第?名 [算法](https://github.com/hyifan/FDDC) [代码](https://github.com/hyifan/FDDC)|tianchi|中国证券投资基金业协会、华夏基金、易方达、通联数据、阿里云| 38 | |[FDDC2018金融算法挑战赛02-A股上市公司公告信息抽取](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231659)|NLP 信息抽取|20180824|第1名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.b067311fi1crEX&raceId=231659&postsId=11219)
第3名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.b067311fi1crEX&raceId=231659&postsId=12534)
第4名 [算法](https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.b067311fi1crEX&raceId=231659&postsId=11404)|tianchi|中国证券投资基金业协会、华夏基金、易方达、通联数据、阿里云| 39 | |[2018 搜狐内容识别算法大赛](https://biendata.com/competition/sohu2018/)|分类|20180319|第1名 [算法](https://github.com/zhanzecheng/SOHU_competition) [代码](https://github.com/zhanzecheng/SOHU_competition)|biendata|搜狐、CCF| 40 | |[广东政务数据创新大赛—智能算法赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231615&_lang=en_US)|分类|20171121|第1名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231615&postsId=3483)
第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231615&postsId=3490)
第3名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231615&postsId=3480)|tianchi|广东省人民政府| 41 | |[2017 开放学术精准画像大赛](https://biendata.com/competition/scholar/winners/)|画像/分类/预测|20171009|第1名 [算法](https://pan.baidu.com/s/1eRT3rKQ)
第2名 [算法](https://pan.baidu.com/s/1pLLZ9xD) [代码](https://github.com/geekinglcq/aca)
第3名 [算法](https://pan.baidu.com/s/1bpfKIkv)|biendata|微软/清华大学/中国工程院| 42 | |[余震捕捉AI大赛](https://tianchi.aliyun.com/competition/information.htm?raceId=231606)|预测/分类|20170927|第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231606&postsId=3101)|tianchi|中国地震局/阿里云| 43 | |[天池医疗AI大赛[第一季]:肺部结节智能诊断](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231601)|预测|20170926|第1名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.4abb601fEPaHKP&raceId=231601&postsId=2947)
第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.4abb601fEPaHKP&raceId=231601&postsId=2966)
第3名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.4abb601fEPaHKP&raceId=231601&postsId=2893)|tianchi|阿里云/intel/零氪科技| 44 | |[2017 摩拜杯算法挑战赛](https://biendata.com/competition/mobike/)|预测|20170925|第1名 [算法](https://pan.baidu.com/s/1mixJmpM)
第2名 [算法](https://pan.baidu.com/s/1eS3vfNW)
第3名 [算法](https://pan.baidu.com/s/1nuQ7oiX)|biendata|中国人工智能学会/摩拜| 45 | |[全国社会保险大数据应用创新大赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231607)|分类/开放|20170918|第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231607&postsId=3026)
第3名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231607&postsId=2981)
第4名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231607&postsId=2982)|tianchi|中国社会保险学会/阿里云/数梦工场| 46 | |[智慧交通预测挑战赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231598)|预测|20170915|第1名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231598&postsId=2748)
第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231598&postsId=2749)
第3名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231598&postsId=2710)|tianchi|贵州省大数据发展管理局/贵州省交通运输局| 47 | |[智慧航空AI大赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231609)|分类/优化|20170905|第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231609&postsId=3045)
第3名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231609&postsId=3056&_is_login_redirect=true&accounttraceid=d22ab010-9088-4077-893f-9ef2766d14c4)|tianchi|厦门航空/阿里云| 48 | |[2017 知乎看山杯机器学习挑战赛](https://biendata.com/competition/zhihu/)|分类/标签|20170815|第1名 [算法](https://pan.baidu.com/s/1gfJ9XmF) [代码](https://pan.baidu.com/s/1gfJ9XmF)
第2名 [算法](https://pan.baidu.com/s/1gfJ9XmF) [代码](https://pan.baidu.com/s/1gfJ9XmF)
第3名 [算法](https://pan.baidu.com/s/1gfJ9XmF) [代码](https://pan.baidu.com/s/1gfJ9XmF)|biendata|中国人工智能协会/知乎| 49 | |[SMP CUP CSDN用户画像 2017](https://biendata.com/competition/smpcup2017/)|画像|20170811|第6名 [代码](https://github.com/LuJunru/SMPCUP2017_ELP)|biendata|SMP/CSDN| 50 | |[大航杯“智造扬中”电力AI大赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231602)|预测|20170720|第1名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231602&postsId=2105)
第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231602&postsId=2079)
第3名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231602&postsId=2128)|tianchi|江苏省扬中市高新技术产业开发区/大航集团/阿里云| 51 | |[CIKM AnalytiCup 2017](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231596)|预测|20170702|第1名 [算法](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231596)|tianchi|深圳市气象局/阿里云| 52 | |[KDD CUP 2017](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231597)|预测|20170601|第1名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231597&postsId=2449)
第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231597&postsId=2445)
第3名 [算法](https://github.com/12190143/Black-Swan) [代码](https://github.com/12190143/Black-Swan)
第4名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231597&postsId=2448)|tianchi|阿里云/KDD| 53 | |[阿里聚安全算法挑战赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231592)|分类|20170316|第37名 [算法](https://github.com/destinyJLU/alibaba_safe_code) [代码](https://github.com/destinyJLU/alibaba_safe_code)|tianchi|阿里聚安全| 54 | |[IJCAI-17 口碑商家客流量预测](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231591)|预测|20170314|第1名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.47c91418CdEkE1&raceId=231591&postsId=2409) [代码](https://gitlab.tianchi.aliyun.com/race231591/gitlab-u2323)
第2名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231591&postsId=2454)
第3名 [算法](https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231591&postsId=2453)|tianchi|蚂蚁金服| 55 | |[2016 CCF大数据与计算智能大赛——O2O优惠券使用预测](https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.333.6.XHo01D&raceId=231587)|预测|20161216|第1名 [算法](https://github.com/wepe/O2O-Coupon-Usage-Forecast) [代码](https://github.com/wepe/O2O-Coupon-Usage-Forecast)|tianchi|蚂蚁金服/CCF| 56 | |[生活大实惠:O2O优惠券使用预测](https://tianchi.aliyun.com/competition/rankingList.htm?raceId=231587)|预测|20161216|第1名 [算法](https://github.com/wepe/O2O-Coupon-Usage-Forecast) [代码](https://github.com/wepe/O2O-Coupon-Usage-Forecast)
第16名 [算法](https://github.com/InsaneLife/O2O-Predict-Coupon-Usage) [代码](https://github.com/InsaneLife/O2O-Predict-Coupon-Usage)|tianchi|蚂蚁金服| 57 | |[【广东大赛】机场客流量的时空分布预测](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231588)|预测|20161128|第441名 [算法](https://github.com/liangyaorong/2016TianChi_AirportWifiPredict) [代码](https://github.com/liangyaorong/2016TianChi_AirportWifiPredict)|tianchi|广东省人民政府| 58 | |[2016 Byte Cup国际机器学习竞赛](https://biendata.com/competition/bytecup2016/winners/)|预测|20161120|第2名 [算法](https://github.com/qqgeogor/bytecup_solution) [代码](https://github.com/qqgeogor/bytecup_solution)|biendata|今日头条/中国人工智能协会| 59 | |[SMP CUP 2016](https://biendata.com/competition/smpcup2016/)|画像/分类|20160921|第2名 [算法](https://github.com/liyumeng/SmpCup2016) [代码](https://github.com/liyumeng/SmpCup2016)
第5名 [算法](https://github.com/scaufengyang/smpcup2016) [代码](https://github.com/scaufengyang/smpcup2016)|biendata|SMP/新浪微博| 60 | |[阿里音乐流行趋势预测大赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=231531)|预测|20160715|第6名 [算法](http://www.wangqingbaidu.cn/article/alimusic1471161131.html) [代码](https://github.com/wangqingbaidu/aliMusic)|tianchi|阿里音乐| 61 | |[菜鸟-需求预测与分仓规划](https://tianchi.aliyun.com/competition/information.htm?spm=0.0.0.0.sUOLE8&raceId=231530&_lang=zh_CN)|预测|20160615|第6名 [算法](https://github.com/wepe/CaiNiao-DemandForecast-StoragePlaning) [代码](https://github.com/wepe/CaiNiao-DemandForecast-StoragePlaning)
第10名 [算法](https://github.com/xing89qs/TianChi_CaiNiao_Season2) [代码](https://github.com/xing89qs/TianChi_CaiNiao_Season2)|tianchi|菜鸟网络| 62 | |[新浪微博互动预测大赛](https://tianchi.aliyun.com/competition/introduction.htm?raceId=5)|预测|20151105|第?名 [算法](https://zhuanlan.zhihu.com/p/23845169) [代码](https://github.com/deeptimhe/tianchi-weibo-pred)|tianchi|新浪微博| 63 | |[2018 搜狐内容识别算法大赛](https://biendata.com/competition/sohu2018/)|分类|20180319|第1名 [算法](https://github.com/zhanzecheng/SOHU_competition) [代码](https://github.com/zhanzecheng/SOHU_competition)|biendata|搜狐/中国计算机协会| 64 | -------------------------------------------------------------------------------- /solutions.json: -------------------------------------------------------------------------------- 1 | { 2 | "12": { 3 | "code": "https://github.com/qqgeogor/bytecup_solution", 4 | "algorithm": "https://github.com/qqgeogor/bytecup_solution" 5 | }, 6 | "28": { 7 | "code": "null", 8 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231607&postsId=2982" 9 | }, 10 | "31": { 11 | "code": "null", 12 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231598&postsId=2710" 13 | }, 14 | "64": { 15 | "code": "", 16 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=25742" 17 | }, 18 | "68": { 19 | "code": "https://github.com/im2608/tianchi_dispatch/tree/dispatch_semifinal?spm=5176.9876270.0.0.7d04e44a0wi1rt", 20 | "algorithm": "" 21 | }, 22 | "10": { 23 | "code": "https://pan.baidu.com/s/1gfJ9XmF", 24 | "algorithm": "https://pan.baidu.com/s/1gfJ9XmF" 25 | }, 26 | "30": { 27 | "code": "null", 28 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231598&postsId=2749" 29 | }, 30 | "32": { 31 | "code": "null", 32 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231609&postsId=3045" 33 | }, 34 | "57": { 35 | "code": "https://github.com/Sunnyhoster/TianChi", 36 | "algorithm": "" 37 | }, 38 | "73": { 39 | "code": "", 40 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.b067311fi1crEX&raceId=231659&postsId=11219" 41 | }, 42 | "15": { 43 | "code": "https://github.com/wepe/O2O-Coupon-Usage-Forecast", 44 | "algorithm": "https://github.com/wepe/O2O-Coupon-Usage-Forecast" 45 | }, 46 | "33": { 47 | "code": "null", 48 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231609&postsId=3056&_is_login_redirect=true&accounttraceid=d22ab010-9088-4077-893f-9ef2766d14c4" 49 | }, 50 | "56": { 51 | "code": "", 52 | "algorithm": "https://tianchi.aliyun.com/notebook/detail.html?spm=5176.8366600.0.0.c251311ftmNGpN&id=9365" 53 | }, 54 | "1": { 55 | "code": "null", 56 | "algorithm": "https://pan.baidu.com/s/1eRT3rKQ" 57 | }, 58 | "53": { 59 | "code": "", 60 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38298" 61 | }, 62 | "61": { 63 | "code": "", 64 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fJGFK1k&raceId=231662&postsId=38098" 65 | }, 66 | "59": { 67 | "code": "", 68 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fd2Tjg2&raceId=231662&postsId=38136" 69 | }, 70 | "65": { 71 | "code": "", 72 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=26354" 73 | }, 74 | "5": { 75 | "code": "null", 76 | "algorithm": "https://pan.baidu.com/s/1eS3vfNW" 77 | }, 78 | "18": { 79 | "code": "https://github.com/xing89qs/TianChi_CaiNiao_Season2", 80 | "algorithm": "https://github.com/xing89qs/TianChi_CaiNiao_Season2" 81 | }, 82 | "66": { 83 | "code": "", 84 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=26314" 85 | }, 86 | "13": { 87 | "code": "https://github.com/liyumeng/SmpCup2016", 88 | "algorithm": "https://github.com/liyumeng/SmpCup2016" 89 | }, 90 | "42": { 91 | "code": "null", 92 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231597&postsId=2448" 93 | }, 94 | "4": { 95 | "code": "null", 96 | "algorithm": "https://pan.baidu.com/s/1mixJmpM" 97 | }, 98 | "44": { 99 | "code": "null", 100 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231591&postsId=2454" 101 | }, 102 | "35": { 103 | "code": "null", 104 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231602&postsId=2079" 105 | }, 106 | "48": { 107 | "code": "https://github.com/liangyaorong/2016TianChi_AirportWifiPredict", 108 | "algorithm": "https://github.com/liangyaorong/2016TianChi_AirportWifiPredict" 109 | }, 110 | "21": { 111 | "code": "null", 112 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231615&postsId=3480" 113 | }, 114 | "24": { 115 | "code": "null", 116 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.4abb601fEPaHKP&raceId=231601&postsId=2966" 117 | }, 118 | "62": { 119 | "code": "", 120 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fJGFK1k&raceId=231662&postsId=38003" 121 | }, 122 | "51": { 123 | "code": "", 124 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38553" 125 | }, 126 | "6": { 127 | "code": "null", 128 | "algorithm": "https://pan.baidu.com/s/1nuQ7oiX" 129 | }, 130 | "67": { 131 | "code": "https://github.com/maozezhong/TIANCHI_XUELANG_AI_2?spm=5176.9876270.0.0.4ed3e44alCnhcx", 132 | "algorithm": "https://github.com/maozezhong/TIANCHI_XUELANG_AI_2?spm=5176.9876270.0.0.4ed3e44alCnhcx" 133 | }, 134 | "25": { 135 | "code": "null", 136 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.4abb601fEPaHKP&raceId=231601&postsId=2893" 137 | }, 138 | "8": { 139 | "code": "https://github.com/LuJunru/SMPCUP2017_ELP", 140 | "algorithm": "null" 141 | }, 142 | "22": { 143 | "code": "null", 144 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231606&postsId=3101" 145 | }, 146 | "71": { 147 | "code": "", 148 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12714" 149 | }, 150 | "20": { 151 | "code": "null", 152 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231615&postsId=3490" 153 | }, 154 | "2": { 155 | "code": "https://github.com/geekinglcq/aca", 156 | "algorithm": "https://pan.baidu.com/s/1pLLZ9xD" 157 | }, 158 | "69": { 159 | "code": "", 160 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12435" 161 | }, 162 | "3": { 163 | "code": "null", 164 | "algorithm": "https://pan.baidu.com/s/1bpfKIkv" 165 | }, 166 | "72": { 167 | "code": "", 168 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12040" 169 | }, 170 | "55": { 171 | "code": "", 172 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38560" 173 | }, 174 | "14": { 175 | "code": "https://github.com/scaufengyang/smpcup2016", 176 | "algorithm": "https://github.com/scaufengyang/smpcup2016" 177 | }, 178 | "11": { 179 | "code": "https://pan.baidu.com/s/1gfJ9XmF", 180 | "algorithm": "https://pan.baidu.com/s/1gfJ9XmF" 181 | }, 182 | "54": { 183 | "code": "", 184 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38497" 185 | }, 186 | "75": { 187 | "code": "", 188 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.b067311fi1crEX&raceId=231659&postsId=11404" 189 | }, 190 | "52": { 191 | "code": "", 192 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.62b7311frbYAH8&raceId=231682&postsId=38548" 193 | }, 194 | "37": { 195 | "code": "null", 196 | "algorithm": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231596" 197 | }, 198 | "29": { 199 | "code": "null", 200 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231598&postsId=2748" 201 | }, 202 | "17": { 203 | "code": "https://github.com/wepe/CaiNiao-DemandForecast-StoragePlaning", 204 | "algorithm": "https://github.com/wepe/CaiNiao-DemandForecast-StoragePlaning" 205 | }, 206 | "63": { 207 | "code": "", 208 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.55b3311fsLMq7y&raceId=231669&postsId=26088" 209 | }, 210 | "39": { 211 | "code": "null", 212 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231597&postsId=2449" 213 | }, 214 | "50": { 215 | "code": "https://github.com/herbert-chen/tianchi_lvcai", 216 | "algorithm": "https://github.com/herbert-chen/tianchi_lvcai" 217 | }, 218 | "26": { 219 | "code": "null", 220 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231607&postsId=3026" 221 | }, 222 | "74": { 223 | "code": "", 224 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.b067311fi1crEX&raceId=231659&postsId=12534" 225 | }, 226 | "23": { 227 | "code": "null", 228 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.4abb601fEPaHKP&raceId=231601&postsId=2947" 229 | }, 230 | "40": { 231 | "code": "null", 232 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231597&postsId=2445" 233 | }, 234 | "46": { 235 | "code": "https://github.com/wepe/O2O-Coupon-Usage-Forecast", 236 | "algorithm": "https://github.com/wepe/O2O-Coupon-Usage-Forecast" 237 | }, 238 | "19": { 239 | "code": "null", 240 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231615&postsId=3483" 241 | }, 242 | "43": { 243 | "code": "https://gitlab.tianchi.aliyun.com/race231591/gitlab-u2323", 244 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?spm=5176.8366600.0.0.47c91418CdEkE1&raceId=231591&postsId=2409" 245 | }, 246 | "58": { 247 | "code": "", 248 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fd2Tjg2&raceId=231662&postsId=38113" 249 | }, 250 | "47": { 251 | "code": "https://github.com/InsaneLife/O2O-Predict-Coupon-Usage", 252 | "algorithm": "https://github.com/InsaneLife/O2O-Predict-Coupon-Usage" 253 | }, 254 | "34": { 255 | "code": "null", 256 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231602&postsId=2105" 257 | }, 258 | "45": { 259 | "code": "null", 260 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231591&postsId=2453" 261 | }, 262 | "70": { 263 | "code": "", 264 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.370d311fQ3K78Z&raceId=231660&postsId=12505" 265 | }, 266 | "41": { 267 | "code": "https://github.com/12190143/Black-Swan", 268 | "algorithm": "https://github.com/12190143/Black-Swan" 269 | }, 270 | "16": { 271 | "code": "https://github.com/wangqingbaidu/aliMusic", 272 | "algorithm": "http://www.wangqingbaidu.cn/article/alimusic1471161131.html" 273 | }, 274 | "60": { 275 | "code": "", 276 | "algorithm": "https://tianchi.aliyun.com/forum/new_articleDetail.html?spm=5176.8366600.0.0.76d4311fJGFK1k&raceId=231662&postsId=38065" 277 | }, 278 | "9": { 279 | "code": "https://pan.baidu.com/s/1gfJ9XmF", 280 | "algorithm": "https://pan.baidu.com/s/1gfJ9XmF" 281 | }, 282 | "36": { 283 | "code": "null", 284 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231602&postsId=2128" 285 | }, 286 | "38": { 287 | "code": "https://github.com/destinyJLU/alibaba_safe_code", 288 | "algorithm": "https://github.com/destinyJLU/alibaba_safe_code" 289 | }, 290 | "49": { 291 | "code": "https://github.com/deeptimhe/tianchi-weibo-pred", 292 | "algorithm": "https://zhuanlan.zhihu.com/p/23845169" 293 | }, 294 | "27": { 295 | "code": "null", 296 | "algorithm": "https://tianchi.aliyun.com/competition/new_articleDetail.html?raceId=231607&postsId=2981" 297 | }, 298 | "76": { 299 | "algorithm": "https://tianchi.aliyun.com/forum/videoStream.html#postsId=10397", 300 | "code": "" 301 | }, 302 | "77": { 303 | "algorithm": "", 304 | "code": "https://github.com/jianfeng123/financial-competition" 305 | }, 306 | "78": { 307 | "algorithm": "https://github.com/hyifan/FDDC", 308 | "code": "https://github.com/hyifan/FDDC" 309 | }, 310 | "79": { 311 | "algorithm": "https://github.com/iwangjian/ByteCup2018", 312 | "code": "https://github.com/iwangjian/ByteCup2018" 313 | }, 314 | "80": { 315 | "algorithm": "", 316 | "code": "https://github.com/taoyafan/abstractive_summarization" 317 | }, 318 | "81": { 319 | "algorithm": "https://github.com/geekinglcq/opendac2018", 320 | "code": "https://github.com/geekinglcq/opendac2018" 321 | }, 322 | "82": { 323 | "algorithm": "https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.9.651d4cd6uJjKS3&postId=50285", 324 | "code": "" 325 | }, 326 | "83": { 327 | "algorithm": "https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.12.651d4cd6uJjKS3&postId=50184", 328 | "code": "" 329 | }, 330 | "84": { 331 | "algorithm": "https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.18.651d4cd6uJjKS3&postId=49578", 332 | "code": "https://github.com/fanfanda/OGeek-Competition" 333 | }, 334 | "85": { 335 | "algorithm": "https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.15.651d4cd6uJjKS3&postId=50016", 336 | "code": "" 337 | }, 338 | "86": { 339 | "algorithm": "https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.6.651d4cd6uJjKS3&postId=49880", 340 | "code": "" 341 | }, 342 | "87": { 343 | "algorithm": "https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.3.651d4cd6uJjKS3&postId=50456", 344 | "code": "" 345 | }, 346 | "88": { 347 | "algorithm": "https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.12.f21e4487aoZEga&postId=48822", 348 | "code": "" 349 | }, 350 | "89": { 351 | "algorithm": "https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.9.f21e4487aoZEga&postId=48133", 352 | "code": "https://github.com/qrfaction/ruijin-kg-SuperGUTScode" 353 | }, 354 | "90": { 355 | "algorithm": "https://tianchi.aliyun.com/forum/postDetail?spm=5176.12586969.1002.3.f21e4487aoZEga&postId=48593", 356 | "code": "https://github.com/megemini/-_megemini-" 357 | }, 358 | "91": { 359 | "algorithm": "https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.6.f21e4487aoZEga&postId=48833", 360 | "code": "" 361 | }, 362 | "92": { 363 | "algorithm": "https://tianchi.aliyun.com/notebook-ai/detail?spm=5176.12586969.1002.3.54587ffcBbKm9R&postId=41822", 364 | "code": "" 365 | }, 366 | "93": { 367 | "algorithm": "", 368 | "code": "https://github.com/JonneryR/2019.1-TianChi-Jinnan" 369 | }, 370 | "94": { 371 | "algorithm": "https://github.com/taoyafan/jinnan", 372 | "code": "https://github.com/taoyafan/jinnan" 373 | }, 374 | "95": { 375 | "algorithm": "https://github.com/ywcmaike/2018--ZJUAI--PyramidBoxDetector", 376 | "code": "https://github.com/ywcmaike/2018--ZJUAI--PyramidBoxDetector" 377 | }, 378 | "96": { 379 | "algorithm": "", 380 | "code": "https://github.com/BirderEric/Tiancheng" 381 | }, 382 | "97": { 383 | "algorithm": "https://github.com/PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9", 384 | "code": "https://github.com/PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9" 385 | }, 386 | "98": { 387 | "algorithm": "https://github.com/yyhhlancelot/DC_power_prediction_top21", 388 | "code": "https://github.com/yyhhlancelot/DC_power_prediction_top21" 389 | }, 390 | "99": { 391 | "algorithm": "", 392 | "code": "https://github.com/Questions1/Calculate_solar_angle" 393 | }, 394 | "100": { 395 | "algorithm": "https://github.com/Questions1/Rong360_2nd", 396 | "code": "https://github.com/Questions1/Rong360_2nd" 397 | }, 398 | "101": { 399 | "algorithm": "", 400 | "code": "https://github.com/juzstu/2018_rong360_task2" 401 | }, 402 | "102": { 403 | "algorithm": "", 404 | "code": "https://github.com/ultimatejoe/rong_360_1" 405 | }, 406 | "103": { 407 | "algorithm": "", 408 | "code": "https://github.com/cklient/iflytek" 409 | }, 410 | "104": { 411 | "algorithm": "https://github.com/YunaQiu/kedaxunfei2018", 412 | "code": "https://github.com/YunaQiu/kedaxunfei2018" 413 | }, 414 | "105": { 415 | "algorithm": "", 416 | "code": "https://github.com/PandasCute/2018-CCF-BDCI-China-Unicom-Research-Institute-top2" 417 | }, 418 | "106": { 419 | "algorithm": "https://huangqinjian.blog.csdn.net/article/details/88827501", 420 | "code": "https://github.com/ZengHaihong/2018_CCF_BDCI_ChinaUnicom_Package_Match_Rank6" 421 | }, 422 | "107": { 423 | "algorithm": "https://github.com/zhanzecheng/SOHU_competition", 424 | "code": "https://github.com/zhanzecheng/SOHU_competition" 425 | } 426 | } -------------------------------------------------------------------------------- /competitions.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "hosts": "微软/清华大学/中国工程院", 4 | "link": "https://biendata.com/competition/scholar/winners/", 5 | "ddl": "20171009", 6 | "type": "画像/分类/预测", 7 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/OPEDAC.jpg?raw=true", 8 | "platform": "biendata", 9 | "solutions": [ 10 | { 11 | "id": 1, 12 | "rank": 1 13 | }, 14 | { 15 | "id": 2, 16 | "rank": 2 17 | }, 18 | { 19 | "id": 3, 20 | "rank": 3 21 | } 22 | ], 23 | "name": "2017 开放学术精准画像大赛" 24 | }, 25 | { 26 | "hosts": "中国人工智能学会/摩拜", 27 | "link": "https://biendata.com/competition/mobike/", 28 | "ddl": "20170925", 29 | "type": "预测", 30 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/mobike.jpg?raw=true", 31 | "platform": "biendata", 32 | "solutions": [ 33 | { 34 | "id": 4, 35 | "rank": 1 36 | }, 37 | { 38 | "id": 5, 39 | "rank": 2 40 | }, 41 | { 42 | "id": 6, 43 | "rank": 3 44 | } 45 | ], 46 | "name": "2017 摩拜杯算法挑战赛" 47 | }, 48 | { 49 | "hosts": "SMP/CSDN", 50 | "link": "https://biendata.com/competition/smpcup2017/", 51 | "ddl": "20170811", 52 | "type": "画像", 53 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/SMP_CUP_2017.png?raw=true", 54 | "platform": "biendata", 55 | "solutions": [ 56 | { 57 | "id": 8, 58 | "rank": "6" 59 | } 60 | ], 61 | "name": "SMP CUP CSDN用户画像 2017" 62 | }, 63 | { 64 | "hosts": "中国人工智能协会/知乎", 65 | "link": "https://biendata.com/competition/zhihu/", 66 | "ddl": "20170815", 67 | "type": "分类/标签", 68 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/zhihu17.jpg?raw=true", 69 | "platform": "biendata", 70 | "solutions": [ 71 | { 72 | "id": 9, 73 | "rank": "1" 74 | }, 75 | { 76 | "id": 10, 77 | "rank": "2" 78 | }, 79 | { 80 | "id": 11, 81 | "rank": "3" 82 | } 83 | ], 84 | "name": "2017 知乎看山杯机器学习挑战赛" 85 | }, 86 | { 87 | "hosts": "今日头条/中国人工智能协会", 88 | "link": "https://biendata.com/competition/bytecup2016/winners/", 89 | "ddl": "20161120", 90 | "type": "预测", 91 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/byte16.png?raw=true", 92 | "platform": "biendata", 93 | "solutions": [ 94 | { 95 | "id": 12, 96 | "rank": "2" 97 | } 98 | ], 99 | "name": "2016 Byte Cup国际机器学习竞赛" 100 | }, 101 | { 102 | "hosts": "SMP/新浪微博", 103 | "link": "https://biendata.com/competition/smpcup2016/", 104 | "ddl": "20160921", 105 | "type": "画像/分类", 106 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/SMP_CUP_2016.png?raw=true", 107 | "platform": "biendata", 108 | "solutions": [ 109 | { 110 | "id": 13, 111 | "rank": "2" 112 | }, 113 | { 114 | "id": 14, 115 | "rank": "5" 116 | } 117 | ], 118 | "name": "SMP CUP 2016" 119 | }, 120 | { 121 | "hosts": "蚂蚁金服/CCF", 122 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.333.6.XHo01D&raceId=231587", 123 | "ddl": "20161216", 124 | "type": "预测", 125 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/tianchi.png?raw=true", 126 | "platform": "tianchi", 127 | "solutions": [ 128 | { 129 | "id": 15, 130 | "rank": "1" 131 | } 132 | ], 133 | "name": "2016 CCF大数据与计算智能大赛——O2O优惠券使用预测" 134 | }, 135 | { 136 | "hosts": "阿里音乐", 137 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231531", 138 | "ddl": "20160715", 139 | "type": "预测", 140 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/ali_music.jpg?raw=true", 141 | "platform": "tianchi", 142 | "solutions": [ 143 | { 144 | "id": 16, 145 | "rank": "6" 146 | } 147 | ], 148 | "name": "阿里音乐流行趋势预测大赛" 149 | }, 150 | { 151 | "hosts": "菜鸟网络", 152 | "link": "https://tianchi.aliyun.com/competition/information.htm?spm=0.0.0.0.sUOLE8&raceId=231530&_lang=zh_CN", 153 | "ddl": "20160615", 154 | "type": "预测", 155 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/cainiao.jpg?raw=true", 156 | "platform": "tianchi", 157 | "solutions": [ 158 | { 159 | "id": 17, 160 | "rank": "6" 161 | }, 162 | { 163 | "id": 18, 164 | "rank": "10" 165 | } 166 | ], 167 | "name": "菜鸟-需求预测与分仓规划" 168 | }, 169 | { 170 | "hosts": "广东省人民政府", 171 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231615&_lang=en_US", 172 | "ddl": "20171121", 173 | "type": "分类", 174 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/guangdong.jpg?raw=true", 175 | "platform": "tianchi", 176 | "solutions": [ 177 | { 178 | "id": 19, 179 | "rank": "1" 180 | }, 181 | { 182 | "id": 20, 183 | "rank": "2" 184 | }, 185 | { 186 | "id": 21, 187 | "rank": "3" 188 | } 189 | ], 190 | "name": "广东政务数据创新大赛—智能算法赛" 191 | }, 192 | { 193 | "hosts": "中国地震局/阿里云", 194 | "link": "https://tianchi.aliyun.com/competition/information.htm?raceId=231606", 195 | "ddl": "20170927", 196 | "type": "预测/分类", 197 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/earthquake.jpg?raw=true", 198 | "platform": "tianchi", 199 | "solutions": [ 200 | { 201 | "id": 22, 202 | "rank": "2" 203 | } 204 | ], 205 | "name": "余震捕捉AI大赛" 206 | }, 207 | { 208 | "hosts": "阿里云/intel/零氪科技", 209 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231601", 210 | "ddl": "20170926", 211 | "type": "预测", 212 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/medAI_1.jpg?raw=true", 213 | "platform": "tianchi", 214 | "solutions": [ 215 | { 216 | "id": 23, 217 | "rank": "1" 218 | }, 219 | { 220 | "id": 24, 221 | "rank": "2" 222 | }, 223 | { 224 | "id": 25, 225 | "rank": "3" 226 | } 227 | ], 228 | "name": "天池医疗AI大赛[第一季]:肺部结节智能诊断" 229 | }, 230 | { 231 | "hosts": "中国社会保险学会/阿里云/数梦工场", 232 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231607", 233 | "ddl": "20170918", 234 | "type": "分类/开放", 235 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/ensure.jpg?raw=true", 236 | "platform": "tianchi", 237 | "solutions": [ 238 | { 239 | "id": 26, 240 | "rank": "2" 241 | }, 242 | { 243 | "id": 27, 244 | "rank": "3" 245 | }, 246 | { 247 | "id": 28, 248 | "rank": "4" 249 | } 250 | ], 251 | "name": "全国社会保险大数据应用创新大赛" 252 | }, 253 | { 254 | "hosts": "贵州省大数据发展管理局/贵州省交通运输局", 255 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231598", 256 | "ddl": "20170915", 257 | "type": "预测", 258 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/guizhou_jiaotong.jpg?raw=true", 259 | "platform": "tianchi", 260 | "solutions": [ 261 | { 262 | "id": 29, 263 | "rank": "1" 264 | }, 265 | { 266 | "id": 30, 267 | "rank": "2" 268 | }, 269 | { 270 | "id": 31, 271 | "rank": "3" 272 | } 273 | ], 274 | "name": "智慧交通预测挑战赛" 275 | }, 276 | { 277 | "hosts": "厦门航空/阿里云", 278 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231609", 279 | "ddl": "20170905", 280 | "type": "分类/优化", 281 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/airAI.jpg?raw=true", 282 | "platform": "tianchi", 283 | "solutions": [ 284 | { 285 | "id": 32, 286 | "rank": "2" 287 | }, 288 | { 289 | "id": 33, 290 | "rank": "3" 291 | } 292 | ], 293 | "name": "智慧航空AI大赛" 294 | }, 295 | { 296 | "hosts": "江苏省扬中市高新技术产业开发区/大航集团/阿里云", 297 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231602", 298 | "ddl": "20170720", 299 | "type": "预测", 300 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/elecAI.jpg?raw=true", 301 | "platform": "tianchi", 302 | "solutions": [ 303 | { 304 | "id": 34, 305 | "rank": "1" 306 | }, 307 | { 308 | "id": 35, 309 | "rank": "2" 310 | }, 311 | { 312 | "id": 36, 313 | "rank": "3" 314 | } 315 | ], 316 | "name": "大航杯“智造扬中”电力AI大赛" 317 | }, 318 | { 319 | "hosts": "深圳市气象局/阿里云", 320 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231596", 321 | "ddl": "20170702", 322 | "type": "预测", 323 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/CIKM17.jpg?raw=true", 324 | "platform": "tianchi", 325 | "solutions": [ 326 | { 327 | "id": 37, 328 | "rank": "1" 329 | } 330 | ], 331 | "name": "CIKM AnalytiCup 2017" 332 | }, 333 | { 334 | "hosts": "阿里聚安全", 335 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231592", 336 | "ddl": "20170316", 337 | "type": "分类", 338 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/aliju.jpg?raw=true", 339 | "platform": "tianchi", 340 | "solutions": [ 341 | { 342 | "id": 38, 343 | "rank": "37" 344 | } 345 | ], 346 | "name": "阿里聚安全算法挑战赛" 347 | }, 348 | { 349 | "hosts": "阿里云/KDD", 350 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231597", 351 | "ddl": "20170601", 352 | "type": "预测", 353 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/KDD17.jpg?raw=true", 354 | "platform": "tianchi", 355 | "solutions": [ 356 | { 357 | "id": 39, 358 | "rank": "1" 359 | }, 360 | { 361 | "id": 40, 362 | "rank": "2" 363 | }, 364 | { 365 | "id": 41, 366 | "rank": "3" 367 | }, 368 | { 369 | "id": 42, 370 | "rank": "4" 371 | } 372 | ], 373 | "name": "KDD CUP 2017" 374 | }, 375 | { 376 | "hosts": "蚂蚁金服", 377 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231591", 378 | "ddl": "20170314", 379 | "type": "预测", 380 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/IJCAI17.jpg?raw=true", 381 | "platform": "tianchi", 382 | "solutions": [ 383 | { 384 | "id": 43, 385 | "rank": "1" 386 | }, 387 | { 388 | "id": 44, 389 | "rank": "2" 390 | }, 391 | { 392 | "id": 45, 393 | "rank": "3" 394 | } 395 | ], 396 | "name": "IJCAI-17 口碑商家客流量预测" 397 | }, 398 | { 399 | "hosts": "蚂蚁金服", 400 | "link": "https://tianchi.aliyun.com/competition/rankingList.htm?raceId=231587", 401 | "ddl": "20161216", 402 | "type": "预测", 403 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/O2Ocoupon.jpg?raw=true", 404 | "platform": "tianchi", 405 | "solutions": [ 406 | { 407 | "id": 46, 408 | "rank": "1" 409 | }, 410 | { 411 | "id": 47, 412 | "rank": "16" 413 | } 414 | ], 415 | "name": "生活大实惠:O2O优惠券使用预测" 416 | }, 417 | { 418 | "hosts": "广东省人民政府", 419 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=231588", 420 | "ddl": "20161128", 421 | "type": "预测", 422 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/guangdong.jpg?raw=true", 423 | "platform": "tianchi", 424 | "solutions": [ 425 | { 426 | "id": 48, 427 | "rank": "441" 428 | } 429 | ], 430 | "name": "【广东大赛】机场客流量的时空分布预测" 431 | }, 432 | { 433 | "hosts": "新浪微博", 434 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?raceId=5", 435 | "ddl": "20151105", 436 | "type": "预测", 437 | "pic": "https://github.com/geekinglcq/CDCS/blob/master/img/weibo.jpg?raw=true", 438 | "platform": "tianchi", 439 | "solutions": [ 440 | { 441 | "id": 49, 442 | "rank": "?" 443 | } 444 | ], 445 | "name": "新浪微博互动预测大赛" 446 | }, 447 | { 448 | "hosts": "阿里巴巴 广东省人民政府", 449 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afYmcuAD&raceId=231682", 450 | "ddl": "20181106", 451 | "type": "CV分类", 452 | "platform": "tianchi", 453 | "solutions": [ 454 | { 455 | "id": 50, 456 | "rank": "1" 457 | }, 458 | { 459 | "id": 51, 460 | "rank": "2" 461 | }, 462 | { 463 | "id": 52, 464 | "rank": "3" 465 | }, 466 | { 467 | "id": 53, 468 | "rank": "4" 469 | }, 470 | { 471 | "id": 54, 472 | "rank": "5" 473 | }, 474 | { 475 | "id": 55, 476 | "rank": "6" 477 | } 478 | ], 479 | "name": "2018广东工业智造大数据创新大赛——智能算法赛 铝型材表面瑕疵识别" 480 | }, 481 | { 482 | "hosts": "之江实验室、浙江省人工智能发展专家委员会(AI TOP 30)、中国人工智能产业发展联盟(AIIA)", 483 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afYmcuAD&raceId=231677", 484 | "ddl": "20181030", 485 | "type": "CV 目标检测", 486 | "platform": "tianchi", 487 | "solutions": [ 488 | { 489 | "id": 56, 490 | "rank": "baseline" 491 | } 492 | ], 493 | "name": "2018之江杯全球人工智能大赛 零样本图像目标识别" 494 | }, 495 | { 496 | "hosts": "之江实验室、浙江省人工智能发展专家委员会(AI TOP 30)、中国人工智能产业发展联盟(AIIA)", 497 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afYmcuAD&raceId=231676", 498 | "ddl": "20181030", 499 | "type": "视频识别 问答", 500 | "platform": "tianchi", 501 | "solutions": [ 502 | { 503 | "id": 57, 504 | "rank": "?" 505 | } 506 | ], 507 | "name": "2018之江杯全球人工智能大赛
:视频识别&问答" 508 | }, 509 | { 510 | "hosts": "ICDM深圳气象局 香港天文台", 511 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231662", 512 | "ddl": "20181010", 513 | "type": "预测 回归", 514 | "platform": "tianchi", 515 | "solutions": [ 516 | { 517 | "id": 58, 518 | "rank": "1" 519 | }, 520 | { 521 | "id": 59, 522 | "rank": "2" 523 | }, 524 | { 525 | "id": 60, 526 | "rank": "3" 527 | }, 528 | { 529 | "id": 61, 530 | "rank": "4" 531 | }, 532 | { 533 | "id": 62, 534 | "rank": "5" 535 | } 536 | ], 537 | "name": "IEEE ICDM 2018 全球气象AI挑战赛" 538 | }, 539 | { 540 | "hosts": "阿里巴巴", 541 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.11165320.5678.1.205d3d78uOUSPA&raceId=231669", 542 | "ddl": "20180921", 543 | "type": "预测", 544 | "platform": "tianchi", 545 | "solutions": [ 546 | { 547 | "id": 63, 548 | "rank": "1" 549 | }, 550 | { 551 | "id": 64, 552 | "rank": "2" 553 | }, 554 | { 555 | "id": 65, 556 | "rank": "3" 557 | }, 558 | { 559 | "id": 66, 560 | "rank": "4" 561 | } 562 | ], 563 | "name": "天池云上智能降雨量预测" 564 | }, 565 | { 566 | "hosts": "江苏省无锡经济开发区 阿里云", 567 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231666", 568 | "ddl": "20180913", 569 | "type": "CV", 570 | "platform": "tianchi", 571 | "solutions": [ 572 | { 573 | "id": 67, 574 | "rank": "14" 575 | } 576 | ], 577 | "name": "雪浪制造AI挑战赛—视觉计算辅助良品检测" 578 | }, 579 | { 580 | "hosts": "阿里巴巴", 581 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231663", 582 | "ddl": "20180907", 583 | "type": "调度 优化", 584 | "platform": "tianchi", 585 | "solutions": [ 586 | { 587 | "id": 68, 588 | "rank": "18" 589 | } 590 | ], 591 | "name": "阿里巴巴全球调度算法大赛" 592 | }, 593 | { 594 | "hosts": "中国证券投资基金业协会、华夏基金、易方达、通联数据、阿里云", 595 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231660", 596 | "ddl": "20180824", 597 | "type": "预测", 598 | "platform": "tianchi", 599 | "solutions": [ 600 | { 601 | "id": 69, 602 | "rank": "1" 603 | }, 604 | { 605 | "id": 70, 606 | "rank": "2" 607 | }, 608 | { 609 | "id": 71, 610 | "rank": "3" 611 | }, 612 | { 613 | "id": 72, 614 | "rank": "4" 615 | }, 616 | { 617 | "rank": "答辩视频", 618 | "id": 76 619 | }, 620 | { 621 | "rank": "30", 622 | "id": 77 623 | }, 624 | { 625 | "rank": "?", 626 | "id": 78 627 | } 628 | ], 629 | "name": "FDDC2018金融算法挑战赛01-A股上市公司季度营收预测" 630 | }, 631 | { 632 | "hosts": "中国证券投资基金业协会、华夏基金、易方达、通联数据、阿里云", 633 | "link": "https://tianchi.aliyun.com/competition/introduction.htm?spm=5176.100066.0.0.6acd33afP6RraT&raceId=231659", 634 | "ddl": "20180824", 635 | "type": "NLP 信息抽取", 636 | "platform": "tianchi", 637 | "solutions": [ 638 | { 639 | "id": 73, 640 | "rank": "1" 641 | }, 642 | { 643 | "id": 74, 644 | "rank": "3" 645 | }, 646 | { 647 | "id": 75, 648 | "rank": "4" 649 | } 650 | ], 651 | "name": "FDDC2018金融算法挑战赛02-A股上市公司公告信息抽取" 652 | }, 653 | { 654 | "name": "Byte Cup 2018 国际机器学习竞赛", 655 | "link": "https://biendata.com/forum/index_category/33", 656 | "type": "文本生成/摘要/NLP", 657 | "platform": "biendata", 658 | "hosts": "字节跳动", 659 | "ddl": "20181206", 660 | "solutions": [ 661 | { 662 | "rank": "6", 663 | "id": 79 664 | }, 665 | { 666 | "rank": "23", 667 | "id": 80 668 | } 669 | ] 670 | }, 671 | { 672 | "name": "2018开放学术数据挖掘大赛", 673 | "link": "https://www.biendata.com/competition/scholar2018/", 674 | "type": "聚类", 675 | "platform": "biendata", 676 | "hosts": "AMiner.org", 677 | "ddl": "20181201", 678 | "solutions": [ 679 | { 680 | "rank": "4", 681 | "id": 81 682 | } 683 | ] 684 | }, 685 | { 686 | "name": "OGeek算法挑战赛", 687 | "link": "", 688 | "type": "预测", 689 | "platform": "tianchi", 690 | "hosts": "OPPO", 691 | "ddl": "20181203", 692 | "solutions": [ 693 | { 694 | "rank": "9", 695 | "id": 82 696 | }, 697 | { 698 | "rank": "7", 699 | "id": 83 700 | }, 701 | { 702 | "rank": "2", 703 | "id": 84 704 | }, 705 | { 706 | "rank": "3", 707 | "id": 85 708 | }, 709 | { 710 | "rank": "6", 711 | "id": 86 712 | }, 713 | { 714 | "rank": "10+", 715 | "id": 87 716 | } 717 | ] 718 | }, 719 | { 720 | "name": "瑞金医院MMC人工智能辅助构建知识图谱大赛", 721 | "link": "https://tianchi.aliyun.com/competition/entrance/231687/introduction", 722 | "type": "知识图谱", 723 | "platform": "tianchi", 724 | "hosts": "阿里/瑞金医院", 725 | "ddl": "20181206", 726 | "solutions": [ 727 | { 728 | "rank": "1", 729 | "id": 88 730 | }, 731 | { 732 | "rank": "2", 733 | "id": 89 734 | }, 735 | { 736 | "rank": "4", 737 | "id": 90 738 | }, 739 | { 740 | "rank": "5", 741 | "id": 91 742 | } 743 | ] 744 | }, 745 | { 746 | "name": "津南数字制造算法挑战赛——赛场一:原料企业工艺优化", 747 | "link": "https://tianchi.aliyun.com/competition/entrance/231695/introduction?spm=5176.12281957.1004.16.38b076d8d9Bkba", 748 | "type": "预测、医药化学", 749 | "platform": "tianchi", 750 | "hosts": "津南区政府 阿里云", 751 | "ddl": "20190221", 752 | "solutions": [ 753 | { 754 | "rank": "?", 755 | "id": 92 756 | }, 757 | { 758 | "rank": "6", 759 | "id": 93 760 | }, 761 | { 762 | "rank": "17", 763 | "id": 94 764 | } 765 | ] 766 | }, 767 | { 768 | "name": "2018云从人头计数", 769 | "link": "https://www.biendata.com/competition/cloudcup2018/", 770 | "type": "CV", 771 | "platform": "biendata", 772 | "hosts": "云从科技", 773 | "ddl": "20190129", 774 | "solutions": [ 775 | { 776 | "rank": "1", 777 | "id": 95 778 | } 779 | ] 780 | }, 781 | { 782 | "name": "2018年甜橙金融杯大数据建模大赛", 783 | "link": "http://www.dcjingsai.com/common/cmpt/2018%E5%B9%B4%E7%94%9C%E6%A9%99%E9%87%91%E8%9E%8D%E6%9D%AF%E5%A4%A7%E6%95%B0%E6%8D%AE%E5%BB%BA%E6%A8%A1%E5%A4%A7%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html", 784 | "type": "分类、金融", 785 | "platform": "DC", 786 | "hosts": "甜橙金融", 787 | "ddl": "20181228", 788 | "solutions": [ 789 | { 790 | "rank": "6", 791 | "id": 96 792 | }, 793 | { 794 | "rank": "9", 795 | "id": 97 796 | } 797 | ] 798 | }, 799 | { 800 | "name": "国能日新光伏功率预测大赛", 801 | "link": "http://www.dcjingsai.com/common/cmpt/%E5%9B%BD%E8%83%BD%E6%97%A5%E6%96%B0%E5%85%89%E4%BC%8F%E5%8A%9F%E7%8E%87%E9%A2%84%E6%B5%8B%E5%A4%A7%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html", 802 | "type": "预测", 803 | "platform": "DC", 804 | "hosts": "国能日新", 805 | "ddl": "20181203", 806 | "solutions": [ 807 | { 808 | "rank": "21", 809 | "id": 98 810 | }, 811 | { 812 | "rank": "?", 813 | "id": 99 814 | } 815 | ] 816 | }, 817 | { 818 | "name": "第3届 融360天机智能金融算法挑战赛", 819 | "link": "http://www.dcjingsai.com/common/cmpt/%E7%AC%AC3%E5%B1%8A%20%E8%9E%8D360%E5%A4%A9%E6%9C%BA%E6%99%BA%E8%83%BD%E9%87%91%E8%9E%8D%E7%AE%97%E6%B3%95%E6%8C%91%E6%88%98%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html", 820 | "type": "金融", 821 | "platform": "DC", 822 | "hosts": "融360", 823 | "ddl": "20181110", 824 | "solutions": [ 825 | { 826 | "rank": "6", 827 | "id": 100 828 | }, 829 | { 830 | "rank": "5", 831 | "id": 101 832 | }, 833 | { 834 | "rank": "?", 835 | "id": 102 836 | } 837 | ] 838 | }, 839 | { 840 | "name": "2018科大讯飞AI营销算法大赛", 841 | "link": "http://www.dcjingsai.com/common/cmpt/2018%E7%A7%91%E5%A4%A7%E8%AE%AF%E9%A3%9EAI%E8%90%A5%E9%94%80%E7%AE%97%E6%B3%95%E5%A4%A7%E8%B5%9B_%E7%AB%9E%E8%B5%9B%E4%BF%A1%E6%81%AF.html", 842 | "type": "预测", 843 | "platform": "DC", 844 | "hosts": "科大讯飞", 845 | "ddl": "20181025", 846 | "solutions": [ 847 | { 848 | "rank": "4", 849 | "id": 103 850 | }, 851 | { 852 | "rank": "30", 853 | "id": 104 854 | } 855 | ] 856 | }, 857 | { 858 | "name": "面向电信行业存量用户的智能套餐个性化匹配模型", 859 | "link": "https://www.datafountain.cn/competitions/311/details", 860 | "type": "分类预测", 861 | "platform": "DataFountain", 862 | "hosts": "CCF,中国联通", 863 | "ddl": "20181117", 864 | "solutions": [ 865 | { 866 | "rank": "2", 867 | "id": 105 868 | }, 869 | { 870 | "rank": "6", 871 | "id": 106 872 | } 873 | ] 874 | }, 875 | { 876 | "name": "2018 搜狐内容识别算法大赛", 877 | "link": "https://biendata.com/competition/sohu2018/", 878 | "type": "分类", 879 | "platform": "biendata", 880 | "hosts": "搜狐、CCF", 881 | "ddl": "20180319", 882 | "solutions": [ 883 | { 884 | "rank": "1", 885 | "id": 107 886 | } 887 | ] 888 | } 889 | ] --------------------------------------------------------------------------------