请你进行互联网搜索,搜寻一些较有深度/严谨的发布当下人工智能领域最新进展的信息源,(新闻/分析文章为...
创建于:2025年10月11日
使用 GPT-5 Thinking 回答 Chat01
创建于:2025年10月11日
使用 GPT-5 Thinking 回答 Chat01
请你进行互联网搜索,搜寻一些较有深度/严谨的发布当下人工智能领域最新进展的信息源,(新闻/分析文章为主),我想让自己能够实时追踪这些信息
python# Generate an OPML file with curated, rigorous AI news & research feeds from datetime import datetime feeds = [ # Research preprints {"text": "arXiv cs.AI (Artificial Intelligence)", "xmlUrl": "https://rss.arxiv.org/rss/cs.AI", "htmlUrl": "https://arxiv.org/list/cs.AI/recent"}, {"text": "arXiv cs.CL (Computation and Language)", "xmlUrl": "https://rss.arxiv.org/rss/cs.CL", "htmlUrl": "https://arxiv.org/list/cs.CL/recent"}, {"text": "arXiv stat.ML (Statistics/Machine Learning)", "xmlUrl": "https://rss.arxiv.org/rss/stat.ML", "htmlUrl": "https://arxiv.org/list/stat.ML/recent"}, # Journals / magazines {"text": "Nature Machine Intelligence", "xmlUrl": "https://www.nature.com/natmachintell.rss", "htmlUrl": "https://www.nature.com/natmachintell/"}, {"text": "Nature.com: Machine Learning (subject feed)", "xmlUrl": "https://www.nature.com/subjects/machine-learning.rss", "htmlUrl": "https://www.nature.com/subjects/machine-learning"}, {"text": "IEEE Spectrum – Artificial Intelligence", "xmlUrl": "https://spectrum.ieee.org/feeds/topic/artificial-intelligence.rss", "htmlUrl": "https://spectrum.ieee.org/topic/artificial-intelligence/"}, {"text": "JMLR – Journal of Machine Learning Research (recent)", "xmlUrl": "http://www.jmlr.org/jmlr.xml", "htmlUrl": "https://jmlr.org/"}, # Lab / company research blogs {"text": "OpenAI – Blog (Research & News)", "xmlUrl": "https://openai.com/blog/rss.xml", "htmlUrl": "https://openai.com/news/"}, {"text": "Google DeepMind – Blog", "xmlUrl": "https://deepmind.google/blog/rss.xml", "htmlUrl": "https://deepmind.google/discover/blog/"}, {"text": "BAIR – Berkeley AI Research Blog", "xmlUrl": "https://bair.berkeley.edu/blog/feed.xml", "htmlUrl": "https://bair.berkeley.edu/blog/"}, {"text": "Hugging Face – Blog (feed)", "xmlUrl": "https://huggingface.co/blog/feed.xml", "htmlUrl": "https://huggingface.co/blog"}, # Think tanks / policy / analysis {"text": "Stanford HAI – News", "xmlUrl": "https://hai.stanford.edu/news/rss.xml", "htmlUrl": "https://hai.stanford.edu/news"}, {"text": "Import AI (Jack Clark) – Newsletter", "xmlUrl": "https://importai.substack.com/feed", "htmlUrl": "https://importai.substack.com/"}, {"text": "AI Snake Oil (Narayanan & Kapoor)", "xmlUrl": "https://www.aisnakeoil.com/feed", "htmlUrl": "https://www.aisnakeoil.com/"}, {"text": "ChinAI (Jeffrey Ding) – Newsletter", "xmlUrl": "https://chinai.substack.com/feed", "htmlUrl": "https://chinai.substack.com/"}, # 中文优质源 {"text": "机器之心 (Synced) – 中文", "xmlUrl": "https://www.jiqizhixin.com/rss", "htmlUrl": "https://www.jiqizhixin.com/"}, ] opml_head = f"""<?xml version="1.0" encoding="UTF-8"?> <opml version="2.0"> <head> <title>AI — 严谨信息源精选 (生成于 {datetime.now().strftime('%Y-%m-%d %H:%M')})</title> </head> <body> <outline text="AI — 严谨信息源精选"> """ opml_items = [] for f in feeds: opml_items.append(f' <outline type="rss" text="{f["text"]}" title="{f["text"]}" xmlUrl="{f["xmlUrl"]}" htmlUrl="{f["htmlUrl"]}"/>') opml_tail = """ </outline> </body> </opml> """ opml_content = opml_head + "\n".join(opml_items) + opml_tail path = "/mnt/data/ai_rigorous_sources.opml" with open(path, "w", encoding="utf-8") as f: f.write(opml_content) path '/mnt/data/ai_rigorous_sources.opml'
太好了!我给你挑了一套更严谨、更新得快、能“看懂研究进展”的信息源,并按类别分好组。你可以直接用我打包好的 OPML 一键导入任何 RSS 阅读器(Feedly、Inoreader 等)开始追踪。
[下载 OPML 订阅包(AI — 严谨信息源精选)]
arXiv 预印本流:
JMLR(Journal of Machine Learning Research):老牌顶会群的旗舰期刊,开放获取;适合看成体系的研究。已提供官方 RSS。 (Journal of Machine Learning Research)
如果你愿意,我也可以把这套源按你的研究兴趣进一步细化(比如只看“Agent/机器人”“安全对齐”“模型压缩/蒸馏”“多模态视频/语音”等),并给你做一个“高优先级专栏”的精简 OPML。需要的话直接告诉我你最想跟踪的主题或关键词就行!