test&report
112
README.md
@ -10,32 +10,33 @@
|
||||
|
||||
https://github.com/user-attachments/assets/f6fec29f-2b4b-40f8-8676-8433abb086a7
|
||||
|
||||
## 🔥 隆重介绍 V0.3.6 版本
|
||||
## 🔥 测试脚本与测试报告发布
|
||||
|
||||
v0.3.6版本已经发布,新增使用视觉大模型作为主模型,大幅提升页面获取能力。
|
||||
我们在四个现实案例任务以及共计十个真实网页 sample 中横向测试并比较了由 siliconflow 提供的deepseekV2.5、Qwen2.5-32B-Instruct、Qwen2.5-14B-Instruct、Qwen2.5-coder-7B-Instruct 模型的表现情况,
|
||||
测试结果请参考 [report](./test/reports/wiseflow_report_20241223_bigbrother666/README.md)
|
||||
|
||||
使用视觉大模型通过分析页面截屏信息提取效果 vs 使用文本大模型通过分析页面文本信息提取效果:
|
||||
同时我们也将测试脚本进行开源,欢迎大家踊跃提交更多测试结果,wiseflow 是一个开源项目,希望通过大家共同的贡献,打造“人人可用的信息爬取工具”!
|
||||
|
||||
![image](https://github.com/user-attachments/assets/f6fec29f-2b4b-40f8-8676-8433abb086a7)
|
||||
具体请参考 [test/README.md](./test/README.md)
|
||||
|
||||
同时本版本改进了 pocketbase 的前期下载以及用户名密码配置方案,感谢 @ourines 贡献了 install_pocketbase.sh 脚本。
|
||||
现阶段,**提交测试结果等同于提交项目代码**,同样会被接纳为contributor,甚至受邀参加商业化项目!
|
||||
|
||||
另外我们改进了 pocketbase 的下载以及用户名密码配置方案,感谢 @ourines 贡献了 install_pocketbase.sh 脚本。
|
||||
|
||||
(docker运行方案被暂时移除了,感觉大家用起来也不是很方便……)
|
||||
|
||||
- 更多细节,参考 [CHANGELOG](CHANGELOG.md)
|
||||
🌟 **V0.3.6 版本预告**
|
||||
|
||||
🌟 **V0.3.x 版本介绍**
|
||||
V0.3.6 版本计划于2024年12月30日前发布,该版本是 v0.3.5 的性能优化版本,信息抽取质量将有质的提升,同时还会引入视觉大模型,在网页信息不足时提取页面图片信息作为补充。
|
||||
|
||||
在充分听取社区反馈意见基础之上,我们重新提炼了 wiseflow 的产品定位,新定位更加聚焦,自V0.3.5版本开始 wiseflow 使用全新的架构,并引入 [Crawlee](https://github.com/apify/crawlee-python) 作为基础爬虫和任务管理框架,大幅提升页面获取能力。后续我们会持续提升wiseflow 的页面获取能力,大家碰到不能很好获取的页面,欢迎在 [issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136) 中进行反馈;
|
||||
|
||||
另外 V0.3.5开始,wiseflow 采用全新的信息提取策略——“爬查一体”,放弃文章详细提取,爬取过程中即使用 llm 直接提取用户感兴趣的信息(infos),同时自动判断值得跟进爬取的链接,**你关注的才是你需要的**;
|
||||
|
||||
**V0.3.x 后续计划**
|
||||
**V0.3.x 计划**
|
||||
|
||||
- 尝试支持微信公众号免wxbot订阅(V0.3.7);
|
||||
- 引入对 RSS 信息源的支持(V0.3.8);~
|
||||
- 引入对 RSS 信息源的支持(V0.3.8);
|
||||
- 尝试引入 LLM 驱动的轻量级知识图谱,帮助用户从 infos 中建立洞察(V0.3.9)。
|
||||
|
||||
自V0.3.5版本开始 wiseflow 使用全新的架构,并引入 [Crawlee](https://github.com/apify/crawlee-python) 作为基础爬虫和任务管理框架,大幅提升页面获取能力。后续我们会持续提升wiseflow 的页面获取能力,大家碰到不能很好获取的页面,欢迎在 [issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136) 中进行反馈。
|
||||
|
||||
## ✋ wiseflow 与传统的爬虫工具、AI搜索、知识库(RAG)项目有何不同?
|
||||
|
||||
wiseflow自2024年6月底发布 V0.3.0版本来受到了开源社区的广泛关注,甚至吸引了不少自媒体的主动报道,在此首先表示感谢!
|
||||
@ -73,34 +74,57 @@ wiseflow 0.3.x版本使用 pocketbase 作为数据库,你当然也可以手动
|
||||
|
||||
### 3. 继续配置 core/.env 文件
|
||||
|
||||
🌟 **这里与之前版本不同**,V0.3.5开始需要把 .env 放置在 core文件夹中。
|
||||
🌟 **这里与之前版本不同**,V0.3.5开始需要把 .env 放置在 [core](./core) 文件夹中。
|
||||
|
||||
另外 V0.3.5 起,env 配置也大幅简化了,必须的配置项目只有三项,具体如下:
|
||||
#### 3.1 大模型相关配置
|
||||
|
||||
- LLM_API_KEY=""
|
||||
wiseflow 是 LLM 原生应用,请务必保证为程序提供稳定的 LLM 服务。
|
||||
|
||||
大模型服务key,这是必须的
|
||||
🌟 **wiseflow 并不限定模型服务提供来源,只要服务兼容 openAI SDK 即可,包括本地部署的 ollama、Xinference 等服务**
|
||||
|
||||
- LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
#### 推荐1:使用硅基流动(siliconflow)提供的 MaaS 服务
|
||||
|
||||
服务接口地址,任何支持 openai sdk 的服务商都可以,如果直接使用openai 的服务,这一项也可以不填
|
||||
siliconflow(硅基流动)提供大部分主流开源模型的在线 MaaS 服务,凭借着自身的加速推理技术积累,其服务速度和价格方面都有很大优势。使用 siliconflow 的服务时,.env的配置可以参考如下:
|
||||
|
||||
- PB_API_AUTH="test@example.com|1234567890"
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
export PRIMARY_MODEL="Qwen/Qwen2.5-32B-Instruct"
|
||||
export SECONDARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
export VL_MODEL="OpenGVLab/InternVL2-26B"
|
||||
```
|
||||
|
||||
😄 如果您愿意,可以使用我的[siliconflow邀请链接](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92),这样我也可以获得更多token奖励 🌹
|
||||
|
||||
pocketbase 数据库的 superuser 用户名和密码,记得用 | 分隔 (如果 install_pocketbase.sh 脚本执行成功,这一项应该已经存在了)
|
||||
#### 推荐2:使用 AiHubMix 代理的openai、claude、gemini 等海外闭源商业模型服务
|
||||
|
||||
如果您的信源多为非中文页面,且也不要求提取出的 info 为中文,那么更推荐您使用 openai、claude、gemini 等海外闭源商业模型。您可以尝试第三方代理 **AiHubMix**,支持国内网络环境直连、支付宝便捷支付,免去封号风险。
|
||||
使用 AiHubMix 的模型时,.env的配置可以参考如下:
|
||||
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://aihubmix.com/v1" # 具体参考 https://doc.aihubmix.com/
|
||||
export PRIMARY_MODEL="gpt-4o"
|
||||
export SECONDARY_MODEL="gpt-4o-mini"
|
||||
export VL_MODEL="gpt-4o"
|
||||
```
|
||||
|
||||
😄 欢迎使用 [AiHubMix邀请链接](https://aihubmix.com?aff=Gp54) 注册 🌹
|
||||
|
||||
#### 3.2 pocketbase 账号密码配置
|
||||
|
||||
```bash
|
||||
export PB_API_AUTH="test@example.com|1234567890"
|
||||
```
|
||||
|
||||
这里pocketbase 数据库的 superuser 用户名和密码,记得用 | 分隔 (如果 install_pocketbase.sh 脚本执行成功,这一项应该已经存在了)
|
||||
|
||||
#### 3.3 其他可选配置
|
||||
|
||||
下面的都是可选配置:
|
||||
- #VERBOSE="true"
|
||||
|
||||
是否开启观测模式,开启的话,不仅会把 debug log信息记录在 logger 文件上(默认仅输出在 console 上),同时会开启 playwright 的浏览器窗口,方便观察抓取过程;
|
||||
|
||||
- #PRIMARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
|
||||
主模型选择,在使用 siliconflow 服务的情况下,这一项不填就会默认调用Qwen2.5-7B-Instruct,实测基本也够用,但我更加**推荐 Qwen2.5-14B-Instruct**
|
||||
|
||||
- #SECONDARY_MODEL="THUDM/glm-4-9b-chat"
|
||||
|
||||
副模型选择,在使用 siliconflow 服务的情况下,这一项不填就会默认调用glm-4-9b-chat。
|
||||
是否开启观测模式,开启的话会把 debug 信息记录在 logger 文件上(默认仅输出在 console 上);
|
||||
|
||||
- #PROJECT_DIR="work_dir"
|
||||
|
||||
@ -110,7 +134,7 @@ wiseflow 0.3.x版本使用 pocketbase 作为数据库,你当然也可以手动
|
||||
|
||||
只有当你的 pocketbase 不运行在默认ip 或端口下才需要配置,默认情况下忽略就行。
|
||||
|
||||
### 4. 使用python环境运行
|
||||
### 4. 运行程序
|
||||
|
||||
✋ V0.3.5版本架构和依赖与之前版本有较大不同,请务必重新拉取代码,删除(或重建)pb_data
|
||||
|
||||
@ -135,29 +159,11 @@ chmod +x run.sh
|
||||
|
||||
run_task.sh 会周期性执行爬取-提取任务(启动时会立即先执行一次,之后每隔一小时启动一次), 如果仅需执行一次,可以使用 run.sh 脚本。
|
||||
|
||||
### 5. 模型推荐 [2024-12-09]
|
||||
|
||||
虽然参数量越大的模型意味着更佳的性能,但经过实测,**使用 Qwen2.5-7b-Instruct 和 glm-4-9b-chat 模型,即可以达到基本的效果**。不过综合考虑成本、速度和效果,我更加推荐主模型
|
||||
**(PRIMARY_MODEL)使用Qwen2.5-14B-Instruct**。
|
||||
|
||||
这里依然强烈推荐使用 siliconflow(硅基流动)的 MaaS 服务,提供多个主流开源模型的服务,量大管饱,Qwen2.5-7b-Instruct 和 glm-4-9b-chat 目前提供免费服务。(主模型使用Qwen2.5-14B-Instruct情况下,爬取374个网页,有效抽取43条 info,总耗费¥3.07)
|
||||
|
||||
😄 如果您愿意,可以使用我的[siliconflow邀请链接](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92),这样我也可以获得更多token奖励 🌹
|
||||
|
||||
**如果您的信源多为非中文页面,且也不要求提取出的 info 为中文,那么更推荐您使用 openai 或者 claude 等海外厂家的模型。**
|
||||
|
||||
您可以尝试第三方代理 **AiHubMix**,支持国内网络环境直连、支付宝便捷支付,免去封号风险;
|
||||
|
||||
😄 欢迎使用如下邀请链接 [AiHubMix邀请链接](https://aihubmix.com?aff=Gp54) 注册 🌹
|
||||
|
||||
🌟 **请注意 wiseflow 本身并不限定任何模型服务,只要服务兼容 openAI SDK 即可,包括本地部署的 ollama、Xinference 等服务**
|
||||
|
||||
|
||||
### 6. **关注点和定时扫描信源添加**
|
||||
### 5. **关注点和定时扫描信源添加**
|
||||
|
||||
启动程序后,打开pocketbase Admin dashboard UI (http://127.0.0.1:8090/_/)
|
||||
|
||||
#### 6.1 打开 focus_point 表单
|
||||
#### 5.1 打开 focus_point 表单
|
||||
|
||||
通过这个表单可以指定你的关注点,LLM会按此提炼、过滤并分类信息。
|
||||
|
||||
@ -168,7 +174,7 @@ run_task.sh 会周期性执行爬取-提取任务(启动时会立即先执行
|
||||
|
||||
注意:focus_point 更新设定(包括 activated 调整)后,**需要重启程序才会生效。**
|
||||
|
||||
#### 6.2 打开 sites表单
|
||||
#### 5.2 打开 sites表单
|
||||
|
||||
通过这个表单可以指定自定义信源,系统会启动后台定时任务,在本地执行信源扫描、解析和分析。
|
||||
|
||||
@ -199,7 +205,7 @@ PocketBase作为流行的轻量级数据库,目前已有 Go/Javascript/Python
|
||||
|
||||
本项目基于 [Apache2.0](LICENSE) 开源。
|
||||
|
||||
商用以及定制合作,请联系 **Email:35252986@qq.com**
|
||||
商用以及定制合作,请联系 **Email:zm.zhao@foxmail.com**
|
||||
|
||||
- 商用客户请联系我们报备登记,产品承诺永远免费。
|
||||
|
||||
|
175
README_EN.md
@ -10,22 +10,32 @@
|
||||
|
||||
https://github.com/user-attachments/assets/f6fec29f-2b4b-40f8-8676-8433abb086a7
|
||||
|
||||
## 🔥 Introducing Version V0.3.5
|
||||
## 🔥 Test Scripts and Test Reports Release
|
||||
|
||||
Based on extensive community feedback, we have refined the product positioning of wiseflow, making it more focused. Version V0.3.5 is the new architecture version under this positioning:
|
||||
We have horizontally tested and compared the performance of deepseekV2.5, Qwen2.5-32B-Instruct, Qwen2.5-14B-Instruct, and Qwen2.5-coder-7B-Instruct models provided by siliconflow across four real-case tasks and a total of ten real webpage samples.
|
||||
Please refer to the [report](./test/reports/wiseflow_report_20241223_bigbrother666/README.md) for test results.
|
||||
|
||||
- Introduced [Crawlee](https://github.com/apify/crawlee-python) as the basic crawler and task management framework, significantly enhancing page acquisition capabilities. Pages that were previously unobtainable (including those obtained as garbled text) can now be acquired well. If you encounter pages that cannot be acquired well, please provide feedback in [issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136);
|
||||
- New information extraction strategy under the new product positioning—"crawling and checking integration," abandoning detailed article extraction. During the crawling process, LLM directly extracts user-interested information (infos), and automatically judges links worth following up on. **What you focus on is what you need**;
|
||||
- Adapted to the latest version (v0.23.4) of Pocketbase, updated form configuration. Additionally, the new architecture no longer requires modules like GNE, reducing the number of requirement dependencies to 8;
|
||||
- The new architecture deployment scheme is also more convenient, with Docker mode supporting hot updates of the code repository. This means that subsequent upgrades no longer require repeated Docker builds.
|
||||
- For more details, refer to [CHANGELOG](CHANGELOG.md)
|
||||
We have also open-sourced the test scripts and welcome everyone to actively submit more test results. Wiseflow is an open-source project, and we hope to create an "information crawling tool that everyone can use" through our collective contributions!
|
||||
|
||||
🌟 **Future Plans for V0.3.x**
|
||||
For details, please refer to [test/README_EN.md](./test/README_EN.md)
|
||||
|
||||
- Introduce [SeeAct](https://github.com/OSU-NLP-Group/SeeAct) solution, guiding complex page operations through visual large models, such as scrolling, clicking to reveal information (V0.3.6);
|
||||
- Attempt to support WeChat official account subscription without wxbot (V0.3.7);
|
||||
- Introduce support for RSS information sources (V0.3.8);
|
||||
- Attempt to introduce a lightweight knowledge graph driven by LLM to help users build insights from infos (V0.3.9).
|
||||
At this stage, **submitting test results is equivalent to submitting project code**, and you will similarly be accepted as a contributor and may even be invited to participate in commercialization projects!
|
||||
|
||||
Additionally, we have improved the download and username/password configuration solution for pocketbase. Thanks to @ourines for contributing the install_pocketbase.sh script.
|
||||
|
||||
(The docker deployment solution has been temporarily removed as we felt it wasn't very convenient for users...)
|
||||
|
||||
🌟 **V0.3.6 Version Preview**
|
||||
|
||||
Version V0.3.6 is planned for release before December 30, 2024. This version is a performance optimization of v0.3.5, with significant improvements in information extraction quality. It will also introduce visual large models to extract page image information as supplementary when webpage information is insufficient.
|
||||
|
||||
**V0.3.x Plan**
|
||||
|
||||
- Attempt to support WeChat official account subscription without wxbot (V0.3.7)
|
||||
- Introduce support for RSS information sources (V0.3.8)
|
||||
- Attempt to introduce LLM-driven lightweight knowledge graphs to help users build insights from infos (V0.3.9)
|
||||
|
||||
Starting from version V0.3.5, wiseflow uses a completely new architecture and introduces [Crawlee](https://github.com/apify/crawlee-python) as the basic crawler and task management framework, significantly improving page acquisition capabilities. We will continue to enhance wiseflow's page acquisition capabilities. If you encounter pages that cannot be properly acquired, please provide feedback in [issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136).
|
||||
|
||||
## ✋ How is wiseflow Different from Traditional Crawler Tools, AI Search, and Knowledge Base (RAG) Projects?
|
||||
|
||||
@ -49,109 +59,106 @@ However, we have also noticed some misunderstandings about the functional positi
|
||||
git clone https://github.com/TeamWiseFlow/wiseflow.git
|
||||
```
|
||||
|
||||
### 2. Refer to env_sample to Configure the .env File and Place it in the Core Directory
|
||||
### 2. Execute the install_pocketbase.sh script in the root directory
|
||||
|
||||
🌟 **This is different from previous versions**, starting from V0.3.5, the .env file needs to be placed in the core folder.
|
||||
This script will guide you through downloading and configuring pocketbase (version 0.23.4), and create a .env file under core.
|
||||
|
||||
Additionally, the env configuration has been greatly simplified from V0.3.5, with only three required configuration items, as follows:
|
||||
```bash
|
||||
chmod +x install_pocketbase.sh
|
||||
./install_pocketbase.sh
|
||||
```
|
||||
|
||||
- LLM_API_KEY=""
|
||||
Wiseflow 0.3.x uses pocketbase as its database. You can also manually download the pocketbase client (remember to download version 0.23.4 and place it in the [pb](./pb) directory) and manually create the superuser (remember to save it in the .env file).
|
||||
|
||||
Large model service key, this is mandatory
|
||||
For details, please refer to [pb/README.md](/pb/README.md)
|
||||
|
||||
- LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
### 3. Continue Configuring the core/.env File
|
||||
|
||||
Service interface address, any service provider supporting openai sdk can be used. If you directly use openai services, this item can also be left blank
|
||||
🌟 **This is different from previous versions** - starting from V0.3.5, the .env file needs to be placed in the [core](./core) folder.
|
||||
|
||||
- PB_API_AUTH="test@example.com|1234567890"
|
||||
#### 3.1 Large Language Model Configuration
|
||||
|
||||
Pocketbase database superuser username and password, remember to separate with |
|
||||
Wiseflow is a LLM native application, so please ensure you provide stable LLM service for the program.
|
||||
|
||||
The following are optional configurations:
|
||||
🌟 **Wiseflow does not restrict the source of model services - as long as the service is compatible with the openAI SDK, including locally deployed services like ollama, Xinference, etc.**
|
||||
|
||||
#### Recommendation 1: Use MaaS Service Provided by Siliconflow
|
||||
|
||||
Siliconflow provides online MaaS services for most mainstream open-source models. With its accumulated acceleration inference technology, its service has great advantages in both speed and price. When using siliconflow's service, the .env configuration can refer to the following:
|
||||
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
export PRIMARY_MODEL="Qwen/Qwen2.5-32B-Instruct"
|
||||
export SECONDARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
export VL_MODEL="OpenGVLab/InternVL2-26B"
|
||||
```
|
||||
|
||||
😄 If you'd like, you can use my [siliconflow referral link](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92), which will help me earn more token rewards 🌹
|
||||
|
||||
#### Recommendation 2: Use AiHubMix Proxy for Closed-Source Commercial Models like OpenAI, Claude, Gemini
|
||||
|
||||
If your information sources are mostly non-Chinese pages and you don't require the extracted info to be in Chinese, then it's recommended to use closed-source commercial models like OpenAI, Claude, Gemini. You can try the third-party proxy **AiHubMix**, seamlessly access a wide range of leading AI models like OpenAI, Claude, Google, Llama, and more with just one API.
|
||||
|
||||
When using AiHubMix models, the .env configuration can refer to the following:
|
||||
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://aihubmix.com/v1" # 具体参考 https://doc.aihubmix.com/
|
||||
export PRIMARY_MODEL="gpt-4o"
|
||||
export SECONDARY_MODEL="gpt-4o-mini"
|
||||
export VL_MODEL="gpt-4o"
|
||||
```
|
||||
|
||||
😄 Welcome to register using the [AiHubMix referral link](https://aihubmix.com?aff=Gp54) 🌹
|
||||
|
||||
#### 3.2 Pocketbase Account and Password Configuration
|
||||
|
||||
```bash
|
||||
export PB_API_AUTH="test@example.com|1234567890"
|
||||
```
|
||||
|
||||
This is where you set the superuser username and password for the pocketbase database, remember to separate them with | (if the install_pocketbase.sh script executed successfully, this should already exist)
|
||||
|
||||
#### 3.3 Other Optional Configurations
|
||||
|
||||
The following are all optional configurations:
|
||||
- #VERBOSE="true"
|
||||
|
||||
Whether to enable observation mode. If enabled, not only will debug log information be recorded in the logger file (default is only output to the console), but the playwright browser window will also be opened to facilitate observation of the crawling process;
|
||||
|
||||
- #PRIMARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
|
||||
Main model selection. When using siliconflow services, this item left blank will default to Qwen2.5-7B-Instruct, which is practically sufficient, but I **recommend Qwen2.5-14B-Instruct** more
|
||||
|
||||
- #SECONDARY_MODEL="THUDM/glm-4-9b-chat"
|
||||
|
||||
Secondary model selection. When using siliconflow services, this item left blank will default to glm-4-9b-chat.
|
||||
Whether to enable observation mode. When enabled, debug information will be recorded in the logger file (by default only output to console);
|
||||
|
||||
- #PROJECT_DIR="work_dir"
|
||||
|
||||
Project runtime data directory. If not configured, the default is `core/work_dir`. Note: The entire core directory is mounted under the container, meaning you can directly access it.
|
||||
Project runtime data directory. If not configured, defaults to `core/work_dir`. Note: Currently the entire core directory is mounted under the container, meaning you can access it directly.
|
||||
|
||||
- #PB_API_BASE=""
|
||||
|
||||
Only required when your pocketbase is not running on the default IP or port. Ignored by default.
|
||||
Only needs to be configured if your pocketbase is not running on the default IP or port. Under default circumstances, you can ignore this.
|
||||
|
||||
### 3.1 Run Using Docker
|
||||
|
||||
✋ The V0.3.5 version architecture and dependencies are significantly different from previous versions. Please make sure to re-pull the code, delete the old version image (including the mounted pb_data folder), and rebuild!
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
docker compose up
|
||||
```
|
||||
|
||||
**Note:**
|
||||
|
||||
The first time you run the Docker container, the program may report an error, which is normal. Please follow the screen prompts to create a super user account (must use an email), then fill in the created username and password into the .env file, and restart the container.
|
||||
|
||||
🌟 The Docker solution defaults to running task.py, which will periodically execute crawling-extraction tasks (immediately executes once at startup, then every hour thereafter)
|
||||
|
||||
### 3.2 Run Using Python Environment
|
||||
### 4. Running the Program
|
||||
|
||||
✋ The V0.3.5 version architecture and dependencies are significantly different from previous versions. Please make sure to re-pull the code, delete (or rebuild) pb_data
|
||||
|
||||
> ⚠️ Alternatively, execute the install_pocketbase.sh script in the root directory, which will automatically download and configure pocketbase.
|
||||
> ```bash
|
||||
> chmod +x install_pocketbase.sh
|
||||
> ./install_pocketbase.sh
|
||||
> ```
|
||||
It is recommended to use conda to build a virtual environment (of course you can skip this step, or use other Python virtual environment solutions)
|
||||
|
||||
It is recommended to use conda to build a virtual environment
|
||||
```bash
|
||||
conda create -n wiseflow python=3.10
|
||||
conda activate wiseflow
|
||||
```
|
||||
|
||||
then
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
conda create -n wiseflow python=3.10
|
||||
conda activate wiseflow
|
||||
cd core
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
Then go here [Download](https://pocketbase.io/docs/) the corresponding pocketbase client and place it in the [/pb](/pb) directory. Then
|
||||
|
||||
```bash
|
||||
chmod +x run.sh
|
||||
./run_task.sh # if you just want to scan sites one-time (no loop), use ./run.sh
|
||||
```
|
||||
|
||||
This script will automatically determine if pocketbase is already running. If not, it will automatically start. However, please note that when you terminate the process with ctrl+c or ctrl+z, the pocketbase process will not be terminated until you close the terminal.
|
||||
|
||||
Similarly to Docker deployment, the first run may result in an error. Please follow the screen prompts to create a super user account (must use an email), then fill in the created username and password into the .env file and run again.
|
||||
|
||||
Of course, you can also run and set up pocketbase in another terminal in advance (this will avoid the first error). For details, please refer to [pb/README.md](/pb/README.md)
|
||||
|
||||
### 4. Model Recommendations [2024-12-09]
|
||||
|
||||
Although larger models generally mean better performance, practical tests show that **using Qwen2.5-7b-Instruct and glm-4-9b-chat models can achieve basic effects**. However, considering cost, speed, and effect, I **recommend using Qwen2.5-14B-Instruct as the main model (PRIMARY_MODEL)**.
|
||||
|
||||
Here, I still strongly recommend using siliconflow's MaaS service, which provides services for multiple mainstream open-source models, with ample supply. Qwen2.5-7b-Instruct and glm-4-9b-chat currently offer free services. (When using Qwen2.5-14B-Instruct as the main model, crawling 374 web pages, effectively extracting 43 infos, total cost ¥3.07)
|
||||
|
||||
😄 If you are willing, you can use my [siliconflow invitation link](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92), so I can also get more token rewards 🌹
|
||||
|
||||
**If your information sources are mostly non-Chinese pages and you do not require the extracted infos to be in Chinese, it is more recommended to use models from overseas manufacturers such as openai or claude.**
|
||||
|
||||
You can try the third-party proxy **AiHubMix**, seamlessly access a wide range of leading AI models like OpenAI, Claude, Google, Llama, and more with just one API.
|
||||
|
||||
😄 Welcome to use the following invitation link [AiHubMix invitation link](https://aihubmix.com?aff=Gp54) to register 🌹
|
||||
|
||||
🌟 **Please note that wiseflow itself does not limit any model services, as long as the service is compatible with the openAI SDK, including locally deployed services like ollama, Xinference, etc.**
|
||||
🌟 This script will automatically determine if pocketbase is already running. If not, it will automatically start. However, please note that when you terminate the process with ctrl+c or ctrl+z, the pocketbase process will not be terminated until you close the terminal.
|
||||
|
||||
run_task.sh will periodically execute crawling-extraction tasks (it will execute immediately at startup, then every hour after that). If you only need to execute once, you can use the run.sh script.
|
||||
|
||||
### 5. **Adding Focus Points and Scheduled Scanning of Information Sources**
|
||||
|
||||
@ -199,7 +206,7 @@ PocketBase, as a popular lightweight database, currently has SDKs for Go/Javascr
|
||||
|
||||
This project is open-source under the [Apache2.0](LICENSE) license.
|
||||
|
||||
For commercial and custom cooperation, please contact **Email: 35252986@qq.com**
|
||||
For commercial and custom cooperation, please contact **Email: zm.zhao@foxmail.com**
|
||||
|
||||
- Commercial customers, please contact us for registration. The product promises to be forever free.
|
||||
|
||||
|
173
README_JP.md
@ -10,22 +10,32 @@
|
||||
|
||||
https://github.com/user-attachments/assets/f6fec29f-2b4b-40f8-8676-8433abb086a7
|
||||
|
||||
## 🔥 V0.3.5 バージョンの隆盛な紹介
|
||||
## 🔥 テストスクリプトとテストレポートの公開
|
||||
|
||||
コミュニティのフィードバックを十分に聞き取り、wiseflowの製品ポジションを再検討し、新しいポジションはより焦点を絞り込んでいます。V0.3.5バージョンは、この新しいポジションの下での新しいアーキテクチャバージョンです。
|
||||
siliconflowが提供するdeepseekV2.5、Qwen2.5-32B-Instruct、Qwen2.5-14B-Instruct、Qwen2.5-coder-7B-Instructモデルの性能を、4つの実際のケースタスクと合計10の実際のウェブページサンプルで横断的にテストし比較しました。
|
||||
テスト結果は[report](./test/reports/wiseflow_report_20241223_bigbrother666/README.md)をご参照ください。
|
||||
|
||||
- 基礎的なクローラーおよびタスク管理フレームワークとして [Crawlee](https://github.com/apify/crawlee-python) を導入し、ページ取得能力を大幅に向上させました。以前に取得できなかった(または取得が文字化けした)ページも現在は良好に取得できるようになりました。今後、良好に取得できないページがあれば、[issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136) でフィードバックをお願いします;
|
||||
- 新しい製品ポジション下での新しい情報抽出戦略——「クロールと検査の一体化」、記事の詳細抽出を放棄し、クロール過程でLLMを直接使用してユーザーが関心を持つ情報(infos)を抽出し、追跡が必要なリンクを自動的に判断します。**あなたが関心を持つことがあなたが必要なことです**;
|
||||
- 最新バージョン(v0.23.4)のPocketbaseに適合し、フォーム設定を更新しました。また、新しいアーキテクチャではGNEなどのモジュールが不要になり、requirement依存項目が8つに減少しました;
|
||||
- 新しいアーキテクチャのデプロイメントソリューションもより簡単になり、dockerモードでコードリポジトリのホットアップデートをサポートします。これは、今後のアップグレードでdocker buildを繰り返す必要がなくなることを意味します。
|
||||
- 詳細は [CHANGELOG](CHANGELOG.md) を参照してください
|
||||
また、テストスクリプトもオープンソース化しましたので、より多くのテスト結果の提出をお待ちしています。wiseflowはオープンソースプロジェクトであり、皆様の共同貢献を通じて「誰もが使える情報収集ツール」を作り上げたいと考えています!
|
||||
|
||||
🌟 **V0.3.x 今後の計画**
|
||||
詳細は[test/README_EN.md](./test/README_EN.md)をご参照ください。
|
||||
|
||||
- [SeeAct](https://github.com/OSU-NLP-Group/SeeAct) ソリューションを導入し、視覚大モデルを使用して複雑なページの操作をガイドします。例えば、スクロール、クリック後に情報が表示される場合など(V0.3.6);
|
||||
- 微信公众号のwxbotなしのサブスクリプションをサポートすることを試みます(V0.3.7);
|
||||
- RSS情報源のサポートを導入します(V0.3.8);
|
||||
- LLM駆動の軽量な知識グラフを導入し、ユーザーがinfosから洞察を得るのを助けます(V0.3.9)。
|
||||
現段階では、**テスト結果の提出はプロジェクトコードの提出と同等**とみなされ、contributorとして認められ、さらには商業化プロジェクトへの参加招待を受ける可能性もあります!
|
||||
|
||||
また、pocketbaseのダウンロードとユーザー名/パスワード設定方法を改善しました。@ourinesのinstall_pocketbase.shスクリプトの貢献に感謝いたします。
|
||||
|
||||
(dockerでの実行方案は一時的に削除されました。皆様にとってあまり便利ではないと感じたため...)
|
||||
|
||||
🌟 **V0.3.6バージョン予告**
|
||||
|
||||
V0.3.6バージョンは2024年12月30日までにリリース予定で、このバージョンはv0.3.5のパフォーマンス最適化版となります。情報抽出の品質が大幅に向上し、さらに視覚大規模モデルを導入して、ウェブページの情報が不足している場合にページ画像情報を補完として抽出します。
|
||||
|
||||
**V0.3.xプラン**
|
||||
|
||||
- WeChat公式アカウントのwxbotなしでの購読サポートを試行(V0.3.7)
|
||||
- RSS情報ソースのサポートを導入(V0.3.8)
|
||||
- LLM駆動の軽量知識グラフを導入し、ユーザーがinfosから洞察を得られるよう支援(V0.3.9)
|
||||
|
||||
V0.3.5バージョンからwiseflowは全く新しいアーキテクチャを採用し、[Crawlee](https://github.com/apify/crawlee-python)を基本クローラーとタスク管理フレームワークとして導入し、ページ取得能力を大幅に向上させました。今後もwiseflowのページ取得能力を継続的に向上させていきます。うまく取得できないページがありましたら、[issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136)でフィードバックをお願いします。
|
||||
|
||||
## ✋ wiseflow と従来のクローラーツール、AI検索、知識ベース(RAG)プロジェクトの違いは何ですか?
|
||||
|
||||
@ -49,110 +59,105 @@ wiseflowは2024年6月末にV0.3.0バージョンをリリースして以来、
|
||||
git clone https://github.com/TeamWiseFlow/wiseflow.git
|
||||
```
|
||||
|
||||
### 2. env_sample を参考に .env ファイルを core ディレクトリに配置
|
||||
### 2. ルートディレクトリのinstall_pocketbase.shスクリプトを実行
|
||||
|
||||
🌟 **ここは以前のバージョンと異なります**。V0.3.5からは .env を coreフォルダに配置する必要があります。
|
||||
このスクリプトは、pocketbase(バージョン0.23.4)のダウンロードと設定をガイドし、coreディレクトリの下に.envファイルを作成します。
|
||||
|
||||
また、V0.3.5からenv設定が大幅に簡素化され、必須の設定項目は3つだけです。具体的には以下の通り:
|
||||
```bash
|
||||
chmod +x install_pocketbase.sh
|
||||
./install_pocketbase.sh
|
||||
```
|
||||
|
||||
- LLM_API_KEY=""
|
||||
Wiseflow 0.3.xはデータベースとしてpocketbaseを使用しています。pocketbaseクライアント(バージョン0.23.4をダウンロードして[pb](./pb)ディレクトリに配置することを忘れないでください)を手動でダウンロードし、スーパーユーザーを手動で作成することもできます(.envファイルに保存することを忘れないでください)。
|
||||
|
||||
大モデルサービスのキーで、これは必須です
|
||||
詳細については、[pb/README.md](/pb/README.md)を参照してください。
|
||||
|
||||
- LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
### 3. core/.envファイルの設定を続行
|
||||
|
||||
サービスインターフェースのアドレスで、openai sdk をサポートする任意のサービスプロバイダーを使用できます。直接openaiのサービスを使用する場合、この項目は記入不要です
|
||||
🌟 **これは以前のバージョンとは異なります** - V0.3.5以降、.envファイルは[core](./core)フォルダに配置する必要があります。
|
||||
|
||||
- PB_API_AUTH="test@example.com|1234567890"
|
||||
#### 3.1 大規模言語モデルの設定
|
||||
|
||||
pocketbase データベースの superuser ユーザー名とパスワードで、| で区切ってください
|
||||
Wiseflowは LLMネイティブアプリケーションですので、プログラムに安定したLLMサービスを提供するようにしてください。
|
||||
|
||||
以下はオプションの設定です:
|
||||
🌟 **Wiseflowはモデルサービスのソースを制限しません - サービスがopenAI SDKと互換性があれば、ollama、Xinferenceなどのローカルにデプロイされたサービスを含め、すべて使用可能です**
|
||||
|
||||
#### 推奨1:Siliconflowが提供するMaaSサービスを使用
|
||||
|
||||
Siliconflowは、主流のオープンソースモデルのほとんどにオンラインMaaSサービスを提供しています。蓄積された推論加速技術により、そのサービスは速度と価格の両面で大きな利点があります。siliconflowのサービスを使用する場合、.envの設定は以下を参考にしてください:
|
||||
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
export PRIMARY_MODEL="Qwen/Qwen2.5-32B-Instruct"
|
||||
export SECONDARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
export VL_MODEL="OpenGVLab/InternVL2-26B"
|
||||
```
|
||||
|
||||
😄 よろしければ、私の[siliconflow紹介リンク](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92)をご利用ください。これにより、私もより多くのトークン報酬を獲得できます 🌹
|
||||
|
||||
#### 推奨2:OpenAI、Claude、Geminiなどのクローズドソース商用モデルにはAiHubMixプロキシを使用
|
||||
|
||||
情報ソースが主に非中国語のページで、抽出された情報が中国語である必要がない場合は、OpenAI、Claude、Geminiなどのクローズドソース商用モデルの使用をお勧めします。サードパーティプロキシの**AiHubMix**を試すことができます。OpenAI、Claude、Google、Llamaなど、主要なAIモデルに1つのAPIで簡単にアクセスできます。
|
||||
|
||||
AiHubMixモデルを使用する場合、.envの設定は以下を参考にしてください:
|
||||
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://aihubmix.com/v1" # 具体参考 https://doc.aihubmix.com/
|
||||
export PRIMARY_MODEL="gpt-4o"
|
||||
export SECONDARY_MODEL="gpt-4o-mini"
|
||||
export VL_MODEL="gpt-4o"
|
||||
```
|
||||
😄 [AiHubMixの紹介リンク](https://aihubmix.com?aff=Gp54)からご登録いただけますと幸いです 🌹
|
||||
|
||||
#### 3.2 Pocketbaseのアカウントとパスワードの設定
|
||||
|
||||
```bash
|
||||
export PB_API_AUTH="test@example.com|1234567890"
|
||||
```
|
||||
|
||||
これはpocketbaseデータベースのスーパーユーザー名とパスワードを設定する場所です。|で区切ることを忘れないでください(install_pocketbase.shスクリプトが正常に実行された場合、これは既に存在しているはずです)
|
||||
|
||||
#### 3.3 その他のオプション設定
|
||||
|
||||
以下はすべてオプションの設定です:
|
||||
- #VERBOSE="true"
|
||||
|
||||
観測モードを有効にするかどうかで、有効にすると、debug log情報がloggerファイルに記録されます(デフォルトではconsoleにのみ出力されます)。また、playwrightのブラウザウィンドウが開き、クロールプロセスを観察しやすくなります;
|
||||
|
||||
- #PRIMARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
|
||||
主モデルの選択で、siliconflowサービスを使用する場合、この項目を記入しないとデフォルトでQwen2.5-7B-Instructが呼び出されます。実測では基本的に十分ですが、より**Qwen2.5-14B-Instructを推奨**します
|
||||
|
||||
- #SECONDARY_MODEL="THUDM/glm-4-9b-chat"
|
||||
|
||||
副モデルの選択で、siliconflowサービスを使用する場合、この項目を記入しないとデフォルトでglm-4-9b-chatが呼び出されます。
|
||||
観察モードを有効にするかどうか。有効にすると、デバッグ情報がloggerファイルに記録されます(デフォルトではコンソールにのみ出力)。
|
||||
|
||||
- #PROJECT_DIR="work_dir"
|
||||
|
||||
プロジェクト実行データのディレクトリで、設定しない場合、デフォルトで `core/work_dir` になります。注意:現在、coreディレクトリ全体がcontainerにマウントされているため、ここに直接アクセスできます。
|
||||
プロジェクトの実行時データディレクトリ。設定しない場合、デフォルトで`core/work_dir`になります。注意:現在、core全体のディレクトリがコンテナにマウントされているため、直接アクセスできます。
|
||||
|
||||
- #PB_API_BASE=""
|
||||
|
||||
pocketbaseがデフォルトのIPまたはポートで実行されていない場合にのみ設定が必要で、デフォルトの場合は無視してください。
|
||||
pocketbaseがデフォルトのIPまたはポートで実行されていない場合にのみ設定が必要です。デフォルトの状況では、これを無視できます。
|
||||
|
||||
### 3.1 dockerを使用して実行
|
||||
### 4. プログラムの実行
|
||||
|
||||
✋ V0.3.5バージョンのアーキテクチャと依存関係は以前のバージョンと大きく異なるため、必ずコードを再取得し、古いバージョンのイメージ(pb_dataフォルダを含む)を削除し、再構築してください!
|
||||
|
||||
> ⚠️ または、ルートディレクトリにあるinstall_pocketbase.shスクリプトを実行してください。これにより、pocketbaseが自動的にダウンロードされ、設定されます。
|
||||
> ```bash
|
||||
> chmod +x install_pocketbase.sh
|
||||
> ./install_pocketbase.sh
|
||||
> ```
|
||||
✋ V0.3.5バージョンのアーキテクチャと依存関係は以前のバージョンと大きく異なります。必ずコードを再取得し、pb_dataを削除(または再構築)してください。
|
||||
|
||||
condaを使用して仮想環境を構築することをお勧めします(もちろん、このステップをスキップするか、他のPython仮想環境ソリューションを使用することもできます)
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
docker compose up
|
||||
```
|
||||
|
||||
**注意:**
|
||||
|
||||
初めてdocker containerを実行すると、プログラムがエラーを報告する可能性があります。これは正常な現象です。画面の指示に従ってsuper userアカウントを作成してください(必ずメールアドレスを使用してください)。そして、作成したユーザー名とパスワードを.envファイルに記入し、containerを再起動してください。
|
||||
|
||||
🌟 dockerソリューションはデフォルトで task.py を実行します。つまり、定期的にクロール-抽出タスクを実行します(起動時にすぐに1回実行され、その後1時間ごとに1回起動されます)
|
||||
|
||||
### 3.2 python環境を使用して実行
|
||||
|
||||
✋ V0.3.5バージョンのアーキテクチャと依存関係は以前のバージョンと大きく異なるため、必ずコードを再取得し、pb_dataを削除(または再構築)してください
|
||||
|
||||
condaを使用して仮想環境を構築することをお勧めします
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
conda create -n wiseflow python=3.10
|
||||
conda activate wiseflow
|
||||
cd core
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
その後、ここ [ダウンロード](https://pocketbase.io/docs/) から対応するpocketbaseクライアントを取得し、[/pb](/pb) ディレクトリに配置します。そして
|
||||
その後
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
cd core
|
||||
pip install -r requirements.txt
|
||||
chmod +x run.sh
|
||||
./run_task.sh # もしサイトを1回だけスキャンしたい場合(ループなし)、./run.sh を使用してください
|
||||
./run_task.sh # if you just want to scan sites one-time (no loop), use ./run.sh
|
||||
```
|
||||
|
||||
このスクリプトは、pocketbaseがすでに実行中かどうかを自動的に判断します。実行中でない場合、自動的に起動します。ただし、ctrl+cまたはctrl+zでプロセスを終了した場合、pocketbaseプロセスは終了せず、terminalを閉じるまで続行されます。
|
||||
🌟 このスクリプトは、pocketbaseが既に実行されているかどうかを自動的に判断します。実行されていない場合は自動的に起動します。ただし、ctrl+cまたはctrl+zでプロセスを終了した場合、ターミナルを閉じるまでpocketbaseプロセスは終了しないことに注意してください。
|
||||
|
||||
また、dockerデプロイと同様に、初回実行時にエラーが発生する可能性があります。画面の指示に従ってsuper userアカウントを作成してください(必ずメールアドレスを使用してください)。そして、作成したユーザー名とパスワードを.envファイルに記入し、再度実行してください。
|
||||
|
||||
もちろん、別のterminalで事前にpocketbaseを実行して設定することもできます(これにより初回のエラーを回避できます)。具体的には [pb/README.md](/pb/README.md) を参照してください
|
||||
|
||||
### 4. モデル推奨 [2024-12-09]
|
||||
|
||||
モデルのパラメータ数が多いほど、より優れた性能を意味しますが、実測では**Qwen2.5-7b-Instructとglm-4-9b-chatモデルを使用するだけで基本的な効果を得られる**ことがわかりました。ただし、コスト、速度、効果を総合的に考慮すると、主モデル
|
||||
**(PRIMARY_MODEL)にQwen2.5-14B-Instructを使用することをより推奨します**。
|
||||
|
||||
ここでは、siliconflow(シリコンフロー)のMaaSサービスを強く推奨します。複数の主流オープンソースモデルのサービスを提供し、大量のトークンを提供します。Qwen2.5-7b-Instructとglm-4-9b-chatは現在無料で提供されています。(主モデルにQwen2.5-14B-Instructを使用した場合、374ページをクロールし、43件のinfoを有効に抽出し、総コスト¥3.07)
|
||||
|
||||
😄 もしよろしければ、私の[siliconflow招待リンク](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92)を使用してください。そうすれば、私もより多くのトークンを獲得できます 🌹
|
||||
|
||||
**もしあなたの情報源が主に非中国語のページであり、抽出されたinfoを中国語にする必要がない場合、openaiやclaudeなどの海外メーカーのモデルを使用することをより推奨します。**
|
||||
|
||||
サードパーティのプロキシ **AiHubMix** を試すことができます。OpenAI、Claude、Google、Llamaなどの幅広い主要なAIモデルに、たった1つのAPIでシームレスにアクセスできます。;
|
||||
|
||||
😄 以下の招待リンク [AiHubMix招待リンク](https://aihubmix.com?aff=Gp54) を使用して登録してください 🌹
|
||||
|
||||
🌟 **wiseflow自体はどのモデルサービスにも限定されておらず、openAI SDKと互換性のあるサービスであれば、ローカルにデプロイされたollama、Xinferenceなどのサービスも含まれます**
|
||||
run_task.shは定期的にクローリング・抽出タスクを実行します(起動時に即座に実行され、その後1時間ごとに実行されます)。1回だけ実行する必要がある場合は、run.shスクリプトを使用できます。
|
||||
|
||||
|
||||
### 5. **関心事と定期的なスキャン情報源の追加**
|
||||
|
172
README_KR.md
@ -10,22 +10,32 @@
|
||||
|
||||
https://github.com/user-attachments/assets/f6fec29f-2b4b-40f8-8676-8433abb086a7
|
||||
|
||||
## 🔥 V0.3.5 버전 소개
|
||||
## 🔥 테스트 스크립트 및 테스트 보고서 발표
|
||||
|
||||
커뮤니티 피드백을 충분히 수렴한 후, 우리는 wiseflow의 제품 위치를 재정립하였으며, 새로운 위치는 더욱 집중되어 있습니다. V0.3.5 버전은 이 새로운 위치에 기반한 완전히 새로운 아키텍처 버전입니다.
|
||||
siliconflow에서 제공하는 deepseekV2.5, Qwen2.5-32B-Instruct, Qwen2.5-14B-Instruct, Qwen2.5-coder-7B-Instruct 모델의 성능을 4개의 실제 사례 작업과 총 10개의 실제 웹페이지 샘플에서 수평적으로 테스트하고 비교했습니다.
|
||||
테스트 결과는 [report](./test/reports/wiseflow_report_20241223_bigbrother666/README.md)를 참조하세요.
|
||||
|
||||
- [Crawlee](https://github.com/apify/crawlee-python)를 기본 크롤러 및 작업 관리 프레임워크로 도입하여 페이지 획득 능력을 크게 향상시켰습니다. 이전에 획득할 수 없었던 (또는 코드가 깨진) 페이지를 현재는 잘 획득할 수 있습니다. 향후 획득이 잘 되지 않는 페이지가 있다면, [issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136)에 피드백을 주시기 바랍니다.
|
||||
- 새로운 제품 위치에 따른 새로운 정보 추출 전략 — "크롤링과 조사 통합"을 도입하였습니다. 기사 상세 추출을 포기하고, 크롤링 과정에서 llm을 사용하여 사용자가 관심 있는 정보(infos)를 직접 추출하며, 추가로 크롤링할 가치가 있는 링크를 자동으로 판단합니다. **당신이 관심 있는 것이 당신이 필요한 것입니다.**
|
||||
- 최신 버전(v0.23.4)의 Pocketbase에 적합하며, 폼 구성을 업데이트하였습니다. 또한 새로운 아키텍처는 GNE 등의 모듈이 더 이상 필요하지 않으며, requirement 종속 항목이 8개로 줄었습니다.
|
||||
- 새로운 아키텍처의 배포 방식도 더욱 간편해졌으며, docker 모드는 코드 저장소 핫 업데이트를 지원합니다. 이는 향후 업그레이드 시 docker build를 다시 수행할 필요가 없음을 의미합니다.
|
||||
- 더 많은 세부 사항은 [CHANGELOG](CHANGELOG.md)를 참조하세요.
|
||||
또한 테스트 스크립트도 오픈소스로 공개했으니, 더 많은 테스트 결과를 적극적으로 제출해 주시기 바랍니다. wiseflow는 오픈소스 프로젝트이며, 모두의 공동 기여를 통해 "누구나 사용할 수 있는 정보 수집 도구"를 만들고자 합니다!
|
||||
|
||||
🌟 **V0.3.x 향후 계획**
|
||||
자세한 내용은 [test/README_EN.md](./test/README_EN.md)를 참조하세요.
|
||||
|
||||
- [SeeAct](https://github.com/OSU-NLP-Group/SeeAct) 방식을 도입하여, 시각 대형 모델을 통해 복잡한 페이지의 작업을 지원합니다. 예를 들어, 스크롤, 클릭 후 정보 표시 등 (V0.3.6).
|
||||
- 위챗 공중 계정 무료 구독 지원 시도 (V0.3.7).
|
||||
- RSS 정보 소스 지원 도입 (V0.3.8).
|
||||
- LLM 기반의 경량 지식 그래프 도입 시도, 사용자가 infos에서 통찰력을 구축하는 데 도움을 줍니다 (V0.3.9).
|
||||
현 단계에서는 **테스트 결과 제출이 프로젝트 코드 제출과 동일하게 취급**되며, contributor로 인정받을 수 있고, 심지어 상업화 프로젝트에 초대될 수도 있습니다!
|
||||
|
||||
또한 pocketbase의 다운로드 및 사용자 이름/비밀번호 구성 방안을 개선했으며, @ourines가 기여한 install_pocketbase.sh 스크립트에 감사드립니다.
|
||||
|
||||
(docker 실행 방안은 일시적으로 제거되었습니다. 사용하기에 그다지 편리하지 않다고 느껴져서...)
|
||||
|
||||
🌟 **V0.3.6 버전 예고**
|
||||
|
||||
V0.3.6 버전은 2024년 12월 30일 이전에 출시될 예정이며, 이 버전은 v0.3.5의 성능 최적화 버전입니다. 정보 추출 품질이 크게 향상될 것이며, 시각적 대형 모델도 도입하여 웹페이지 정보가 부족할 때 페이지 이미지 정보를 보완 자료로 추출할 예정입니다.
|
||||
|
||||
**V0.3.x 계획**
|
||||
|
||||
- 위챗 공중 계정 wxbot 없이 구독 지원 시도 (V0.3.7)
|
||||
- RSS 정보 소스 지원 도입 (V0.3.8)
|
||||
- LLM 기반의 경량 지식 그래프 도입 시도, 사용자가 infos에서 통찰력을 구축하도록 지원 (V0.3.9)
|
||||
|
||||
V0.3.5 버전부터 wiseflow는 완전히 새로운 아키텍처를 사용하며, [Crawlee](https://github.com/apify/crawlee-python)를 기본 크롤러 및 작업 관리 프레임워크로 도입하여 페이지 획득 능력을 크게 향상시켰습니다. 앞으로도 wiseflow의 페이지 획득 능력을 지속적으로 향상시킬 예정이며, 잘 획득되지 않는 페이지가 있다면 [issue #136](https://github.com/TeamWiseFlow/wiseflow/issues/136)에서 피드백을 주시기 바랍니다.
|
||||
|
||||
## ✋ wiseflow는 전통적인 크롤러 도구, AI 검색, 지식 베이스(RAG) 프로젝트와 어떻게 다를까요?
|
||||
|
||||
@ -49,108 +59,106 @@ wiseflow는 2024년 6월 말 V0.3.0 버전 출시 이후 오픈소스 커뮤니
|
||||
git clone https://github.com/TeamWiseFlow/wiseflow.git
|
||||
```
|
||||
|
||||
### 2. env_sample 참조하여 .env 파일 구성하고 core 디렉토리에 배치
|
||||
### 2. 루트 디렉토리에서 install_pocketbase.sh 스크립트 실행
|
||||
|
||||
🌟 **이전 버전과 다릅니다** V0.3.5부터 .env 파일을 core 폴더에 배치해야 합니다.
|
||||
이 스크립트는 pocketbase(버전 0.23.4)의 다운로드 및 구성을 안내하고 core 디렉토리 아래에 .env 파일을 생성합니다.
|
||||
|
||||
또한 V0.3.5부터 env 구성이 크게 단순화되었으며, 필수 구성 항목은 세 가지뿐입니다. 구체적인 내용은 다음과 같습니다:
|
||||
```bash
|
||||
chmod +x install_pocketbase.sh
|
||||
./install_pocketbase.sh
|
||||
```
|
||||
|
||||
- LLM_API_KEY=""
|
||||
Wiseflow 0.3.x는 데이터베이스로 pocketbase를 사용합니다. pocketbase 클라이언트를 수동으로 다운로드할 수도 있습니다(버전 0.23.4를 다운로드하여 [pb](./pb) 디렉토리에 배치하는 것을 잊지 마세요). 그리고 수퍼유저를 수동으로 생성할 수 있습니다(.env 파일에 저장하는 것을 잊지 마세요).
|
||||
|
||||
대형 모델 서비스 키, 이는 필수입니다.
|
||||
자세한 내용은 [pb/README.md](/pb/README.md)를 참조하세요.
|
||||
|
||||
- LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
### 3. core/.env 파일 구성 계속하기
|
||||
|
||||
서비스 인터페이스 주소, openai sdk를 지원하는 모든 서비스 제공자를 사용할 수 있습니다. openai 서비스를 직접 사용하는 경우, 이 항목은 비워둘 수 있습니다.
|
||||
🌟 **이전 버전과 다릅니다** - V0.3.5부터 .env 파일은 [core](./core) 폴더에 위치해야 합니다.
|
||||
|
||||
- PB_API_AUTH="test@example.com|1234567890"
|
||||
#### 3.1 대규모 언어 모델 구성
|
||||
|
||||
pocketbase 데이터베이스의 superuser 사용자 이름 및 비밀번호, |로 구분하세요.
|
||||
Wiseflow는 LLM 네이티브 애플리케이션이므로 프로그램에 안정적인 LLM 서비스를 제공하도록 해주세요.
|
||||
|
||||
아래는 선택적 구성입니다:
|
||||
🌟 **Wiseflow는 모델 서비스의 출처를 제한하지 않습니다 - ollama, Xinference 등 로컬에 배포된 서비스를 포함하여 openAI SDK와 호환되는 서비스라면 모두 사용할 수 있습니다**
|
||||
|
||||
#### 추천 1: Siliconflow가 제공하는 MaaS 서비스 사용
|
||||
|
||||
Siliconflow는 대부분의 주류 오픈소스 모델에 대한 온라인 MaaS 서비스를 제공합니다. 축적된 추론 가속화 기술로 속도와 가격 모두에서 큰 장점이 있습니다. siliconflow의 서비스를 사용할 때 .env 구성은 다음을 참조할 수 있습니다:
|
||||
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
export PRIMARY_MODEL="Qwen/Qwen2.5-32B-Instruct"
|
||||
export SECONDARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
export VL_MODEL="OpenGVLab/InternVL2-26B"
|
||||
```
|
||||
|
||||
😄 원하신다면 제 [siliconflow 추천 링크](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92)를 사용하실 수 있습니다. 이를 통해 제가 더 많은 토큰 보상을 받을 수 있습니다 🌹
|
||||
|
||||
#### 추천 2: OpenAI, Claude, Gemini와 같은 폐쇄형 상용 모델에는 AiHubMix 프록시 사용
|
||||
|
||||
정보 소스가 대부분 비한국어 페이지이고 추출된 정보가 한국어일 필요가 없다면, OpenAI, Claude, Gemini와 같은 폐쇄형 상용 모델을 사용하는 것이 좋습니다. 서드파티 프록시인 **AiHubMix**를 시도해볼 수 있습니다. 하나의 API로 OpenAI, Claude, Google, Llama 등 주요 AI 모델에 원활하게 접근할 수 있습니다.
|
||||
|
||||
AiHubMix 모델을 사용할 때 .env 구성은 다음을 참조할 수 있습니다:
|
||||
|
||||
```bash
|
||||
export LLM_API_KEY=Your_API_KEY
|
||||
export LLM_API_BASE="https://aihubmix.com/v1" # 具体参考 https://doc.aihubmix.com/
|
||||
export PRIMARY_MODEL="gpt-4o"
|
||||
export SECONDARY_MODEL="gpt-4o-mini"
|
||||
export VL_MODEL="gpt-4o"
|
||||
```
|
||||
|
||||
😄 Welcome to register using the [AiHubMix referral link](https://aihubmix.com?aff=Gp54) 🌹
|
||||
|
||||
#### 3.2 Pocketbase Account and Password Configuration
|
||||
|
||||
```bash
|
||||
export PB_API_AUTH="test@example.com|1234567890"
|
||||
```
|
||||
|
||||
여기서 pocketbase 데이터베이스의 슈퍼유저 사용자 이름과 비밀번호를 설정합니다. |로 구분하는 것을 잊지 마세요 (install_pocketbase.sh 스크립트가 성공적으로 실행되었다면 이미 존재할 것입니다)
|
||||
|
||||
#### 3.3 기타 선택적 구성
|
||||
|
||||
다음은 모두 선택적 구성입니다:
|
||||
- #VERBOSE="true"
|
||||
|
||||
관찰 모드 활성화 여부, 활성화하면 debug log 정보가 logger 파일에 기록됩니다 (기본적으로 console에만 출력됨). 또한 playwright 브라우저 창이 열리므로 크롤링 과정을 관찰하기 쉽습니다.
|
||||
|
||||
- #PRIMARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
|
||||
주 모델 선택, siliconflow 서비스를 사용하는 경우, 이 항목을 비워두면 기본적으로 Qwen2.5-7B-Instruct가 호출됩니다. 실제로 충분히 사용 가능하지만, 저는 **Qwen2.5-14B-Instruct**를 더 추천합니다.
|
||||
|
||||
- #SECONDARY_MODEL="THUDM/glm-4-9b-chat"
|
||||
|
||||
보조 모델 선택, siliconflow 서비스를 사용하는 경우, 이 항목을 비워두면 기본적으로 glm-4-9b-chat가 호출됩니다.
|
||||
관찰 모드를 활성화할지 여부. 활성화되면 디버그 정보가 로거 파일에 기록됩니다(기본적으로 콘솔에만 출력);
|
||||
|
||||
- #PROJECT_DIR="work_dir"
|
||||
|
||||
프로젝트 실행 데이터 디렉토리, 구성하지 않으면 기본적으로 `core/work_dir`에 저장됩니다. 주의: 현재 전체 core 디렉토리는 container에 마운트되어 있으므로, 여기에 직접 접근할 수 있습니다.
|
||||
프로젝트 런타임 데이터 디렉토리. 구성하지 않으면 기본값은 `core/work_dir`입니다. 참고: 현재 전체 core 디렉토리가 컨테이너에 마운트되어 있어 직접 접근할 수 있습니다.
|
||||
|
||||
- #PB_API_BASE=""
|
||||
|
||||
pocketbase가 기본 IP 또는 포트에서 실행되지 않는 경우에만 구성해야 합니다. 기본적으로 무시하면 됩니다.
|
||||
pocketbase가 기본 IP 또는 포트에서 실행되지 않는 경우에만 구성이 필요합니다. 기본 상황에서는 이를 무시할 수 있습니다.
|
||||
|
||||
### 3.1 docker를 사용하여 실행
|
||||
### 4. 프로그램 실행
|
||||
|
||||
✋ V0.3.5 버전의 아키텍처 및 종속성은 이전 버전과 크게 다릅니다. 반드시 코드를 다시 가져와 이전 버전 이미지 (pb_data 폴더 포함)를 삭제하고 다시 build하세요!
|
||||
✋ V0.3.5 버전의 아키텍처와 종속성은 이전 버전과 크게 다릅니다. 코드를 다시 가져오고, pb_data를 삭제(또는 재구축)하도록 하세요
|
||||
|
||||
> ⚠️ 대신 루트 디렉토리의 install_pocketbase.sh 스크립트를 실행하십시오. 이 스크립트는 자동으로 pocketbase를 다운로드하고 구성합니다.
|
||||
> ```bash
|
||||
> chmod +x install_pocketbase.sh
|
||||
> ./install_pocketbase.sh
|
||||
> ```
|
||||
가상 환경을 구축하기 위해 conda를 사용하는 것을 권장합니다(물론 이 단계를 건너뛰거나 다른 Python 가상 환경 솔루션을 사용할 수 있습니다)
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
docker compose up
|
||||
```
|
||||
|
||||
**주의:**
|
||||
|
||||
처음 docker container를 실행할 때 프로그램이 오류를 보고할 수 있습니다. 이는 정상적인 현상입니다. 화면의 프롬프트에 따라 superuser 계정을 생성하세요 (반드시 이메일 주소를 사용하세요). 그런 다음 생성된 사용자 이름과 비밀번호를 .env 파일에 입력하고 container를 다시 시작하세요.
|
||||
|
||||
🌟 docker 솔루션은 기본적으로 task.py를 실행하며, 이는 주기적으로 크롤링-추출 작업을 실행합니다 (시작 시 즉시 한 번 실행된 후, 매 시간마다 한 번씩 실행됩니다).
|
||||
|
||||
### 3.2 python 환경에서 실행
|
||||
|
||||
✋ V0.3.5 버전의 아키텍처 및 종속성은 이전 버전과 크게 다릅니다. 반드시 코드를 다시 가져와 pb_data를 삭제 (또는 재구축)하세요.
|
||||
|
||||
conda를 사용하여 가상 환경을 구축하는 것을 추천합니다.
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
conda create -n wiseflow python=3.10
|
||||
conda activate wiseflow
|
||||
cd core
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
그 후 [다운로드](https://pocketbase.io/docs/) 해당 pocketbase 클라이언트를 [/pb](/pb) 디렉토리에 배치하세요. 그리고
|
||||
그런 다음
|
||||
|
||||
```bash
|
||||
cd wiseflow
|
||||
cd core
|
||||
pip install -r requirements.txt
|
||||
chmod +x run.sh
|
||||
./run_task.sh # 사이트를 한 번만 스캔하려면 (루프 없이), ./run.sh를 사용하세요
|
||||
./run_task.sh # if you just want to scan sites one-time (no loop), use ./run.sh
|
||||
```
|
||||
|
||||
이 스크립트는 pocketbase가 이미 실행 중인지 자동으로 판단하며, 실행 중이 아니면 자동으로 시작합니다. 그러나 ctrl+c 또는 ctrl+z로 프로세스를 종료할 때 pocketbase 프로세스는 종료되지 않으며, terminal을 닫을 때까지 계속 실행됩니다.
|
||||
🌟 이 스크립트는 pocketbase가 이미 실행 중인지 자동으로 확인합니다. 실행 중이 아닌 경우 자동으로 시작됩니다. 단, ctrl+c 또는 ctrl+z로 프로세스를 종료할 때 터미널을 닫을 때까지 pocketbase 프로세스는 종료되지 않는다는 점에 유의하세요.
|
||||
|
||||
또한 docker 배포와 마찬가지로, 처음 실행할 때 오류가 발생할 수 있습니다. 화면의 프롬프트에 따라 superuser 계정을 생성하세요 (반드시 이메일 주소를 사용하세요). 그런 다음 생성된 사용자 이름과 비밀번호를 .env 파일에 입력하고 다시 실행하세요.
|
||||
|
||||
물론 다른 terminal에서 미리 pocketbase를 실행하고 설정할 수도 있습니다 (이렇게 하면 첫 번째 오류를 방지할 수 있습니다). 구체적인 내용은 [pb/README.md](/pb/README.md)를 참조하세요.
|
||||
|
||||
### 4. 모델 추천 [2024-12-09]
|
||||
|
||||
모델의 매개변수 수가 많을수록 더 나은 성능을 의미하지만, 실제 테스트를 통해 **Qwen2.5-7b-Instruct 및 glm-4-9b-chat 모델을 사용하면 기본적인 효과를 얻을 수 있음**이 확인되었습니다. 그러나 비용, 속도 및 효과를 종합적으로 고려할 때, 저는 주 모델 **(PRIMARY_MODEL)로 Qwen2.5-14B-Instruct를 더 추천합니다**.
|
||||
|
||||
여기에서 siliconflow (규소 흐름)의 MaaS 서비스를 강력히 추천합니다. 여러 주요 오픈소스 모델의 서비스를 제공하며, 대량 서비스를 제공합니다. Qwen2.5-7b-Instruct 및 glm-4-9b-chat는 현재 무료 서비스를 제공합니다. (주 모델로 Qwen2.5-14B-Instruct를 사용하는 경우, 374개의 웹페이지를 크롤링하고 43개의 유효한 info를 추출하여 총 비용은 ¥3.07입니다).
|
||||
|
||||
😄 원한다면 제 [siliconflow 초대 링크](https://cloud.siliconflow.cn?referrer=clx6wrtca00045766ahvexw92)를 사용하여 등록할 수 있으며, 이 경우 저도 더 많은 token 보상을 받을 수 있습니다 🌹
|
||||
|
||||
**만약 귀하의 정보 소스가 주로 중국어가 아닌 페이지이고, 추출된 info가 중국어일 필요가 없다면, openai 또는 claude와 같은 해외 제조사의 모델을 사용하는 것을 더 추천합니다.**
|
||||
|
||||
타사 프록시 **AiHubMix**를 사용하여 단 하나의 API로 OpenAI, Claude, Google, Llama 등과 같은 다양한 주요 AI 모델에 원활하게 액세스할 수 있습니다.
|
||||
|
||||
😄 다음 초대 링크 [AiHubMix 초대 링크](https://aihubmix.com?aff=Gp54)를 사용하여 등록하세요 🌹
|
||||
|
||||
🌟 **wiseflow 자체는 어떤 모델 서비스에도 제한을 두지 않으며, openAI SDK와 호환되는 서비스라면 모두 사용 가능합니다. 로컬에 배포된 ollama, Xinference 등의 서비스도 포함됩니다.**
|
||||
run_task.sh는 주기적으로 크롤링-추출 작업을 실행합니다(시작 시 즉시 실행되고 그 후 매시간마다 실행됨). 한 번만 실행하면 되는 경우 run.sh 스크립트를 사용할 수 있습니다.
|
||||
|
||||
### 5. **관심사 및 정기 스캔 정보 소스 추가**
|
||||
|
||||
|
@ -63,7 +63,8 @@ def extract_and_convert_dates(input_string):
|
||||
r'(\d{4})/(\d{2})/(\d{2})', # YYYY/MM/DD
|
||||
r'(\d{4})\.(\d{2})\.(\d{2})', # YYYY.MM.DD
|
||||
r'(\d{4})\\(\d{2})\\(\d{2})', # YYYY\MM\DD
|
||||
r'(\d{4})(\d{2})(\d{2})' # YYYYMMDD
|
||||
r'(\d{4})(\d{2})(\d{2})', # YYYYMMDD
|
||||
r'(\d{4})年(\d{2})月(\d{2})日' # YYYY年MM月DD日
|
||||
]
|
||||
|
||||
matches = []
|
||||
|
@ -1,11 +1,11 @@
|
||||
export LLM_API_KEY=""
|
||||
export LLM_API_BASE="https://api.siliconflow.cn/v1"
|
||||
export PRIMARY_MODEL="Qwen/Qwen2.5-32B-Instruct"
|
||||
export SECONDARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
export VL_MODEL="OpenGVLab/InternVL2-26B"
|
||||
export PB_API_AUTH="test@example.com|1234567890" ##your pb superuser account and password
|
||||
|
||||
##belowing is optional, go as you need
|
||||
#export VERBOSE="true" ##for detail log info. If not need, remove this item.
|
||||
#export PRIMARY_MODEL="Qwen/Qwen2.5-14B-Instruct"
|
||||
#export SECONDARY_MODEL="Qwen/Qwen2.5-7B-Instruct"
|
||||
#export VL_MODEL="OpenGVLab/InternVL2-26B"
|
||||
export PROJECT_DIR="work_dir"
|
||||
#export PB_API_BASE="" ##only use if your pb not run on 127.0.0.1:8090
|
@ -1,12 +1,35 @@
|
||||
| 模型 | 提示语言 | 漏字 | 不遵守指令 | 识别错误 | 幻觉 | 总分 | 评价 |
|
||||
|------|----------|------|------------|----------|------|------|------|
|
||||
| Qwen/Qwen2-VL-72B-Instruct | cn prompt | 2 | 1 | 3 | 0 | 6 | |
|
||||
| | en prompt | 2 | 1 | 1 | 0 | 4 | 👍 |
|
||||
| OpenGVLab/InternVL2-26B | cn prompt | 1 | 0 | 2 | 0 | 3 | 👍👍 |
|
||||
| | en prompt | 0 | 2 | 3 | 0 | 5 | |
|
||||
| Pro/Qwen/Qwen2-VL-7B-Instruct | cn prompt | 1 | 1 | 2 | 1 | 5 | |
|
||||
| | en prompt | 0 | 2 | 3 | 0 | 5 | |
|
||||
| Pro/OpenGVLab/InternVL2-8B | cn prompt | 3 | 2 | 2 | 0 | 7 | |
|
||||
| | en prompt | 2 | 2 | 4 | 1 | 9 | |
|
||||
| deepseek-ai/deepseek-vl2 | cn prompt | 1 | 1 | 1 | 1 | 4 | 👍 |
|
||||
| | en prompt | 3 | 0 | 1 | 4 | 8 | |
|
||||
# 测试脚本说明
|
||||
|
||||
## 网页内容获取和解析
|
||||
|
||||
[fetching_for_sample.py](./fetching_for_sample.py)
|
||||
|
||||
- 使用前编辑脚本 `sites` 和 `save_dir` 变量,指定要爬取的网站和保存的目录
|
||||
|
||||
## 从已解析的网页内容中提取关注内容或相关链接【可同时测试多个模型】
|
||||
|
||||
[get_info_test.py](./get_info_test.py)
|
||||
|
||||
- 使用前编辑脚本 `sample_dir` 变量,指定要解析的网页内容目录(一般就是 fetching_for_sample.py 中保存的目录,要保证这里有已经解析好的网页内容,至少包含 `text.txt` 文件和 `link_dict.json` 文件)
|
||||
- 为测试任务创建 关注点说明,可以参考 [reports/wiseflow_report_20241223_bigbrother666/task0/focus_point.json](./reports/wiseflow_report_20241223_bigbrother666/task0/focus_point.json),
|
||||
|
||||
注意:对应不同关注点的 sample文件,需要放入不同的文件夹下,具体结构可以参考 [reports/wiseflow_report_20241223_bigbrother666](./reports/wiseflow_report_20241223_bigbrother666)
|
||||
- 使用前编辑脚本 `models` 和 `vl_model` 变量,指定要测试的模型
|
||||
|
||||
要更改 get_info 的 prompt,请编辑 [prompts.py](./prompts.py), 如果要使用非 openai SDK的数据格式的provider,请编辑 [openai_wrapper.py](./openai_wrapper.py)
|
||||
|
||||
# 结果提交与共享
|
||||
|
||||
wiseflow 是一个开源项目,希望通过大家共同的贡献,打造“人人可用的信息爬取工具”!
|
||||
|
||||
现阶段,**提交测试结果等同于提交项目代码**,同样会被接纳为contributor,甚至受邀参加商业化项目!
|
||||
|
||||
测试结果提交请统一放入 [reports](./reports) 目录下,并为单次测试创建子目录,名称为 `{测试内容}_{测试时间}_{测试者}`,例如:
|
||||
|
||||
```bash
|
||||
mkdir -p reports/wiseflow_report_20241223_bigbrother666
|
||||
```
|
||||
|
||||
请将所有测试 sample 和程序运行的原始输出结果一并提交,并在目录下创建 README.md 文件,记录测试内容、测试时间、测试者、测试模型、结论、统计表格等。
|
||||
|
||||
最后编辑 [reports/README.md](./reports/README.md) 文件,将测试结果的目录名添加到 index 中,以便于他人查看。
|
||||
|
35
test/README_EN.md
Normal file
@ -0,0 +1,35 @@
|
||||
# Test Script Documentation
|
||||
|
||||
## Web Content Fetching and Parsing
|
||||
|
||||
[fetching_for_sample.py](./fetching_for_sample.py)
|
||||
|
||||
- Before using, edit the `sites` and `save_dir` variables in the script to specify target websites and save directory
|
||||
|
||||
## Extract Focus Content or Related Links from Parsed Web Content [Multiple Models Can Be Tested Simultaneously]
|
||||
|
||||
[get_info_test.py](./get_info_test.py)
|
||||
|
||||
- Before using, edit the `sample_dir` variable in the script to specify the directory of parsed web content (generally the directory saved by fetching_for_sample.py, which must contain parsed web content including at least `text.txt` file and `link_dict.json` file)
|
||||
- Create focus point descriptions for test tasks, refer to [reports/wiseflow_report_20241223_bigbrother666/task0/focus_point.json](./reports/wiseflow_report_20241223_bigbrother666/task0/focus_point.json)
|
||||
|
||||
Note: Sample files for different focus points need to be placed in different folders, refer to the structure in [reports/wiseflow_report_20241223_bigbrother666](./reports/wiseflow_report_20241223_bigbrother666)
|
||||
- Before using, edit the `models` and `vl_model` variables in the script to specify models to test
|
||||
|
||||
To modify get_info prompts, edit [prompts.py](./prompts.py). For providers not using OpenAI SDK data format, edit [openai_wrapper.py](./openai_wrapper.py)
|
||||
|
||||
# Result Submission and Sharing
|
||||
|
||||
Wiseflow is an open source project aiming to create an "information crawling tool for everyone" through collective contributions!
|
||||
|
||||
At this stage, **submitting test results is equivalent to submitting project code** - you'll be accepted as a contributor and may even be invited to participate in commercial projects!
|
||||
|
||||
Test results should be submitted to the [reports](./reports) directory. Create a subdirectory for each test named `{test_content}_{test_date}_{tester}`, for example:
|
||||
|
||||
```bash
|
||||
mkdir -p reports/wiseflow_report_20241223_bigbrother666
|
||||
```
|
||||
|
||||
Please submit all test samples and the original output results of the program run, and create a README.md file in the directory to record the test content, test date, tester, test models, conclusions, statistical tables, etc.
|
||||
|
||||
Finally, edit the [reports/README.md](./reports/README.md) file, add the directory name of the test result to the index, so that others can view it.
|
@ -35,7 +35,7 @@ def find_article_or_list(link_dict, text) -> (bool, bool, str):
|
||||
for url in link_dict.values():
|
||||
url_lower = url.lower()
|
||||
has_common_ext = any(url_lower.endswith(ext) for ext in common_file_exts)
|
||||
has_common_tld = any(url_lower.endswith(tld) for tld in common_tlds)
|
||||
has_common_tld = any(url_lower.endswith(tld) or url_lower.endswith(tld + '/') for tld in common_tlds)
|
||||
if not has_common_ext and not has_common_tld:
|
||||
valid_url_count += 1
|
||||
|
||||
|
@ -11,8 +11,8 @@ from find_article_or_list import find_article_or_list, common_tlds, common_file_
|
||||
|
||||
sample_dir = 'webpage_samples'
|
||||
models = ['deepseek-ai/DeepSeek-V2.5', 'Qwen/Qwen2.5-Coder-32B-Instruct', 'Qwen/Qwen2.5-32B-Instruct', 'Qwen/Qwen2.5-14B-Instruct', 'Qwen/Qwen2.5-Coder-7B-Instruct']
|
||||
secondary_mpdel = 'Qwen/Qwen2.5-7B-Instruct'
|
||||
vl_model = ''
|
||||
# secondary_model = 'Qwen/Qwen2.5-7B-Instruct' # recommended to use for source and publish date extraction
|
||||
vl_model = 'OpenGVLab/InternVL2-26B'
|
||||
|
||||
async def generate_results(text, model, system_prompt, suffix_prompt) -> set:
|
||||
lines = text.split('\n')
|
||||
@ -31,9 +31,12 @@ async def generate_results(text, model, system_prompt, suffix_prompt) -> set:
|
||||
print(f"warning: bad generate result")
|
||||
text_batch = ''
|
||||
continue
|
||||
result = result[0].strip()
|
||||
result = result.split('\n')
|
||||
cache.update(result)
|
||||
for item in result:
|
||||
item = item.strip()
|
||||
if not item:
|
||||
continue
|
||||
item = item.split('\n')
|
||||
cache.update(item)
|
||||
text_batch = ''
|
||||
|
||||
if text_batch:
|
||||
@ -46,9 +49,12 @@ async def generate_results(text, model, system_prompt, suffix_prompt) -> set:
|
||||
if not result:
|
||||
print(f"warning: bad generate result")
|
||||
return cache
|
||||
result = result[0].strip()
|
||||
result = result.split('\n')
|
||||
cache.update(result)
|
||||
for item in result:
|
||||
item = item.strip()
|
||||
if not item:
|
||||
continue
|
||||
item = item.split('\n')
|
||||
cache.update(item)
|
||||
return cache
|
||||
|
||||
|
||||
@ -65,13 +71,13 @@ async def extract_info_from_img(text, link_dict) -> str:
|
||||
if url in cache:
|
||||
replace_text = cache[url]
|
||||
else:
|
||||
if any(url.lower().endswith(tld) for tld in common_tlds):
|
||||
if any(url.lower().endswith(tld) or url.lower().endswith(tld + '/') for tld in common_tlds):
|
||||
continue
|
||||
if any(url.lower().endswith(ext) for ext in common_file_exts if ext not in ['jpg', 'jpeg', 'png']):
|
||||
continue
|
||||
llm_output = await llm([{"role": "user",
|
||||
"content": [{"type": "image_url", "image_url": {"url": url, "detail": "high"}},
|
||||
{"type": "text", "text": image_system}]}], model='OpenGVLab/InternVL2-26B')
|
||||
{"type": "text", "text": image_system}]}], model=vl_model)
|
||||
print(f"vl model output: \n{llm_output}\n")
|
||||
replace_text = llm_output
|
||||
cache[url] = replace_text
|
||||
@ -108,16 +114,21 @@ async def main(link_dict, text, record_file, prompts):
|
||||
hallucination_times += 1
|
||||
continue
|
||||
# 从item中提取[]中的url标记
|
||||
url_tag = re.search(r'\[(.*?)]', item).group(1)
|
||||
if url_tag not in link_dict:
|
||||
url_tags = re.findall(r'\[url\d+]', item)
|
||||
if not url_tags:
|
||||
hallucination_times += 1
|
||||
continue
|
||||
result_url = link_dict[url_tag]
|
||||
if any(result_url.lower().endswith(tld) for tld in common_tlds):
|
||||
for url_tag in url_tags:
|
||||
url_tag = url_tag[1:-1] # 去掉前后的[]
|
||||
if url_tag not in link_dict:
|
||||
hallucination_times += 1
|
||||
continue
|
||||
result_url = link_dict[url_tag]
|
||||
if any(result_url.lower().endswith(tld) or result_url.lower().endswith(tld + '/') for tld in common_tlds):
|
||||
continue
|
||||
if any(result_url.lower().endswith(ext) for ext in common_file_exts):
|
||||
if any(result_url.lower().endswith(ext) for ext in common_file_exts if ext not in ['jpg', 'jpeg', 'png']):
|
||||
continue
|
||||
final_result.add(item)
|
||||
final_result.add(f'{item} {result_url}')
|
||||
else:
|
||||
result = json_repair.repair_json(item, return_objects=True)
|
||||
if not isinstance(result, dict):
|
||||
@ -129,12 +140,12 @@ async def main(link_dict, text, record_file, prompts):
|
||||
if 'focus' not in result or 'content' not in result:
|
||||
hallucination_times += 1
|
||||
continue
|
||||
if not result['content'].strip() or not result['focus'].strip():
|
||||
if not result['content'] or not result['focus']:
|
||||
hallucination_times += 1
|
||||
continue
|
||||
if result['focus'].startswith('#'):
|
||||
result['focus'] = result['focus'][1:]
|
||||
final_result.add(result)
|
||||
final_result.add(f'{result}')
|
||||
|
||||
final_infos = '\n'.join(final_result)
|
||||
|
||||
@ -166,6 +177,7 @@ async def main(link_dict, text, record_file, prompts):
|
||||
with open(record_file, 'a') as f:
|
||||
f.write(f"llm model: {model}\n")
|
||||
f.write(f"hallucination times: {hallucination_times}\n")
|
||||
f.write(f"total results: {len(final_result)}\n")
|
||||
f.write(f"total analysis time: {total_analysis_time}\n\n")
|
||||
f.write(f"author and publish time(not formated): {ap_}\n")
|
||||
f.write(f"infos(not formated): \n{final_infos}\n")
|
||||
@ -177,7 +189,7 @@ async def main(link_dict, text, record_file, prompts):
|
||||
if __name__ == '__main__':
|
||||
dirs = os.listdir(sample_dir)
|
||||
for _dir in dirs:
|
||||
if not _dir.startswith('task0'):
|
||||
if not _dir.startswith('task'):
|
||||
continue
|
||||
_path = os.path.join(sample_dir, _dir)
|
||||
if not os.path.isdir(_path):
|
||||
|
BIN
test/image.png
Before Width: | Height: | Size: 159 KiB |
@ -10,8 +10,7 @@ text_info_system = '''作为信息提取助手,你的任务是从给定的网
|
||||
- 对于最终输出的信息,请保证主体、时间、地点等关键要素的清晰明确,为此可能需要综合上下文进行提取
|
||||
- 如果提取的内容中包括类似“<mp4>”、“[url1]”这样的片段,务必保留'''
|
||||
|
||||
text_info_suffix = '''请先复述一遍关注点及其解释,再对原文逐行进行分析。
|
||||
如果网页文本中包含关注点相关的内容,请按照以下json格式输出提取的信息:
|
||||
text_info_suffix = '''请先复述一遍关注点及其解释,再对原文进行分析。如果网页文本中包含关注点相关的内容,请按照以下json格式输出提取的信息:
|
||||
{"focus": 关注点名称, "content": 提取的内容}
|
||||
|
||||
如果有多条相关信息,请按一行一条的格式输出,最终输出的结果整体用三引号包裹,三引号内不要有其他内容,如下是输出格式示例:
|
||||
|
4
test/reports/README.md
Normal file
@ -0,0 +1,4 @@
|
||||
# index of reports
|
||||
|
||||
- [extract info from pics test](./extract_info_from_pics_test_20241222_bigbrother666/README.md) by bigbrother666 2024-12-22
|
||||
- [wiseflow report](./wiseflow_report_20241223_bigbrother666/README.md) by bigbrother666 2024-12-23
|
@ -0,0 +1,33 @@
|
||||
# extract info from pics test
|
||||
|
||||
2024-12-22
|
||||
|
||||
by bigbrother666
|
||||
|
||||
## test solution
|
||||
|
||||
|
||||
- Used [./vl_pic_test.py](./vl_pic_test.py) to test image information extraction capabilities of vision language models currently available on the siliconflow platform (test samples are images from Chinese webpages, see script for details).
|
||||
|
||||
- The main task is to extract text information from images as a supplement when webpage information is insufficient.
|
||||
|
||||
- Designed both Chinese and English prompts for testing.
|
||||
|
||||
## conclusion
|
||||
|
||||
Overall, OpenGVLab/InternVL2-26B performs best when using Chinese prompts.
|
||||
|
||||
## Detailed Test Results
|
||||
|
||||
| Model | Prompt Language | Missing Characters | Output Not Following Instructions | Recognition Errors | Hallucinations | Total Score | Rating |
|
||||
|-------|----------------|-------------------|--------------------------|-------------------|----------------|--------------|---------|
|
||||
| Qwen/Qwen2-VL-72B-Instruct | cn prompt | 2 | 1 | 3 | 0 | 6 | |
|
||||
| | en prompt | 2 | 1 | 1 | 0 | 4 | 👍 |
|
||||
| OpenGVLab/InternVL2-26B | cn prompt | 1 | 0 | 2 | 0 | 3 | 👍👍 |
|
||||
| | en prompt | 0 | 2 | 3 | 0 | 5 | |
|
||||
| Pro/Qwen/Qwen2-VL-7B-Instruct | cn prompt | 1 | 1 | 2 | 1 | 5 | |
|
||||
| | en prompt | 0 | 2 | 3 | 0 | 5 | |
|
||||
| Pro/OpenGVLab/InternVL2-8B | cn prompt | 3 | 2 | 2 | 0 | 7 | |
|
||||
| | en prompt | 2 | 2 | 4 | 1 | 9 | |
|
||||
| deepseek-ai/deepseek-vl2 | cn prompt | 1 | 1 | 1 | 1 | 4 | 👍 |
|
||||
| | en prompt | 3 | 0 | 1 | 4 | 8 | |
|
@ -0,0 +1,67 @@
|
||||
# wiseflow testing report
|
||||
|
||||
2024-12-23
|
||||
|
||||
by bigbrother666
|
||||
|
||||
## summary
|
||||
|
||||
- task number: 4
|
||||
- sample number: 10
|
||||
- involved models: ['deepseek-ai/DeepSeek-V2.5', 'Qwen/Qwen2.5-Coder-32B-Instruct', 'Qwen/Qwen2.5-32B-Instruct', 'Qwen/Qwen2.5-14B-Instruct', 'Qwen/Qwen2.5-Coder-7B-Instruct']
|
||||
- model provider: siliconflow api
|
||||
|
||||
## conclusion
|
||||
|
||||
Overall, Qwen2.5-32B-Instruct and DeepSeek-V2.5 perform significantly better than other evaluated models.
|
||||
|
||||
Comparatively, Qwen2.5-32B-Instruct tends to prioritize extraction accuracy, which may result in information omission; while DeepSeek-V2.5 tends to extract as much information as possible (while maintaining certain precision), which may lead to information redundancy.
|
||||
|
||||
Two interesting points:
|
||||
|
||||
- Due to its smaller parameter size, Qwen2.5-Coder-7B-Instruct cannot understand the focus requirements well. It tends to extract all available information, but can still maintain stable output format as required by the prompt (comparatively, Qwen2.5-7B-Instruct often fails to follow the instructed output format, and even Qwen2.5-14B-Instruct tends to deviate from the instructed format). Therefore, if you don't mind mixing in excessive irrelevant information, Qwen2.5-Coder-7B-Instruct could be a cost-effective choice;
|
||||
|
||||
- DeepSeek-V2.5 performs remarkably well in focus information extraction and relevant link selection, but performs poorly in author and publish date extraction, even worse than Qwen2.5-7B-Instruct. The latter, while performing worse than Qwen2.5-Coder-7B-Instruct in information extraction tasks, excels at author and publish date extraction, so I would recommend using it as a secondary model.
|
||||
|
||||
## Detailed Test Results
|
||||
|
||||
| sample | DeepSeek-V2.5👍 | Qwen2.5-Coder-32B-Instruct | Qwen2.5-32B-Instruct👍 | Qwen2.5-14B-Instruct | Qwen2.5-Coder-7B-Instruct |
|
||||
|--------|---------------|---------------------------|---------------------|---------------------|--------------------------|
|
||||
| ab9447 | 3 | 5 | 6 | 22 | 3 |
|
||||
| 53e552 | 6 | 9 | 6 | 0 | 4 |
|
||||
| 8c1617 | 1 | 0 | 1 | 0 | 3 |
|
||||
| eca076 | 0 | 0 | 0 | 0 | 7 |
|
||||
| ffffe4 | 0 | 7 | 0 | 3 | 0 |
|
||||
| 3958ab | 0 | 0 | 0 | 0 | 1 |
|
||||
| 9c76f8 | 7 | 18 | 14 | 13 | 23 |
|
||||
| e8c97c | 17 | 8 | 7 | 22 | 56 |
|
||||
| 29229b | 12 | 11 | 4 | 29 | 14 |
|
||||
| 407948 | 3 | 14 | 2 | 2 | 5 |
|
||||
| total | 49 | 72 | 40 | 91 | 116 |
|
||||
| cost | 0.143 | 0.126 | 0.1099 | 0.0646 | 0 |
|
||||
|
||||
- Scores represent the number of times the output deviated from human expectations, including omissions, extraction errors, and hallucinations, so lower scores are better.
|
||||
- Cost unit is ¥, all evaluations use siliconflow api, according to siliconflow official pricing.
|
||||
|
||||
deepseek-ai/DeepSeek-V2.5: ¥1.33 / M Tokens
|
||||
|
||||
Qwen/Qwen2.5-Coder-32B-Instruct: ¥1.26 / M Tokens
|
||||
|
||||
Qwen/Qwen2.5-32B-Instruct: ¥1.26 / M Tokens
|
||||
|
||||
Qwen/Qwen2.5-14B-Instruct: ¥0.7 / M Tokens
|
||||
|
||||
Qwen/Qwen2.5-Coder-7B-Instruct: 0 / M Tokens (Limited time free)
|
||||
|
||||
| Model | Prompt Language | Missing Characters | Not Following Instructions | Recognition Errors | Hallucinations | Total Score | Rating |
|
||||
|-------|----------------|-------------------|--------------------------|-------------------|----------------|--------------|---------|
|
||||
| Qwen/Qwen2-VL-72B-Instruct | cn prompt | 2 | 1 | 3 | 0 | 6 | |
|
||||
| | en prompt | 2 | 1 | 1 | 0 | 4 | 👍 |
|
||||
| OpenGVLab/InternVL2-26B | cn prompt | 1 | 0 | 2 | 0 | 3 | 👍👍 |
|
||||
| | en prompt | 0 | 2 | 3 | 0 | 5 | |
|
||||
| Pro/Qwen/Qwen2-VL-7B-Instruct | cn prompt | 1 | 1 | 2 | 1 | 5 | |
|
||||
| | en prompt | 0 | 2 | 3 | 0 | 5 | |
|
||||
| Pro/OpenGVLab/InternVL2-8B | cn prompt | 3 | 2 | 2 | 0 | 7 | |
|
||||
| | en prompt | 2 | 2 | 4 | 1 | 9 | |
|
||||
| deepseek-ai/deepseek-vl2 | cn prompt | 1 | 1 | 1 | 1 | 4 | 👍 |
|
||||
| | en prompt | 3 | 0 | 1 | 4 | 8 | |
|
@ -0,0 +1,10 @@
|
||||
{
|
||||
"input_0": {
|
||||
"input": {
|
||||
"type": "text",
|
||||
"values": [
|
||||
"id=_PageBar_Index_0 size=4 style=width:25px;height:15px; margin-top: 2px;border:0;border-bottom:1px solid black;background:#fff;text-align: center; onkeyup=value=value.replace(/\\D/g,'')"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,133 @@
|
||||
{
|
||||
"url0": "https://www.gd121.cn/js/scrolltop/img/scrolltop.png",
|
||||
"url1": "https://www.gd121.cn/js/scrolltop/img/shouye.png",
|
||||
"url2": "https://www.gd121.cn/img/img/header/logo.png",
|
||||
"url3": "https://www.gd121.cn/img/img/header/adheader.png",
|
||||
"url4": "https://www.gd121.cn/site3/images/zx/yjxy/2018/06/15/D0516EE2248B72CC40A4D9A067ACD63E.jpg",
|
||||
"url5": "https://www.gd121.cn/upload/image/2022/05/12/1652320917678096536.jpg",
|
||||
"url6": "https://www.gd121.cn/upload/image/2021/03/04/1614835718147071414.jpg",
|
||||
"url7": "https://www.gd121.cn/site3/images/kp/yjkp/yjcs/zrzhsjcs/2015/05/27/0C9363B3A37C43AC789B4B56664B2832.png",
|
||||
"url8": "https://www.gd121.cn/img/placeholder.png",
|
||||
"url9": "https://www.gd121.cn/img/placeholder.png",
|
||||
"url10": "https://www.gd121.cn/site3/images/kp/yjkp/yjxh/2015/05/26/EB98E3D78766572A772B24B31F92FEA8.gif",
|
||||
"url11": "https://www.gd121.cn/img/blank.gif",
|
||||
"url12": "https://www.gd121.cn/img/blank.gif",
|
||||
"url13": "https://www.gd121.cn/img/blank.gif",
|
||||
"url14": "https://www.gd121.cn/img/blank.gif",
|
||||
"url15": "https://www.gd121.cn/img/blue.png",
|
||||
"url16": "https://www.gd121.cn/img/blank.gif",
|
||||
"url17": "https://www.gd121.cn/img/blank.gif",
|
||||
"url18": "https://www.gd121.cn/index.shtml",
|
||||
"url19": "https://www.gd121.cn/yj/index.shtml",
|
||||
"url20": "https://www.gd121.cn/yj/index.shtml?city=广州",
|
||||
"url21": "https://www.gd121.cn/yj/index.shtml?city=深圳",
|
||||
"url22": "https://www.gd121.cn/yj/index.shtml?city=佛山",
|
||||
"url23": "https://www.gd121.cn/yj/index.shtml?city=东莞",
|
||||
"url24": "https://www.gd121.cn/yj/index.shtml?city=中山",
|
||||
"url25": "https://www.gd121.cn/yj/index.shtml?city=珠海",
|
||||
"url26": "https://www.gd121.cn/yj/index.shtml?city=惠州",
|
||||
"url27": "https://www.gd121.cn/yj/index.shtml?city=江门",
|
||||
"url28": "https://www.gd121.cn/yj/index.shtml?city=肇庆",
|
||||
"url29": "https://www.gd121.cn/yj/index.shtml?city=汕头",
|
||||
"url30": "https://www.gd121.cn/yj/index.shtml?city=潮州",
|
||||
"url31": "https://www.gd121.cn/yj/index.shtml?city=揭阳",
|
||||
"url32": "https://www.gd121.cn/yj/index.shtml?city=汕尾",
|
||||
"url33": "https://www.gd121.cn/yj/index.shtml?city=湛江",
|
||||
"url34": "https://www.gd121.cn/yj/index.shtml?city=茂名",
|
||||
"url35": "https://www.gd121.cn/yj/index.shtml?city=阳江",
|
||||
"url36": "https://www.gd121.cn/yj/index.shtml?city=云浮",
|
||||
"url37": "https://www.gd121.cn/yj/index.shtml?city=韶关",
|
||||
"url38": "https://www.gd121.cn/yj/index.shtml?city=清远",
|
||||
"url39": "https://www.gd121.cn/yj/index.shtml?city=梅州",
|
||||
"url40": "https://www.gd121.cn/yj/index.shtml?city=河源",
|
||||
"url41": "https://www.gd121.cn/tq/ld/list.shtml",
|
||||
"url42": "https://www.gd121.cn/tq/ld/list.shtml",
|
||||
"url43": "https://www.gd121.cn/tq/yt/list.shtml",
|
||||
"url44": "https://www.gd121.cn/tq/hy/list.shtml",
|
||||
"url45": "https://www.gd121.cn/tq/tf/list.shtml",
|
||||
"url46": "https://www.gd121.cn/tq/jdtq_list.shtml",
|
||||
"url47": "https://www.gd121.cn/tq/jccz/list.shtml",
|
||||
"url48": "https://www.gd121.cn/tq/gqtj/index.shtml",
|
||||
"url49": "https://www.gd121.cn/tq/tqsp/list.shtml",
|
||||
"url50": "https://www.gd121.cn/fw/index.shtml",
|
||||
"url51": "https://www.gd121.cn/kp/index.shtml",
|
||||
"url52": "https://www.gd121.cn/hd/index.shtml",
|
||||
"url53": "https://www.gd121.cn/hd/yhfk/list.shtml",
|
||||
"url54": "https://www.gd121.cn/hd/sjsc/index.shtml",
|
||||
"url55": "http://passport.gd121.cn/ucy_center/index",
|
||||
"url56": "https://www.gd121.cn/cos/index.shtml",
|
||||
"url57": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193dd4610be3c10.shtml",
|
||||
"url58": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml",
|
||||
"url59": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml",
|
||||
"url60": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml",
|
||||
"url61": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml",
|
||||
"url62": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml",
|
||||
"url63": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml",
|
||||
"url64": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml",
|
||||
"url65": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml",
|
||||
"url66": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml",
|
||||
"url67": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml",
|
||||
"url68": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml",
|
||||
"url69": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml",
|
||||
"url70": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml",
|
||||
"url71": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml",
|
||||
"url72": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml",
|
||||
"url73": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938584f2273a00.shtml",
|
||||
"url74": "https://www.gd121.cn/zx/qxzx/ff8080818a06a656019380b4f77d39e6.shtml",
|
||||
"url75": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601937b4ea6d539d0.shtml",
|
||||
"url76": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193769fe4f2399d.shtml",
|
||||
"url77": "https://www.gd121.cn/zx/qxzx/list_2.shtml",
|
||||
"url78": "https://www.gd121.cn/zx/qxzx/list_10.shtml",
|
||||
"url79": "https://www.gd121.cn/zx/yjxy/list.shtml",
|
||||
"url80": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edada382a17.shtml",
|
||||
"url81": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edada382a17.shtml",
|
||||
"url82": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadbb42a19.shtml",
|
||||
"url83": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadd2e2a1b.shtml",
|
||||
"url84": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edade922a1d.shtml",
|
||||
"url85": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadfff2a1f.shtml",
|
||||
"url86": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae2d42a23.shtml",
|
||||
"url87": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae16f2a21.shtml",
|
||||
"url88": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae4362a25.shtml",
|
||||
"url89": "https://www.gd121.cn/kp/rdzt/list.shtml",
|
||||
"url90": "https://tqkp.gd121.cn/pc/index.php/index/index",
|
||||
"url91": "http://gd.weather.com.cn/zt/cbzt//3164789.shtml",
|
||||
"url92": "https://www.gd121.cn/zx/zhxx/list.shtml",
|
||||
"url93": "https://www.gd121.cn/zx/zhxx/ff8080818a06a656018a6dbc39560290.shtml",
|
||||
"url94": "https://www.gd121.cn/zx/zhxx/ff8080817a75a9a2017abcdfd97f01bd.shtml",
|
||||
"url95": "https://www.gd121.cn/zx/zhxx/ff808081706d374701718b8ba69306c3.shtml",
|
||||
"url96": "https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml",
|
||||
"url97": "https://www.gd121.cn/zx/zhxx/ff808081706d374701715cf0535405d5.shtml",
|
||||
"url98": "https://www.gd121.cn/zx/zhxx/ff808081706d37470171438addf4052e.shtml",
|
||||
"url99": "https://www.gd121.cn/kp/yjkp/list.shtml",
|
||||
"url100": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/8a14d310645ec72401645ec9bdb20626.shtml",
|
||||
"url101": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/list.shtml",
|
||||
"url102": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/8a14d310645ec72401645ec9bdb20626.shtml",
|
||||
"url103": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/8a14d310645ec72401645ec9c64f065c.shtml",
|
||||
"url104": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/list.shtml",
|
||||
"url105": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/8a14d310645ec72401645ec9c64f065c.shtml",
|
||||
"url106": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/8a14d310645ec72401645ec9c994066e.shtml",
|
||||
"url107": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/list.shtml",
|
||||
"url108": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/8a14d310645ec72401645ec9c994066e.shtml",
|
||||
"url109": "https://www.gd121.cn/kp/yjkp/yjxh/8a14d310645ec72401645ec9c9f70670.shtml",
|
||||
"url110": "https://www.gd121.cn/kp/yjkp/yjxh/list.shtml",
|
||||
"url111": "https://www.gd121.cn/kp/yjkp/yjxh/8a14d310645ec72401645ec9c9f70670.shtml",
|
||||
"url112": "https://www.gd121.cn/share/pluginWea.do",
|
||||
"url113": "https://www.gd121.cn/share/pluginWea.do",
|
||||
"url114": "https://www.gd121.cn/share/interface.do?id=1",
|
||||
"url115": "https://www.gd121.cn/share/interface.do?id=1",
|
||||
"url116": "https://www.gd121.cn/fw/yjkhd/8a14d310645ec72401645ecbea730edb.shtml",
|
||||
"url117": "https://www.gd121.cn/fw/yjkhd/8a14d310645ec72401645ecbea730edb.shtml",
|
||||
"url118": "https://www.gd121.cn/fw/wx/ff8080816f16da59016f176859fa0019.shtml",
|
||||
"url119": "https://www.gd121.cn/fw/wx/ff8080816f16da59016f176859fa0019.shtml",
|
||||
"url120": "https://www.gd121.cn/yj/index.shtml",
|
||||
"url121": "https://www.gd121.cn/fw/index.shtml",
|
||||
"url122": "https://www.gd121.cn/kp/yjkp/list.shtml",
|
||||
"url123": "https://www.gd121.cn/kp/zcfg/list.shtml",
|
||||
"url124": "https://www.gd121.cn/share/",
|
||||
"url125": "https://www.gd121.cn/fw/index.shtml",
|
||||
"url126": "http://bszs.conac.cn/sitename?method=show&id=5A4B4AA9C22F62BEE053022E1AACADE4",
|
||||
"url127": "http://gd.cma.gov.cn/",
|
||||
"url128": "https://www.gbaweather.net/tc/",
|
||||
"url129": "http://beian.miit.gov.cn",
|
||||
"url130": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=44010402001842"
|
||||
}
|
@ -0,0 +1,632 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-png[url0]
|
||||
|
||||
|
||||
-png[url1]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
今天是2024年12月22日
|
||||
登录/注册
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-广东气象png[url2]
|
||||
|
||||
|
||||
-你的冷暖在我心中png[url3]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 首页[url18] 2. 预警[url19]
|
||||
|
||||
|
||||
珠三角
|
||||
|
||||
广州[url20]
|
||||
深圳[url21]
|
||||
佛山[url22]
|
||||
东莞[url23]
|
||||
中山[url24]
|
||||
珠海[url25]
|
||||
惠州[url26]
|
||||
江门[url27]
|
||||
肇庆[url28]
|
||||
|
||||
|
||||
|
||||
粤东
|
||||
|
||||
汕头[url29]
|
||||
潮州[url30]
|
||||
揭阳[url31]
|
||||
汕尾[url32]
|
||||
|
||||
|
||||
|
||||
粤西
|
||||
|
||||
湛江[url33]
|
||||
茂名[url34]
|
||||
阳江[url35]
|
||||
云浮[url36]
|
||||
|
||||
|
||||
|
||||
粤北
|
||||
|
||||
韶关[url37]
|
||||
清远[url38]
|
||||
梅州[url39]
|
||||
河源[url40] 3. 珠三角
|
||||
|
||||
广州[url20]
|
||||
深圳[url21]
|
||||
佛山[url22]
|
||||
东莞[url23]
|
||||
中山[url24]
|
||||
珠海[url25]
|
||||
惠州[url26]
|
||||
江门[url27]
|
||||
肇庆[url28] 4. 粤东
|
||||
|
||||
汕头[url29]
|
||||
潮州[url30]
|
||||
揭阳[url31]
|
||||
汕尾[url32] 5. 粤西
|
||||
|
||||
湛江[url33]
|
||||
茂名[url34]
|
||||
阳江[url35]
|
||||
云浮[url36] 6. 粤北
|
||||
|
||||
韶关[url37]
|
||||
清远[url38]
|
||||
梅州[url39]
|
||||
河源[url40] 7. 天气[url41]
|
||||
|
||||
|
||||
|
||||
雷达[url42]
|
||||
云图[url43]
|
||||
海洋[url44]
|
||||
台风[url45]
|
||||
|
||||
旅游天气[url46]
|
||||
机场&车站[url47]
|
||||
高清图集[url48]
|
||||
视频[url49] 8. 雷达[url42] 9. 云图[url43] 10. 海洋[url44] 11. 台风[url45] 12. 旅游天气[url46] 13. 机场&车站[url47] 14. 高清图集[url48] 15. 视频[url49] 16. 服务[url50] 17. 科普[url51] 18. 互动[url52]
|
||||
|
||||
预约天气
|
||||
|
||||
用户反馈[url53]
|
||||
实景上传[url54]
|
||||
用户中心[url55] 19. 预约天气 20. 用户反馈[url53] 21. 实景上传[url54] 22. 用户中心[url55] 23. 共享[url56]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
资讯
|
||||
|
||||
|
||||
|
||||
|
||||
>气象资讯
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 冬至又有冷空气入粤[url57]
|
||||
2024-12-19 12:56:16 2. 冷空气频繁 广东干冷天气持续[url58]
|
||||
2024-12-18 13:02:25 3. 冷空气持续补充,广东晴燥天气持续[url59]
|
||||
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60]
|
||||
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61]
|
||||
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62]
|
||||
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63]
|
||||
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64]
|
||||
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65]
|
||||
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66]
|
||||
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67]
|
||||
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68]
|
||||
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69]
|
||||
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70]
|
||||
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71]
|
||||
2024-12-04 11:48:22 16. 未来两天天气平稳,4-6日两股冷空气到访[url72]
|
||||
2024-12-03 13:19:09 17. 广东云量增多气温上升[url73]
|
||||
2024-12-02 11:58:23 18. 未来三天广东天气干燥,早晚寒冷[url74]
|
||||
2024-12-01 13:32:44 19. 未来几天广东天晴干燥,注意补水[url75]
|
||||
2024-11-30 12:22:53 20. 未来三天广东天晴干燥 气温缓升[url76]
|
||||
2024-11-29 14:33:31
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
应急响应
|
||||
|
||||
|
||||
更多>>[url79]
|
||||
|
||||
|
||||
|
||||
|
||||
-广东省气象局结束气象灾害(暴雨)Ⅳ级应急响应jpg[url4][url80]
|
||||
|
||||
|
||||
广东省气象局结束气象灾害(暴雨...
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
6月12日到14日,珠江三角洲市县、粤西大部分市县出现了暴雨到大暴雨局部特大暴雨。预计,15日...
|
||||
[详情][url81]
|
||||
|
||||
|
||||
1. 广东省气象局启动气象灾害(暴雨)Ⅳ级...[url82] 2. 广东省气象局结束气象灾害(暴雨)Ⅱ级...[url83] 3. 广东省气象局结束气象灾害(台风)Ⅲ级...[url84] 4. 广东省气象局启动气象灾害(暴雨)Ⅱ级...[url85] 5. 广东省气象局升级气象灾害(台风)应急...[url86] 6. 广东省气象局启动气象灾害(台风)Ⅳ级...[url87] 7. 广东省气象局结束气象灾害(寒冷)Ⅲ级...[url88]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
热点专题
|
||||
|
||||
|
||||
更多>>[url89]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. -2022年5.12全国防灾减灾日jpg[url5][url90] 2. -中国天然氧吧(龙门、揭西、连山、新兴)jpg[url6][url91]
|
||||
|
||||
|
||||
|
||||
1. 1 2. 2
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
综合消息
|
||||
|
||||
|
||||
更多>>[url92]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 7-8日广东大部仍有强降水[url93] 2. 7号台风“查帕卡&rdq...[url94] 3. 18-20日广东多云有雾 21-24...[url95] 4. 12-15日广东大部天晴 早晚寒凉[url96] 5. 11日广东将有一次强对流天气过程[url97] 6. 三天内广东大部降水频繁 粤北山区需防...[url98]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
应急科普
|
||||
|
||||
|
||||
更多>>[url99]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-都市中遇到洪水怎么办png[url7][url100]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
自然灾害[url101]
|
||||
|
||||
|
||||
都市中遇到洪水怎么办[url102]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-中国疾控中心提示:春节期间应做好传染病防御png[url8][url103]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
公共卫生[url104]
|
||||
|
||||
|
||||
中国疾控中心提示:春节期间应做好传染病防御[url105]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-购买、使用消防产品不容马虎png[url9][url106]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
社会安全[url107]
|
||||
|
||||
|
||||
购买、使用消防产品不容马虎[url108]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-森林火险预警信号gif[url10][url109]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
预警信号[url110]
|
||||
|
||||
|
||||
森林火险预警信号[url111]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-天气插件gif[url11][url112]
|
||||
|
||||
|
||||
天气插件[url113]
|
||||
|
||||
|
||||
形式多样,强大的自定义功能,为您的网站量身定做个性化预警插件。
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-数据接口gif[url12][url114]
|
||||
|
||||
|
||||
数据接口[url115]
|
||||
|
||||
|
||||
|
||||
|
||||
我们会为您们提供最权威、最真实、最及时、最全面的数据服务与共享。
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-停课铃APPgif[url13][url116]
|
||||
|
||||
|
||||
停课铃APP[url117]
|
||||
|
||||
|
||||
广东省气象局官方客户端,提供全省停课信号、天气预警、天气查询等服务。
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-缤纷微天气gif[url14][url118]
|
||||
|
||||
|
||||
缤纷微天气[url119]
|
||||
|
||||
|
||||
微信小程序,提供基于位置的天气预报、预警服务。
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
预警信息[url120]
|
||||
|
|
||||
|
||||
公众服务[url121]
|
||||
|
|
||||
|
||||
|
||||
|
||||
应急科普[url122]
|
||||
|
|
||||
|
||||
政策法规[url123]
|
||||
|
|
||||
|
||||
|
||||
|
||||
数据共享[url124]
|
||||
|
|
||||
|
||||
服务渠道[url125]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-png[url15][url126]
|
||||
|
||||
|
||||
友情链接:
|
||||
广东省气象局网站[url127]
|
||||
|
|
||||
粤港澳大湾区天气网站[url128]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
联系电话:020-87664716
|
||||
地址:广东省广州市天河区东莞庄路312号
|
||||
|
||||
|
||||
|
||||
|
||||
-gif[url16]
|
||||
|
||||
粤ICP备05011356号[url129]
|
||||
|
||||
-gif[url17]
|
||||
|
||||
粤公网安备 44010402001842号[url130]
|
||||
©广东省气象公共服务中心版权所有 | 技术支持:数鹏通(LinkCM)科技
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,7 @@
|
||||
content_judge: 2263
|
||||
special_url_count: 112
|
||||
arcile_or_list_judge: 0.049491825011047284
|
||||
************
|
||||
|
||||
raw materials: ab9447
|
||||
|
@ -1097,75 +1097,3 @@ more urls:
|
||||
微信小程序,提供基于位置的天气预报、预警服务。
|
||||
|
||||
cost:0.0725
|
||||
|
||||
|
||||
************
|
||||
|
||||
raw materials: 3d274c
|
||||
|
||||
llm model: Qwen/Qwen2-VL-72B-Instruct
|
||||
hallucination times: 2
|
||||
total analysis time: 7.546638011932373
|
||||
author and publish time(not formated): {'source': '学习强国', 'publish_date': '2024年12月17日'}
|
||||
infos(not formated): []
|
||||
more urls:
|
||||
天冷脂肪多更保暖?真相来了
|
||||
|
||||
------------
|
||||
|
||||
llm model: OpenGVLab/InternVL2-26B
|
||||
hallucination times: 5
|
||||
total analysis time: 7.500505208969116
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024-12-17'}
|
||||
infos(not formated): []
|
||||
more urls:
|
||||
天冷脂肪多更保暖?真相来了!
|
||||
来源:中国天气网
|
||||
责编:孙雪萌
|
||||
审核:郭圣群 张恒
|
||||
|
||||
------------
|
||||
|
||||
llm model: TeleAI/TeleMM
|
||||
hallucination times: 3
|
||||
total analysis time: 3.687187910079956
|
||||
author and publish time(not formated): {}
|
||||
infos(not formated): []
|
||||
more urls: set()
|
||||
|
||||
------------
|
||||
|
||||
llm model: Pro/Qwen/Qwen2-VL-7B-Instruct
|
||||
hallucination times: 2
|
||||
total analysis time: 5.731669902801514
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024年12月17日'}
|
||||
infos(not formated): []
|
||||
more urls:
|
||||
天冷脂肪多更保暖?真相来了!
|
||||
|
||||
------------
|
||||
|
||||
llm model: Pro/OpenGVLab/InternVL2-8B
|
||||
hallucination times: 7
|
||||
total analysis time: 4.302519083023071
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024年12月17日'}
|
||||
infos(not formated): []
|
||||
more urls:
|
||||
都说冬天瘦子羡慕胖胖的人,因为觉得不怕冷,毕竟比别人多了一层“肉香”抵御严寒。脂肪多就等于抗冻吗?戳视频赶快了解下。
|
||||
来源:中国天气网
|
||||
责编:孙雪萌
|
||||
审校:郭圣群 张恒
|
||||
|
||||
------------
|
||||
|
||||
llm model: OpenGVLab/InternVL2-Llama3-76B
|
||||
hallucination times: 3
|
||||
total analysis time: 12.28525710105896
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024-12-17'}
|
||||
infos(not formated): []
|
||||
more urls:
|
||||
天冷脂肪多更保暖?真相来了!
|
||||
都说冬天瘦子羡慕胖胖的人,因为觉得不怕冷,毕竟比别人多了一层“肉香”抵御严寒。脂肪多就等于抗冻吗?戳视频赶快了解下。
|
||||
|
||||
------------
|
||||
|
@ -0,0 +1,127 @@
|
||||
focus statement:
|
||||
#广州市的冷空气预警信息
|
||||
解释:仅限2024年12月及以后
|
||||
#深圳市的冷空气预警信息
|
||||
解释:仅限2024年12月及以后
|
||||
#广东全省的台风预警
|
||||
解释:仅限2024年的信息
|
||||
|
||||
|
||||
raw materials: ab9447
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 2
|
||||
total analysis time: 64.09128189086914
|
||||
|
||||
author and publish time(not formated): {'source': '广东省气象公共服务中心', 'publish_date': '2024年12月22日'}
|
||||
infos(not formated):
|
||||
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml
|
||||
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml
|
||||
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml
|
||||
7号台风“查帕卡&rdq...[url94] https://www.gd121.cn/zx/zhxx/ff8080817a75a9a2017abcdfd97f01bd.shtml
|
||||
1. 冬至又有冷空气入粤[url57] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193dd4610be3c10.shtml
|
||||
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml
|
||||
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml
|
||||
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml
|
||||
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml
|
||||
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml
|
||||
2024-12-03 13:19:09 17. 广东云量增多气温上升[url73] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938584f2273a00.shtml
|
||||
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml
|
||||
2024-12-02 11:58:23 18. 未来三天广东天气干燥,早晚寒冷[url74] https://www.gd121.cn/zx/qxzx/ff8080818a06a656019380b4f77d39e6.shtml
|
||||
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml
|
||||
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml
|
||||
2. 冷空气频繁 广东干冷天气持续[url58] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml
|
||||
3. 冷空气持续补充,广东晴燥天气持续[url59] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml
|
||||
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml
|
||||
2024-11-30 12:22:53 20. 未来三天广东天晴干燥 气温缓升[url76] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193769fe4f2399d.shtml
|
||||
2024-12-01 13:32:44 19. 未来几天广东天晴干燥,注意补水[url75] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601937b4ea6d539d0.shtml
|
||||
2024-12-04 11:48:22 16. 未来两天天气平稳,4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 0
|
||||
total analysis time: 21.707175254821777
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024年12月22日'}
|
||||
infos(not formated):
|
||||
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml
|
||||
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml
|
||||
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml
|
||||
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml
|
||||
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml
|
||||
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml
|
||||
冷空气频繁 广东干冷天气持续[url58] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml
|
||||
2024-12-02 11:58:23 18. 未来三天广东天气干燥,早晚寒冷[url74] https://www.gd121.cn/zx/qxzx/ff8080818a06a656019380b4f77d39e6.shtml
|
||||
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml
|
||||
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml
|
||||
冷空气持续补充,广东晴燥天气持续[url59] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml
|
||||
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml
|
||||
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml
|
||||
2024-12-04 11:48:22 16. 未来两天天气平稳,4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
|
||||
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 5
|
||||
total analysis time: 12.083251953125
|
||||
|
||||
author and publish time(not formated): {'source': '广东省气象公共服务中心', 'publish_date': '2024年12月22日'}
|
||||
infos(not formated):
|
||||
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml
|
||||
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml
|
||||
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml
|
||||
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml
|
||||
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml
|
||||
2024-12-18 13:02:25 3. 冷空气持续补充,广东晴燥天气持续[url59] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml
|
||||
2024-12-02 11:58:23 18. 未来三天广东天气干燥,早晚寒冷[url74] https://www.gd121.cn/zx/qxzx/ff8080818a06a656019380b4f77d39e6.shtml
|
||||
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml
|
||||
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml
|
||||
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml
|
||||
2024-12-19 12:56:16 2. 冷空气频繁 广东干冷天气持续[url58] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml
|
||||
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml
|
||||
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml
|
||||
2024-12-04 11:48:22 16. 未来两天天气平稳,4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
|
||||
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 6
|
||||
total analysis time: 14.643909692764282
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-22'}
|
||||
infos(not formated):
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 12.746936082839966
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024年12月22日'}
|
||||
infos(not formated):
|
||||
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml
|
||||
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml
|
||||
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml
|
||||
7-8日广东大部仍有强降水[url93] https://www.gd121.cn/zx/zhxx/ff8080818a06a656018a6dbc39560290.shtml
|
||||
7号台风“查帕卡&rdq...[url94] https://www.gd121.cn/zx/zhxx/ff8080817a75a9a2017abcdfd97f01bd.shtml
|
||||
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml
|
||||
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml
|
||||
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml
|
||||
-冷空气持续补充,广东晴燥天气持续[url59] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml
|
||||
三天内广东大部降水频繁 粤北山区需防...[url98] https://www.gd121.cn/zx/zhxx/ff808081706d37470171438addf4052e.shtml
|
||||
粤公网安备 44010402001842号[url130] http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=44010402001842
|
||||
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml
|
||||
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml
|
||||
12-15日广东大部天晴 早晚寒凉[url96] https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml
|
||||
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml
|
||||
2024-12-02 11:58:23 18. 未来三天广东天气干燥,早晚寒冷[url74] https://www.gd121.cn/zx/qxzx/ff8080818a06a656019380b4f77d39e6.shtml
|
||||
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml
|
||||
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml
|
||||
11日广东将有一次强对流天气过程[url97] https://www.gd121.cn/zx/zhxx/ff808081706d374701715cf0535405d5.shtml
|
||||
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml
|
||||
-冷空气频繁 广东干冷天气持续[url58] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml
|
||||
2024-12-01 13:32:44 19. 未来几天广东天晴干燥,注意补水[url75] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601937b4ea6d539d0.shtml
|
||||
-冬至又有冷空气入粤[url57] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193dd4610be3c10.shtml
|
||||
2024-12-04 11:48:22 16. 未来两天天气平稳,4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
|
||||
************
|
||||
|
@ -0,0 +1,37 @@
|
||||
focus statement:
|
||||
#广州市的冷空气预警信息
|
||||
解释:仅限2024年12月及以后
|
||||
#深圳市的冷空气预警信息
|
||||
解释:仅限2024年12月及以后
|
||||
#广东全省的台风预警
|
||||
解释:仅限2024年的信息
|
||||
|
||||
|
||||
raw materials: ab9447
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 2
|
||||
total results: 17
|
||||
total analysis time: 10.884798049926758
|
||||
|
||||
author and publish time(not formated): {'source': '广东省气象局', 'publish_date': '2024-12-22'}
|
||||
infos(not formated):
|
||||
2024-12-11 14:42:01 10. 前方冷空气们在排队了,这次“冻”真格![url66] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml
|
||||
2024-12-04 11:48:22 16. 未来两天天气平稳,4-6日两股冷空气到访[url72] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml
|
||||
2024-12-16 12:41:10 5. 冻感十足的广东,未来几天部分地区最低气温跌破零度[url61] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml
|
||||
冬至又有冷空气入粤[url57] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193dd4610be3c10.shtml
|
||||
2024-12-12 11:34:08 9. 冷空气今日到达广东 未来几天气温逐日下降[url65] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml
|
||||
2024-12-14 11:55:15 7. 冷空气持续补充 广东今明气温继续下降[url63] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml
|
||||
冷空气频繁 广东干冷天气持续[url58] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d825534f3be1.shtml
|
||||
2024-12-09 14:48:38 12. 7-9日广东大部晴到多云早晚寒凉[url68] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml
|
||||
2024-12-13 14:44:21 8. 冷空气持续补充影响,广东气温逐日小幅下降[url64] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml
|
||||
2024-12-17 12:46:13 4. 广东维持干燥 早晚寒冷[url60] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml
|
||||
2024-12-07 11:35:30 13. 周末广东气温继续下降[url69] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml
|
||||
2024-12-06 13:10:35 14. 7-8日中等强度冷空气影响广东[url70] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml
|
||||
12-15日广东大部天晴 早晚寒凉[url96] https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml
|
||||
冷空气持续补充,广东晴燥天气持续[url59] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml
|
||||
2024-12-15 12:15:44 6. 冷空气持续补充影响,我省维持干燥天气早晚寒冷[url62] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml
|
||||
2024-12-10 13:00:10 11. 新一股冷空气11日起影响广东[url67] https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml
|
||||
2024-12-05 14:51:50 15. 本周末中等强度冷空气入粤[url71] https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml
|
||||
************
|
||||
|
@ -0,0 +1,26 @@
|
||||
{
|
||||
"wx_expand_article_button": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"轻触阅读原文"
|
||||
]
|
||||
}
|
||||
},
|
||||
"×": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"×"
|
||||
]
|
||||
}
|
||||
},
|
||||
"分析": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"分析"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
{
|
||||
"url0": "https://mmbiz.qpic.cn/sz_mmbiz_jpg/vtjpTHnhkFLo1VUzWmIUmzkY380ceKDxuWtXPR8giaCxlFsZbc3VQDIQeBEyl1CjmhTRCWsibw2b2BO9dv39yGYA/0?wx_fmt=jpeg",
|
||||
"url1": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url2": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url3": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url4": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url5": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url6": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url7": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url8": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url9": "http://mmbiz.qpic.cn/mmbiz_png/vtjpTHnhkFIrBlgrAfbicLa8PPp3znKbKLlvfpmNbanczQ3WYERibnuiczrbC7Dc7sbSnY1t0R29ImVx84iaOeWaOw/0?wx_fmt=png"
|
||||
}
|
@ -0,0 +1,579 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-cover_imageimg[url0]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
【新兴领域党建】四战并进,全方位攻坚新兴领域党建全覆盖
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
广富邻
|
||||
|
||||
|
||||
2024年12月03日 17:35
|
||||
上海
|
||||
|
||||
|
||||
|
||||
|
||||
-img[url1]
|
||||
-img[url2]
|
||||
新兴领域党建全覆盖不仅是攻坚战,更是持久战、攻心战、协同战。为推动广富林街道新兴领域全覆盖攻坚行动走深走实,用“铁脚板”丈量民意,凝“新”聚力,广富林街道在首轮“攻坚战”初战告捷的基础上,集中火力,乘胜追击,以持续打好后续三大“保卫战”,保障“攻坚战”大获全胜,全面胜利。
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
一
|
||||
|
||||
|
||||
强化“责任包保”硬任务,打好“持久战”
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
走访联系不是突击战,不能毕其功于一役,必须常抓不懈,融入日常。为深化走访调研,街道近期召开新一轮全覆盖走访推进会议。对常态化走访进行再部署,对包保机制进行再完善,对网格协同力量进行再赋能,对走访过程中发现的问题进行再研究。自11月初以来,对地铁沿线、商圈景点、大学城、快递外卖驿站等新业态、新就业群体开展新一轮集中再走访2430家,出动协同力量990人次,发放一信、一卡、一海报等宣传资料7500份。开展政策服务、防诈骗宣传等服务2500人次,收集意见建议11条,其中,街区自行解决5条,流转街道6条。其中,已解决2条,正在解决7条,确保全覆盖走访工作在街区落地生根,开花结果。
|
||||
|
||||
|
||||
|
||||
|
||||
-img[url3]
|
||||
-img[url4]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
二
|
||||
|
||||
|
||||
用好“四带四到”传家宝,打好“攻心战”
|
||||
|
||||
|
||||
|
||||
|
||||
全覆盖走访,不仅要走进街头巷尾,更要走进心坎心头。为此,广富林街道用好“四带四到”传家宝,即:带着上级精神,带着感情责任,带着任务清单,带着初心实干,实现责任到人全参与,走访到户全覆盖,服务到底全记录,考评到位全运用。为了让“小个专”商户,第一时间找得到党组织,在他们需要的时候伸出援手,给予帮助,双创科技街区党支部,主动跨前,以点对点加微信好友的方式密切联络。在不到一个月的时间里,街区党组织书记朋友圈人数正成倍增长,迅速扩容。双创科技党支部书记石爱明自豪地说,截止目前,成功添加两企三新微信好友548个。更是开设了双创科技街区公众号、视频号,工作有了更多的抓手;针对“骑手”关心的异地就医、医保报销等高频问题,商贸服务街区党支部联合社区事务受理中心开展暖新共建,提供政策解读和手把手指导服务;针对新小区人车分流,骑手“进门难”,生态文化街区党支部,借力富林议事厅,协调社区在小区两个进门处专门设置了“快递外卖进出捷径路线图”,并录制了视频导引,同时,安排保安人员对进小区的“小哥”进行现场指引,实现了居民安全和“小哥”便捷的双兼顾,较好地解决了这一问题。通过“零距离”接触、“面对面”沟通、“心贴心”交流,让服务更加暖心,更拉进了心与心的距离。
|
||||
-img[url5]
|
||||
|
||||
|
||||
|
||||
|
||||
三
|
||||
|
||||
|
||||
打通“流程优化”关键点,打胜“协同战”
|
||||
|
||||
|
||||
|
||||
|
||||
为赋能街区治理,破解瓶颈难题,打通基层治理“最后一公里”,在全覆盖攻坚行动中,广富林街道建立了《调研走访问题流转单》机制。但在实施过程中,存在沟通不顺、渠道不畅、协同不够、机制不转等问题,为打通裉节堵点,研究制定《广富林街道调研走访问题流转单流程指引》,通过“五步流转法”实时接单、精准派单、多方议单、跟踪督单、评估结单,提升问题诉求响应效率,实现多部门联动,全链条闭环管理,让每一单都“不落单”。
|
||||
-img[url6]
|
||||
|
||||
|
||||
|
||||
|
||||
全覆盖走访没有结束,只有新的开始。广富林街道将接续发力,推动全覆盖攻坚走深走实,持续走出党组织的引领力,街区的向心力,群众凝聚力。
|
||||
|
||||
|
||||
-img[url7]
|
||||
供稿:广富林街道社会工作办
|
||||
编辑:松江区融媒体中心广富林街道分中心
|
||||
-img[url8]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
预览时标签不可点
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Scan to Follow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
继续滑动看下一个
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-img[url9]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
广富邻
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
向上滑动看下一个
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Got It
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Scan with Weixin to
|
||||
|
||||
|
||||
use this Mini Program
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Cancel
|
||||
|
||||
|
||||
Allow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Cancel
|
||||
|
||||
|
||||
Allow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
:
|
||||
|
||||
|
||||
,
|
||||
|
||||
|
||||
.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Video
|
||||
|
||||
|
||||
Mini Program
|
||||
|
||||
|
||||
Like
|
||||
|
||||
|
||||
,轻点两下取消赞
|
||||
|
||||
|
||||
Wow
|
||||
|
||||
|
||||
,轻点两下取消在看
|
||||
|
||||
|
||||
Share
|
||||
|
||||
|
||||
Comment
|
||||
|
||||
|
||||
Favorite
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,282 @@
|
||||
{
|
||||
"1": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"1"
|
||||
]
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"2"
|
||||
]
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"3"
|
||||
]
|
||||
}
|
||||
},
|
||||
"4": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"4"
|
||||
]
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"5"
|
||||
]
|
||||
}
|
||||
},
|
||||
"6": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"6"
|
||||
]
|
||||
}
|
||||
},
|
||||
"7": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"7"
|
||||
]
|
||||
}
|
||||
},
|
||||
"8": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"8"
|
||||
]
|
||||
}
|
||||
},
|
||||
"9": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"9"
|
||||
]
|
||||
}
|
||||
},
|
||||
"10": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"10"
|
||||
]
|
||||
}
|
||||
},
|
||||
"11": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"11"
|
||||
]
|
||||
}
|
||||
},
|
||||
"12": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"12"
|
||||
]
|
||||
}
|
||||
},
|
||||
"13": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"13"
|
||||
]
|
||||
}
|
||||
},
|
||||
"14": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"14"
|
||||
]
|
||||
}
|
||||
},
|
||||
"15": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"15"
|
||||
]
|
||||
}
|
||||
},
|
||||
"16": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"16"
|
||||
]
|
||||
}
|
||||
},
|
||||
"17": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"17"
|
||||
]
|
||||
}
|
||||
},
|
||||
"18": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"18"
|
||||
]
|
||||
}
|
||||
},
|
||||
"19": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"19"
|
||||
]
|
||||
}
|
||||
},
|
||||
"20": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"20"
|
||||
]
|
||||
}
|
||||
},
|
||||
"21": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"21"
|
||||
]
|
||||
}
|
||||
},
|
||||
"22": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"22"
|
||||
]
|
||||
}
|
||||
},
|
||||
"23": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"23"
|
||||
]
|
||||
}
|
||||
},
|
||||
"24": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"24"
|
||||
]
|
||||
}
|
||||
},
|
||||
"25": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"25"
|
||||
]
|
||||
}
|
||||
},
|
||||
"26": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"26"
|
||||
]
|
||||
}
|
||||
},
|
||||
"27": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"27"
|
||||
]
|
||||
}
|
||||
},
|
||||
"28": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"28"
|
||||
]
|
||||
}
|
||||
},
|
||||
"29": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"29"
|
||||
]
|
||||
}
|
||||
},
|
||||
"30": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"30"
|
||||
]
|
||||
}
|
||||
},
|
||||
"31": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"31"
|
||||
]
|
||||
}
|
||||
},
|
||||
"32": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"32"
|
||||
]
|
||||
}
|
||||
},
|
||||
"33": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"33"
|
||||
]
|
||||
}
|
||||
},
|
||||
"34": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"34"
|
||||
]
|
||||
}
|
||||
},
|
||||
"35": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"35"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
{
|
||||
"url0": "https://bootcdn.xuexi.cn/18600410326/578727faa69c588fa841f60bd56733c5.png",
|
||||
"url1": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url2": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url3": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url4": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url5": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url6": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url7": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url8": "https://bootcdn.xuexi.cn/18600410326/e09f433c6916488876d1e34381c98f58.png",
|
||||
"url9": "https://bootcdn.xuexi.cn/18600410326/f8fd7d4c29dfe3b5bb84da4eada68f09.png",
|
||||
"url10": "https://bootcdn.xuexi.cn/18600410326/bd19863611993ad460d1c23fa910fc00.png",
|
||||
"url11": "https://bootcdn.xuexi.cn/18600410326/69830c9e173b5374aa9b6de43a912e4d.png",
|
||||
"url12": "https://bootcdn.xuexi.cn/18600410326/0458c43bba70d60ca77d6f158835dd6c.png",
|
||||
"url13": "https://bootcdn.xuexi.cn/18600410326/1398b93f1f4273536e56e8899ad46d17.png",
|
||||
"url14": "https://bootcdn.xuexi.cn/18600410326/963274d57bd3c27e3c262984887c9e48.png",
|
||||
"url15": "https://bootcdn.xuexi.cn/18600410326/91dc753476aa7e6f9733c3c32e501e8d.png",
|
||||
"url16": "https://bootcdn.xuexi.cn/18600410326/607f2b3670c0064cb3bffcf918a96df2.png",
|
||||
"url17": "https://bootcdn.xuexi.cn/18600410326/b332909e88575a5409bfde2453752b3d.png",
|
||||
"url18": "https://bootcdn.xuexi.cn/18600410326/ffeb83a388fbfcee9b5305246a3b5120.png",
|
||||
"url19": "https://boot-img.xuexi.cn/lego/image/1584_qiangjun-xingjun-imgs/ddeb776982314f93a8e2807c5d9aec51.png",
|
||||
"url20": "https://boot-img.xuexi.cn/lego/image/1584_qiangjun-xingjun-imgs/5d22017cd0694a31abe51fe98ea5ac3b.png",
|
||||
"url21": "https://bootcdn.xuexi.cn/18600410326/396e765bf7a1d46a020557e75ab0b1e8.png",
|
||||
"url22": "https://bootcdn.xuexi.cn/18600410326/c54fab0943876c3e5d9d2421f56ba3ea.png"
|
||||
}
|
@ -0,0 +1,991 @@
|
||||
庆祝澳门回归祖国25周年大会暨澳门特别行政区第六届政府就职典礼隆重举行 习近平出席并发表重要讲话
|
||||
讲话全文
|
||||
习近平会见岑浩辉
|
||||
会见澳门特别行政区新任行政、立法、司法机构负责人
|
||||
视察驻澳门部队
|
||||
圆满结束在澳门的各项活动 习近平离开澳门返回北京
|
||||
更多头条
|
||||
1. 2. 3. 4. 5. 6. 7.
|
||||
|
||||
习近平视察驻澳门部队并发表重要讲话
|
||||
打开
|
||||
习近平:希望广大澳门青年当好“一国两制”事业的建设者和接班人
|
||||
习近平对新一届澳门特别行政区政府提出4点希望
|
||||
习近平:“一国两制”具有显著制度优势和强大生命力,必须长期坚持
|
||||
习近平:具有澳门特色的“一国两制”实践取得巨大成功
|
||||
习近平向全体澳门居民致以诚挚问候
|
||||
习近平在澳门特别行政区政府欢迎晚宴上的致辞(全文)
|
||||
庆祝澳门回归祖国25周年文艺晚会在澳门举行 习近平出席观看
|
||||
习近平出席澳门特别行政区政府欢迎晚宴并发表重要讲话
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
国内
|
||||
|
||||
国外
|
||||
|
||||
|
||||
|
||||
|
||||
学习宣传贯彻党的二十大精神
|
||||
|
||||
奋进强国路 阔步新征程
|
||||
|
||||
加快发展新质生产力
|
||||
|
||||
|
||||
|
||||
重要新闻
|
||||
打开
|
||||
李强在浙江调研
|
||||
王沪宁会见美国哈佛大学教授艾利森
|
||||
丁薛祥出席第二十八次全国高校党的建设工作会议并讲话
|
||||
王毅同塞尔维亚外长久里奇举行会谈
|
||||
石泰峰出席民营经济代表人士学习贯彻中央经济工作会议精神专题研讨班并讲话
|
||||
中央企业领导班子思想政治建设座谈会召开
|
||||
陈文清:深入学习贯彻习近平法治思想 以法治力量维护国家利益和社会公共利益
|
||||
十四届全国人大常委会第十三次会议将于12月21日至25日举行
|
||||
国务院关于《石家庄市国土空间总体规划(2021—2035年)》的批复
|
||||
最高法发布人民法院台胞权益保障典型案例
|
||||
外交部:欢迎更多外国朋友投资中国、深耕中国
|
||||
教育部等部门开展查处涉研考违法有害信息专项工作
|
||||
民政部部署开展慈善组织检查和执法工作
|
||||
科学技术普及法修订草案拟规定每年9月为全国科普月
|
||||
大中城市联合招聘高校毕业生秋季活动收官
|
||||
我国生态质量监测网络实现各省份全覆盖
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
学习时评
|
||||
打开
|
||||
不断开创“一国两制”事业高质量发展新局面——深入学习贯彻习近平主席在庆祝澳门回归祖国25周年大会暨澳门特别行政区第六届政府就职典礼上的重要讲话精神
|
||||
澳门特色“一国两制”实践取得巨大成功——论学习贯彻习近平主席在庆祝澳门回归祖国25周年大会重要讲话
|
||||
不断开创澳门特色“一国两制”实践新局面
|
||||
朝着建设农业强国目标扎实迈进
|
||||
飞得更高、走得更远、实现更好发展——庆祝澳门回归祖国25周年
|
||||
坚持以质取胜和发挥规模效应相结合
|
||||
国际锐评:中美合作可以办成很多大事好事
|
||||
望海楼:伟大祖国是澳门繁荣发展的坚强后盾
|
||||
综合新闻
|
||||
打开
|
||||
盛世莲花,在欢歌中精彩绽放——庆祝澳门回归祖国25周年文艺晚会侧记
|
||||
谷神星一号海射型遥四运载火箭发射成功
|
||||
网信部门从严打击网上侵害未成年人合法权益行为
|
||||
国家电网发布国内首个千亿级多模态电力行业大模型
|
||||
首家数据科技央企亮相!中国数联物流在沪成立
|
||||
国产大飞机C919累计承运旅客突破100万人次
|
||||
中国代表呼吁尽早启动伊核复谈进程
|
||||
韩国调查部门再次传唤总统尹锡悦
|
||||
中宣部发布
|
||||
打开
|
||||
第十二次中老两党理论研讨会在西安举行
|
||||
关于第九届全国道德模范候选人的公示
|
||||
中央宣传部授予单杏花同志“时代楷模”称号
|
||||
中央宣传部举办第1期乡镇(街道)党委宣传委员示范培训班
|
||||
中共中央宣传部公布第十七届精神文明建设“五个一工程”获奖名单
|
||||
中宣部发出关于认真组织学习《习近平文化思想学习纲要》的通知
|
||||
“文化中国行”主题宣传创新实践研讨会在京召开
|
||||
2024年全国“宪法宣传周”活动将于12月1日启动
|
||||
|
||||
经济
|
||||
打开
|
||||
“两新”加力扩围释放消费潜能
|
||||
落差变势能,增长动力更强劲
|
||||
铁路智造迈上新台阶
|
||||
县域游如何接住“银发流量”
|
||||
专家解读关于个人养老金的9个问题
|
||||
畅通经济循环 我国零售业向“优”而行
|
||||
新一期贷款市场报价利率“按兵不动”
|
||||
首家数据科技央企中国数联物流成立
|
||||
全国水利建设投资连续3年破万亿元 2024年有望再创新高
|
||||
全国电动自行车以旧换新数量突破100万辆
|
||||
个人养老金全面实施,金融产品服务如何优化供给?
|
||||
县级融媒
|
||||
打开
|
||||
河南淅川:做好生态保护“大文章” “流量”变“留量”
|
||||
江苏江阴:外贸增速持续“领跑”
|
||||
广东佛山南海区:改革经验上榜全国年度案例
|
||||
河南浚县:打造文明社区 提升居民幸福感
|
||||
云南曲靖沾益区:网格管理精细化 提升基层治理效能
|
||||
江西分宜:湿地斑斓美如画
|
||||
养蜂人“根爷”的坚守与梦想
|
||||
城市美容师陆欢欢
|
||||
陕西吴堡:文明实践育新风
|
||||
江苏镇江京口区:深耕“家门口”党建 擦亮居民生活幸福底色
|
||||
云南武定:舌尖上的乡愁——杀猪饭
|
||||
新闻发布厅
|
||||
打开
|
||||
前11个月我国对外非金融类直接投资同比增长11.2%
|
||||
商务部:反对美方打着国家安全的幌子打压中国企业
|
||||
2024年12月19日外交部发言人林剑主持例行记者会
|
||||
制定民营经济促进法、修改反不正当竞争法……即将召开的全国人大常委会会议有这些看点
|
||||
商务部:坚决反对欧盟第15轮对俄制裁列单中国企业和个人
|
||||
国新办举行2025年新年招待会
|
||||
2024年12月18日外交部发言人林剑主持例行记者会
|
||||
国台办:乐见包括上海居民在内的大陆居民早日恢复赴台旅游
|
||||
国家外汇管理局副局长、新闻发言人李斌就2024年11月份外汇收支形势答记者问
|
||||
政策来了!推动原材料工业优化升级
|
||||
1月至11月我国新材料产业总产值同比增长10%以上
|
||||
|
||||
|
||||
强国征文
|
||||
打开
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13.
|
||||
|
||||
“我和我的家乡”主题征文
|
||||
实播平台
|
||||
打开
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 2. 3. 4. 5.
|
||||
|
||||
国新办举行新闻发布会 介绍促进房地产市场平稳健康发展有关情况
|
||||
身边的感动
|
||||
打开
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 2. 3. 4. 5. 6.
|
||||
|
||||
摄影师黄昆震:用镜头穿越珠澳两地
|
||||
全国学习平台展播
|
||||
打开
|
||||
|
||||
新疆学习平台
|
||||
|
||||
新疆兵团学习平台
|
||||
|
||||
中央企业学习平台
|
||||
|
||||
中国科学院学习平台
|
||||
|
||||
北京学习平台
|
||||
|
||||
天津学习平台
|
||||
|
||||
河北学习平台
|
||||
|
||||
山西学习平台
|
||||
|
||||
内蒙古学习平台
|
||||
|
||||
辽宁学习平台
|
||||
|
||||
吉林学习平台
|
||||
|
||||
黑龙江学习平台
|
||||
|
||||
上海学习平台
|
||||
|
||||
江苏学习平台
|
||||
|
||||
浙江学习平台
|
||||
|
||||
安徽学习平台
|
||||
|
||||
福建学习平台
|
||||
|
||||
江西学习平台
|
||||
|
||||
山东学习平台
|
||||
|
||||
河南学习平台
|
||||
|
||||
湖北学习平台
|
||||
|
||||
湖南学习平台
|
||||
|
||||
广东学习平台
|
||||
|
||||
广西学习平台
|
||||
|
||||
海南学习平台
|
||||
|
||||
重庆学习平台
|
||||
|
||||
四川学习平台
|
||||
|
||||
贵州学习平台
|
||||
|
||||
云南学习平台
|
||||
|
||||
西藏学习平台
|
||||
|
||||
陕西学习平台
|
||||
|
||||
甘肃学习平台
|
||||
|
||||
青海学习平台
|
||||
|
||||
宁夏学习平台
|
||||
|
||||
新疆学习平台
|
||||
|
||||
新疆兵团学习平台
|
||||
|
||||
中央企业学习平台
|
||||
|
||||
中国科学院学习平台
|
||||
|
||||
北京学习平台
|
||||
|
||||
天津学习平台
|
||||
|
||||
河北学习平台
|
||||
|
||||
山西学习平台
|
||||
|
||||
内蒙古学习平台
|
||||
|
||||
辽宁学习平台
|
||||
|
||||
吉林学习平台
|
||||
|
||||
黑龙江学习平台
|
||||
|
||||
上海学习平台
|
||||
|
||||
江苏学习平台
|
||||
|
||||
浙江学习平台
|
||||
|
||||
安徽学习平台
|
||||
|
||||
福建学习平台
|
||||
|
||||
江西学习平台
|
||||
|
||||
山东学习平台
|
||||
|
||||
河南学习平台
|
||||
|
||||
湖北学习平台
|
||||
|
||||
湖南学习平台
|
||||
|
||||
广东学习平台
|
||||
|
||||
广西学习平台
|
||||
|
||||
海南学习平台
|
||||
|
||||
重庆学习平台
|
||||
|
||||
四川学习平台
|
||||
|
||||
贵州学习平台
|
||||
|
||||
云南学习平台
|
||||
|
||||
西藏学习平台
|
||||
|
||||
陕西学习平台
|
||||
|
||||
甘肃学习平台
|
||||
|
||||
青海学习平台
|
||||
|
||||
宁夏学习平台
|
||||
|
||||
新疆学习平台
|
||||
|
||||
新疆兵团学习平台
|
||||
|
||||
中央企业学习平台
|
||||
|
||||
中国科学院学习平台
|
||||
1. 2. 3. 4.
|
||||
|
||||
001 论坚持和发展中国特色社会主义
|
||||
002 论中国梦
|
||||
003 论马克思
|
||||
004 论坚定理想信念
|
||||
005 论中国精神
|
||||
006 论“五位一体”和“四个全面”
|
||||
007 论“四个自信”
|
||||
008 论全面建成小康社会
|
||||
009 论全面深化改革
|
||||
010 论全面依法治国
|
||||
011 论全面从严治党
|
||||
012 论经济建设
|
||||
013 论新发展理念
|
||||
014 论经济新常态与供给侧结构性改革
|
||||
015 论“三农”工作和乡村振兴战略
|
||||
016 论海洋强国
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
新闻联播
|
||||
|
||||
党报党刊大阅读
|
||||
|
||||
电台电视台大联播
|
||||
|
||||
网站大浏览
|
||||
|
||||
打开
|
||||
习近平乘专机离开澳门
|
||||
-png[url0]
|
||||
打开
|
||||
第一频道
|
||||
理论频道
|
||||
党史频道
|
||||
教育频道
|
||||
学习慕课
|
||||
人物频道
|
||||
文艺频道
|
||||
科技频道
|
||||
自然频道
|
||||
影视频道
|
||||
法治频道
|
||||
军事频道
|
||||
重要活动
|
||||
视频专辑
|
||||
学习专题
|
||||
报道
|
||||
学习新视界
|
||||
党代会报告
|
||||
新闻联播
|
||||
|
||||
-png[url1]
|
||||
习近平出席庆祝澳门回归祖国25周年大会暨澳门特别行政区第六届政府就职典礼并发表重要讲话
|
||||
|
||||
-png[url2]
|
||||
庆祝澳门回归祖国25周年文艺晚会在澳门举行 习近平出席观看
|
||||
|
||||
-png[url3]
|
||||
习近平会见岑浩辉
|
||||
|
||||
-png[url4]
|
||||
习近平会见澳门特别行政区新任行政、立法、司法机构负责人
|
||||
|
||||
打开
|
||||
听原著
|
||||
听法律
|
||||
听党规
|
||||
听科技
|
||||
听健康
|
||||
听文化
|
||||
|
||||
听理论
|
||||
|
||||
听音乐
|
||||
|
||||
听诗文
|
||||
|
||||
听广播剧
|
||||
|
||||
听长书
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 2. 3. 4.
|
||||
|
||||
《习近平谈治国理政》第四卷
|
||||
|
||||
聚焦主责主业 打造大刊名刊
|
||||
切实筑牢祖国北方重要生态安全屏障
|
||||
在推进中华民族共同体建设中作示范
|
||||
数智化赋能高校思政工作高质量开展
|
||||
深刻把握“第二个结合” 弘扬中华优秀传统文化
|
||||
把顶层设计和摸着石头过河相结合
|
||||
深刻理解“高扬中华民族的文化主体性”
|
||||
健全全面从严治党体系
|
||||
不断开辟马克思主义中国化时代化新境界
|
||||
充分发挥党校的独特价值
|
||||
调动和保护好“两个积极性”让粮食增产和农民增收齐头并进
|
||||
绷紧政策协同联动这根“弦”
|
||||
广泛凝聚进一步全面深化改革共识
|
||||
推进新型城镇化协同粮食安全与环境保护
|
||||
构建更有效力的国际传播体系
|
||||
切实加强核工业文化遗产保护传承
|
||||
深化金融体制改革
|
||||
“2024年深入学习贯彻习近平生态文明思想研讨会”综述
|
||||
东坪柿红
|
||||
黔行漫记
|
||||
故乡的腊肉
|
||||
在遥远的异地谈美
|
||||
盐湖之美
|
||||
安顺屯堡古建筑与地戏
|
||||
湄潭茶韵
|
||||
悬崖边的红杜鹃
|
||||
梵净山下云舍间
|
||||
|
||||
打开
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 2. 3. 4. 5. 6.
|
||||
|
||||
宪法精神大家谈|李忠夏:时代精神在宪法中得到充分体现
|
||||
|
||||
|
||||
法治新闻
|
||||
|
||||
法治时评
|
||||
|
||||
政法
|
||||
|
||||
法律法规
|
||||
|
||||
普法课堂
|
||||
|
||||
法治视频
|
||||
|
||||
法治人物
|
||||
|
||||
知识产权
|
||||
最高法发布人民法院台胞权益保障典型案例
|
||||
全国检察机关立案办理公益诉讼案件超110万件
|
||||
最高法、人社部、山西省委追授韩旭辉“全国模范法官”等称号
|
||||
市场监管总局深入开展“特供酒”清源打链专项行动
|
||||
网信部门从严打击网上侵害未成年人合法权益行为
|
||||
立德树人、明法笃行,为法治中国建设提供人才保障
|
||||
让行政复议更加公正高效便民为民
|
||||
黑龙江完善立法以“林长制”促“林长治”
|
||||
上海市黄浦区法学会规范发展树典范 践行法治立标杆
|
||||
湖北公安机关侦破一起跨境网络赌博案 涉案流水超10亿元
|
||||
|
||||
宪法书签DIY活动征集公告
|
||||
|
||||
今日说法(2024)
|
||||
|
||||
法治深壹度(2024)
|
||||
|
||||
天网(2024)
|
||||
|
||||
|
||||
全国百强期刊(选)
|
||||
|
||||
|
||||
社科词条库
|
||||
|
||||
|
||||
首页-学习强国-学习慕课
|
||||
|
||||
|
||||
学习强国-首页-国图公开课
|
||||
|
||||
|
||||
打开
|
||||
永远的丰碑
|
||||
经典著作
|
||||
红色记忆
|
||||
党史学习
|
||||
永远的丰碑
|
||||
查看全部
|
||||
李大钊:中国共产党的创始人之一
|
||||
蔡和森:中国共产党工人运动领袖
|
||||
董必武:中国共产党的创始人之一
|
||||
何叔衡:中国共产党的创始人之一
|
||||
方志敏:伟大的共产主义战士
|
||||
刘胡兰:生的伟大死的光荣
|
||||
马本斋:百战百胜的回民支队司令员
|
||||
左 权:中国工农红军高级指挥员
|
||||
视频专区
|
||||
查看全部
|
||||
|
||||
-png[url5]
|
||||
享誉中外的科学家和教育家——卢嘉锡
|
||||
|
||||
-png[url6]
|
||||
生是为中国 死是为中国——刘伯坚
|
||||
|
||||
-png[url7]
|
||||
杰出的红军指挥员——蔡申熙
|
||||
|
||||
-png[url8]
|
||||
党的早期农民运动的领导人——罗学瓒
|
||||
建党精神
|
||||
井冈山精神
|
||||
苏区精神
|
||||
长征精神
|
||||
遵义会议精神
|
||||
延安精神
|
||||
抗战精神
|
||||
西柏坡精神
|
||||
大别山精神
|
||||
抗美援朝精神
|
||||
“两弹一星”精神
|
||||
雷锋精神
|
||||
焦裕禄精神
|
||||
大庆精神(铁人精神)
|
||||
红旗渠精神
|
||||
塞罕坝精神
|
||||
抗震救灾精神
|
||||
载人航天精神
|
||||
脱贫攻坚精神
|
||||
抗疫精神
|
||||
“三牛”精神
|
||||
科学家精神
|
||||
企业家精神
|
||||
探月精神
|
||||
调查研究论
|
||||
打开
|
||||
调研与写作方法谈
|
||||
打开
|
||||
调研成果选
|
||||
打开
|
||||
查看全部
|
||||
|
||||
教育头条
|
||||
思政与德育
|
||||
教师
|
||||
学前教育
|
||||
中小学教育
|
||||
高等教育
|
||||
升学与就业
|
||||
职业教育
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 2. 3. 4. 5. 6. 7. 8. 9. 10.
|
||||
|
||||
考研别慌!师哥师姐来支招,此战,必上岸!
|
||||
2025年全国硕士研究生招生考试各项工作准备就绪
|
||||
•
|
||||
全国教师教育工作会议召开
|
||||
•
|
||||
2025年广东拟投入41.1亿元支持35所本科高校发展
|
||||
•
|
||||
大中城市联合招聘高校毕业生秋季活动收官
|
||||
爱国爱澳 澳门青年与祖国同心同行
|
||||
2024年全国高等学校法治工作会议召开
|
||||
“AI赋能 数智领航——提升教师数字素养,助推新质教育创变”圆桌论坛在成都师范学院举行
|
||||
江西赣州:这所学校有个特别的“动物医院”
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
动态与政策
|
||||
技能提升
|
||||
竞赛比武
|
||||
大国工匠
|
||||
技工技师摇篮
|
||||
技能课堂
|
||||
|
||||
山东:成立省会经济圈产教联合体 提升高技能人才培养质量
|
||||
|
||||
湖北省2万余名职工晋升职业技能等级
|
||||
|
||||
山西:以技能竞赛为抓手 培养高素质技能人才
|
||||
共和国荣光
|
||||
最美奋斗者
|
||||
时代楷模
|
||||
“双百”人物
|
||||
道德模范
|
||||
改革先锋
|
||||
王永志
|
||||
王振义
|
||||
李振声
|
||||
黄宗德
|
||||
迪尔玛·罗塞芙
|
||||
王小谟
|
||||
赵忠贤
|
||||
巴依卡·凯力迪别克
|
||||
田华
|
||||
许振超
|
||||
张晋藩
|
||||
黄大年
|
||||
路生梅
|
||||
张卓元
|
||||
张燮林
|
||||
杜富国
|
||||
钱七虎
|
||||
聂海胜
|
||||
马毛姐
|
||||
王书茂
|
||||
王占山
|
||||
王兰花
|
||||
艾爱国
|
||||
石光银
|
||||
吕其明
|
||||
廷·巴特尔
|
||||
刘贵今
|
||||
孙景坤
|
||||
买买提江·吾买尔
|
||||
李宏塔
|
||||
吴天一
|
||||
辛育龄
|
||||
张桂梅
|
||||
陆元九
|
||||
陈红军
|
||||
林丹
|
||||
卓嘎
|
||||
周永开
|
||||
柴云振
|
||||
郭瑞祥
|
||||
|
||||
打开
|
||||
|
||||
|
||||
|
||||
|
||||
关注健康
|
||||
健康知识
|
||||
人物风采
|
||||
心理辅导
|
||||
全民健身
|
||||
老龄生活
|
||||
“敬佑生命·荣耀医者”第八届公益活动年度论坛隆重举行
|
||||
人工耳蜗大幅降价 如何保质量保供应
|
||||
拒绝“脆皮” 当青年走进中医夜校
|
||||
口干舌燥、欲哭无泪?警惕干燥综合征
|
||||
罕见病用药进医保体现探索与担当
|
||||
北京发布冬季流感中医药防治方案
|
||||
冬季诺如病毒高发 如何预防?
|
||||
冬季进入呼吸系统疾病高发期 多种病原如何分辨?
|
||||
深化医改
|
||||
优化生育
|
||||
|
||||
|
||||
冬至养生防三病
|
||||
|
||||
骨关节健康系列:肩关节的防护知识
|
||||
|
||||
顺着节气控血糖,冬至养生食疗方推荐
|
||||
|
||||
“叛逆”是孩子成长的信号 家长要学会放手
|
||||
-png[url9]
|
||||
打开
|
||||
解锁北京城市副中心站枢纽工程的“智慧密码”
|
||||
我国科学家首获约28亿年前月球背面古磁场信息
|
||||
248次下潜!一组数据看我国载人潜水器2024全年成果
|
||||
我国科技期刊学术影响力逐年上升
|
||||
谷神星一号海射型遥四运载火箭发射成功
|
||||
“这份事业,我们做对了!”——“学习强国”学习平台科学教育采编部纪事
|
||||
每日科普|为什么炼化厂晚上要开这么多灯?
|
||||
炼油总能力突破5000万吨 我国最大石化产业基地全面建成
|
||||
科技新闻
|
||||
科技思想研究
|
||||
数字时代
|
||||
|
||||
走遍中国
|
||||
国家历史文化名城
|
||||
中国历史名镇名村
|
||||
中国历史文化街区
|
||||
|
||||
山东邹城:邹鲁灵秀 大美峄山
|
||||
|
||||
辽宁大连滨海国家地质公园
|
||||
|
||||
云南·玉龙雪山
|
||||
中国相册
|
||||
最美中国
|
||||
最美中国人
|
||||
历史瞬间
|
||||
图片故事
|
||||
画报中国
|
||||
|
||||
粤港澳大湾区不眠夜
|
||||
|
||||
东北地区筑牢生态屏障
|
||||
|
||||
城乡建设忙
|
||||
-png[url10]
|
||||
打开
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35.
|
||||
|
||||
习近平在视察驻澳门部队时强调 全面加强部队建设 提高履行防务能力 为继续开创具有澳门特色的“一国两制”实践新局面作出更大贡献
|
||||
-png[url11]
|
||||
-png[url12]
|
||||
-png[url13]
|
||||
-png[url14]
|
||||
-png[url15]
|
||||
-png[url16]
|
||||
-png[url17]
|
||||
-png[url18]
|
||||
-png[url19]
|
||||
-png[url20]
|
||||
-png[url21]
|
||||
中国军网
|
||||
环球视野
|
||||
打开
|
||||
习近平外交思想研究
|
||||
Xi's Time
|
||||
世界眼中的习近平
|
||||
国际问题研究
|
||||
世界文明研究
|
||||
从和平共处五项原则到构建人类命运共同体:“全球南方”的时代使命
|
||||
2024-12-20
|
||||
开创共建“一带一路”更加光明的未来
|
||||
2024-12-19
|
||||
中国特色大国外交的公正逻辑及其实践
|
||||
2024-12-18
|
||||
中国特色大国外交的“和合”逻辑及其实践
|
||||
2024-12-17
|
||||
积极参与构建公正合理的全球治理体系
|
||||
2024-12-16
|
||||
中国特色大国外交的统筹逻辑及其实践
|
||||
2024-12-16
|
||||
完善全球治理,二十国集团应该做什么?
|
||||
2024-12-13
|
||||
构建人类命运共同体所体现的世界观秩序观价值观
|
||||
2024-12-12
|
||||
|
||||
新闻馆
|
||||
打开
|
||||
|
||||
博物馆
|
||||
打开
|
||||
|
||||
国情馆
|
||||
打开
|
||||
|
||||
文明馆
|
||||
打开
|
||||
-png[url22]
|
||||
|
||||
全国图书馆
|
||||
|
||||
全国博物馆
|
||||
|
||||
中国国家博物馆
|
||||
|
||||
中国国家图书馆
|
||||
|
||||
国家大剧院
|
||||
|
||||
故宫博物院
|
||||
|
||||
敦煌研究院
|
||||
|
||||
中国美术馆
|
||||
|
||||
中国出版集团强国版
|
||||
|
||||
人民出版社强国版
|
||||
|
||||
学习出版社强国版
|
||||
|
||||
五洲传播出版社强国版
|
||||
|
||||
人民文学出版社强国版
|
||||
|
||||
中华书局强国版
|
||||
|
||||
三联书店强国版
|
||||
|
||||
龙源期刊网强国版
|
||||
|
||||
新华书店强国版
|
||||
|
||||
中国摄影出版社强国版
|
||||
|
||||
外研社强国版
|
||||
|
||||
视觉中国强国版
|
||||
|
||||
《辞海》网络版
|
||||
打开
|
||||
打开
|
||||
|
||||
马克思恩格斯全集
|
||||
列宁全集
|
||||
毛泽东选集
|
||||
邓小平文选
|
||||
江泽民文选
|
||||
胡锦涛文选
|
||||
习近平谈治国理政(第一卷)
|
||||
习近平谈治国理政(第二卷)
|
||||
习近平关于实现中华民族伟大复兴的中国梦论述摘编
|
||||
习近平关于社会主义经济建设论述摘编
|
||||
习近平关于社会主义政治建设论述摘编
|
||||
习近平关于社会主义文化建设论述摘编
|
||||
习近平关于社会主义社会建设论述摘编
|
||||
习近平关于社会主义生态文明建设论述摘编
|
||||
习近平关于协调推进“四个全面”战略布局论述摘编
|
||||
习近平关于严明党的纪律和规矩论述摘编
|
||||
知之深 爱之切
|
||||
摆脱贫困
|
||||
之江新语
|
||||
干在实处 走在前列
|
||||
站内搜索
|
||||
我的学习
|
||||
我的书房
|
||||
我的积分
|
||||
我要投稿
|
||||
记者培训
|
||||
建议反馈
|
||||
智能审校
|
||||
舆情监测
|
||||
返回顶部
|
||||
下载学习强国app
|
||||
服务热线
|
||||
12361
|
||||
值班电话
|
||||
010-55624303
|
||||
010-55624311
|
@ -0,0 +1,35 @@
|
||||
content_judge: 1628
|
||||
special_url_count: 8
|
||||
arcile_or_list_judge: 0.004914004914004914
|
||||
************
|
||||
|
||||
raw materials: 53e552
|
||||
|
||||
content_judge: 7080
|
||||
special_url_count: 0
|
||||
arcile_or_list_judge: 0.0
|
||||
************
|
||||
|
||||
raw materials: 8c1617
|
||||
|
||||
content_judge: 3937
|
||||
special_url_count: 5
|
||||
arcile_or_list_judge: 0.00127000254000508
|
||||
************
|
||||
|
||||
raw materials: bfa721
|
||||
|
||||
content_judge: 4715
|
||||
special_url_count: 34
|
||||
arcile_or_list_judge: 0.007211028632025451
|
||||
************
|
||||
|
||||
raw materials: ffffe4
|
||||
|
||||
content_judge: 1803
|
||||
special_url_count: 1
|
||||
arcile_or_list_judge: 0.0005546311702717693
|
||||
************
|
||||
|
||||
raw materials: eca076
|
||||
|
@ -0,0 +1,26 @@
|
||||
{
|
||||
"wx_expand_article_button": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"轻触阅读原文"
|
||||
]
|
||||
}
|
||||
},
|
||||
"×": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"×"
|
||||
]
|
||||
}
|
||||
},
|
||||
"分析": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"分析"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
{
|
||||
"url0": "https://mmbiz.qpic.cn/mmbiz_jpg/Iia2PwP9IhHT2BWDhDeO97oltwGp6nEBA7T5uW8HiciaCx8QnjokUR51PZNmuvbEtWj3o49joHjGzibrnWtYibHqHvg/0?wx_fmt=jpeg",
|
||||
"url1": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url2": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url3": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url4": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url5": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url6": "http://mmbiz.qpic.cn/mmbiz_png/Iia2PwP9IhHSvPUquYEF5rRLS0PyJXPYttmAq1dhC4VdTZS7Eg9zawqQBGA0eOnxgKQgACFkqH59LcAt2dxV0kg/0?wx_fmt=png"
|
||||
}
|
@ -0,0 +1,510 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-cover_imageimg[url0]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
创新案例|党建引领绘就民族团结社区新画卷的经验与启示
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
党建网微平台
|
||||
|
||||
|
||||
2024年12月20日 14:00
|
||||
北京
|
||||
|
||||
|
||||
|
||||
|
||||
-img[url1]
|
||||
坚持党建引领 绘就民族团结社区新画卷
|
||||
宁夏回族自治区吴忠市利通区委组织部、区委宣传部
|
||||
2020年6月8日,习近平总书记来到宁夏回族自治区吴忠市利通区金花园社区,了解社区党建工作、民族团结社区创建和为民服务工作情况,同社区志愿者代表亲切交谈。近年来,金花园社区牢记习近平总书记殷切嘱托,坚持以“大党建”引领基层微治理,不断创新治理机制、工作载体,着力提升社区治理和为民服务水平,绘就民族团结社区新画卷。金花园社区先后获得“全国先进基层党组织”“全国民族团结进步模范集体”等多项荣誉。
|
||||
|
||||
|
||||
基本情况
|
||||
-img[url2]
|
||||
金花园社区成立于2002年,有居民5025户、1万余人,其中回、满、蒙古、藏等少数民族约占总人口的45%。近年来,为破解老年人口多、公共基础设施老化、居民需求多样化等问题,社区深入学习贯彻习近平总书记考察宁夏时的重要讲话精神,以为居民提供更加精细化、精准化的服务为目标,以党建引领基层治理为抓手,全面推动资源整合、力量融合、功能聚合,切实增强社区治理能力,不断提升群众的获得感、幸福感和安全感。
|
||||
|
||||
主要做法
|
||||
-img[url3]
|
||||
1.坚持党建引领,使治理能力强起来。
|
||||
织密组织链条。建立“社区党委—网格党支部—楼栋党小组—楼道红管家”4级组织架构,在4个规模小区、3个散居楼院和580个商户中组建网格党支部4个、楼栋党小组12个、红色业委会5个,让治理触角向更小单元延伸。加强自身建设。通过“请进来指导+走出去培训”,帮助社区工作者开眼界、拓思路、长经验。依托“擂台比武”“导师帮带”等机制,规范落实差异化考核管理制度,着力提升社区工作者在应急处突、矛盾化解、为民服务等方面的能力。延伸服务阵地。改造提升社区党群服务中心,打造社区日间照料中心和老年饭桌。“见缝插针”利用空间,统筹闲置用房等资源,打造“红领之家”网格驿站、红色暖“新”服务驿站等,将社区阵地延伸至小区,确保居民不出小区就能找到组织、享受到服务。
|
||||
2.聚焦队伍建设,将多元力量统起来。
|
||||
壮大骨干力量。注重把政治立场坚定、有为民服务情怀的党员选聘为网格党支部书记、党小组组长,动员128名在职党员、退休党员、直管党员主动担任单元红管家、参与红色业委会、组建先锋管家团,持续充实网格力量,引导广大党员群众深度参与社区治理,让党员亮相在网格、发挥作用在网格。依托“民主议政日”“板凳会”“廊庭会”等议事平台协商解决居民停车难、污水管网破损、高空甩线等民生问题,切实打通为民服务“最后一米”。用好共建资源。持续巩固社区“联合党委”共驻共建机制,严格落实“平战转换”“一书三单”机制,254名在职党员充分发挥“双报到双服务”作用。广泛开展党员亮身份、亮承诺活动,13家共建单位聚焦网格公共服务、民生事项,累计投入40余万元为居民解决路灯亮化等民生实事90余件、圆梦居民“微心愿”280余个,形成共驻共建、共治共享治理格局。培育专业力量。创新建立社区党组织领办社会组织模式,社区党组织牵头注册成立社会组织,已培育孵化“织悦坊”“启心家庭教育”等5个社区社会组织,整合社会工作者、社会组织、志愿者以及社区慈善力量等多方资源,聚焦“一老一小”等重点群体,提供亲职家庭辅导、心理咨询、手工编织等多元化服务60余项,有效提升网格专业化、精细化治理水平。
|
||||
3.做实精准服务,把服务质效提起来。
|
||||
公共服务更便捷。金花园社区始终把公共服务与居民需求拧成“一股绳”,整合社区党群服务中心、社区新时代文明实践站及周边药店、商超、餐厅、学校等生活配套服务点,打造以社区为圆心、步行15分钟为半径的“15分钟便民生活圈”,为居民提供党务、政务、便民服务等32项服务内容,让全年龄段的居民都能在社区便利生活。网格服务更精准。以服务优化促治理提升,紧紧围绕“精细化管理、零距离服务”的网格理念,在社区内划分12个网格,分别设网格长和专职网格员,网格事务实行包干负责制,把网格员公示在单元门口,把职责任务和服务承诺亮晒在楼道中,让群众随时随地看得见、找得到。通过党员代办、认领微心愿、制作“七彩便民卡条”等方式,为小区居民提供养老认证、医保代办、水电费代交等贴心服务,解决群众“急难愁盼”问题。志愿服务更精细。持续深化“兰花芬芳”志愿品牌,大力开展“行胜于言”志愿服务、阵地建设便民服务、为民办事暖心服务等志愿服务活动。组建“五朵金花”宣讲队、“红管家”志愿者服务队、“手拉手”法律咨询队、“红袖章”巡逻队、“铁班长”志愿服务队等7支志愿服务队伍,400余名志愿者通过上门服务、定点服务、集中服务等方式,把群众需求与服务点对点结合,常态化为群众提供便民理发、家电维修等服务,在社区内形成“有时间当志愿者、有困难找志愿者”的良好氛围。
|
||||
4.推进民族团结,让居民幸福感满起来。
|
||||
持续深化宣传教育。金花园社区自觉把铸牢中华民族共同体意识融入各项服务工作中,精心打造“总书记来到咱们家”红色教育基地,组建“社区理论宣讲轻骑兵”,推出《总书记来到咱们家》等歌曲,广泛开展各类宣讲活动,引领带动各族群众在文化、社会等方面广泛交往交流交融。精心打造“石榴籽议事厅”和文化长廊,深入开展“重温红色教育 重走视察路线”等系列主题宣讲活动,通过“兰花大妈”志愿者带头开展“流动式+示范式”的志愿服务宣讲、热心党员开展“方言式+话家常”的接地气宣讲、党员开展“面对面+广场板凳会”的微宣讲等多种形式,切实把总书记对各族群众的亲切关怀、对社区发展的殷切希望讲给社区居民。积极开展文化活动。结合春节、元宵节、端午节、中秋节等中华民族传统节日,组织开展“迎新春民族团结文艺汇演”“欢乐庆元宵联谊活动”“粽香满园话情谊”“花儿唱响新生活大合唱”等精彩纷呈的主题文化活动,让各族群众交到知心朋友、成为和睦邻居,在交往交流交融中铸牢中华民族共同体意识。连续开展20届“社区邻居节”,借助邻里百家宴、茶话会、文艺演出等载体,让各族群众像亲人一样聚在一起,共享百家宴、共唱邻里歌、共叙邻里情,凝聚起共建幸福美好家园的强大合力。发挥典型引领作用。坚持选树身边典型、用好身边典型,涵养和谐社区风尚。在社区内持续开展“身边好人”“好媳妇”“好婆婆”“美德少年”等群众性评选表彰宣传活动和“民族团结模范楼栋”“民族团结进步先进个人”评选等活动,实现表扬一批、影响一批、带动一批,进一步唱响铸牢中华民族共同体意识主旋律。
|
||||
|
||||
经验启示
|
||||
-img[url4]
|
||||
1.必须坚持和加强党的全面领导。
|
||||
习近平总书记强调:“始终坚持党的领导,不断巩固各民族团结奋斗的共同思想政治基础。中国共产党是中国特色社会主义事业的领导核心,是各族人民最可靠的主心骨。”随着经济社会的发展,社区居民构成日益复杂,居民诉求也趋向多元,社区成为社会各类群体的交汇点、社会矛盾的集聚点、社会治理的着力点,各种问题和矛盾错综复杂,必须靠党来总揽全局、协调各方,确保城市基层和谐稳定、人民安居乐业。网格是城市治理的最小单元,只有把党的全面领导融入网格建设和基层治理的各方面,以党的建设贯穿、引领和保障网格治理,才能推动各项工作落细落实。
|
||||
2.必须牢牢把握铸牢中华民族共同体意识这一主线。
|
||||
|
||||
习近平总书记强调:“各族人民都要把中华民族共同体意识牢记心间、融入血液,共守祖国疆土、共建美好家园,让民族团结进步之花越开越绚烂。”金花园社区党委始终坚持以习近平新时代中国特色社会主义思想为引领,深入学习贯彻习近平总书记关于加强和改进民族工作的重要思想,牢牢把握铸牢中华民族共同体意识这一主线,扎实开展各项工作,以精准服务提升居民幸福感,以文化活动增进居民认同感,不断促进各民族交往交流交融,让各民族居民像石榴籽一样紧紧抱在一起。
|
||||
3.必须牢固树立以人民为中心的发展思想。
|
||||
人民立场是中国共产党的根本政治立场,以人民为中心体现了我们党全心全意为人民服务的根本宗旨。金花园社区始终坚持“围着需求转、服务赢点赞”,针对社会主要矛盾转变,顺应社区居民“需求端”的新变化,推动社区服务“供给侧改革”,以党建促发展、以党建促民生、以党建促团结、以党建促治理。在做优社区服务的基础上,依靠组织力量、组织网络把社会资源撬动起来,让群众参与其中,用群众去引领群众、服务群众,不断增强群众获得感、幸福感。
|
||||
4.必须加强组织体系建设。
|
||||
城市基层党建是一项复杂的系统工程,仅仅依靠社区党组织的力量是有限的。要突破以社区抓社区、靠基层抓基层的思维局限,坚持纵向四级联动、横向互联互动,结合实际不断健全“县(市、区)、乡(镇)、社区、网格”组织体系,充分发挥党组织牵引作用,广泛推动各共建单位、各类组织、各方力量参与到社区治理中。要坚持把党的组织覆盖和工作覆盖延伸至基层治理的“神经末梢”,充分发挥党的组织优势、组织功能和组织力量,从而进一步提升城市基层党建工作质效。
|
||||
|
||||
来源:2024年第12期《党建》杂志
|
||||
|
||||
|
||||
监制:苗遂奇
|
||||
|
||||
|
||||
审核:王群星
|
||||
责编:赵瑞熙
|
||||
校对:赵明月
|
||||
制作:赵明月
|
||||
-img[url5]
|
||||
点击阅读原文,了解更多精彩内容
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
预览时标签不可点
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Read more
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Scan to Follow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
继续滑动看下一个
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-img[url6]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
党建网微平台
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
向上滑动看下一个
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Got It
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Scan with Weixin to
|
||||
|
||||
|
||||
use this Mini Program
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Cancel
|
||||
|
||||
|
||||
Allow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Cancel
|
||||
|
||||
|
||||
Allow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
:
|
||||
|
||||
|
||||
,
|
||||
|
||||
|
||||
.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Video
|
||||
|
||||
|
||||
Mini Program
|
||||
|
||||
|
||||
Like
|
||||
|
||||
|
||||
,轻点两下取消赞
|
||||
|
||||
|
||||
Wow
|
||||
|
||||
|
||||
,轻点两下取消在看
|
||||
|
||||
|
||||
Share
|
||||
|
||||
|
||||
Comment
|
||||
|
||||
|
||||
Favorite
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,26 @@
|
||||
{
|
||||
"wx_expand_article_button": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"轻触阅读原文"
|
||||
]
|
||||
}
|
||||
},
|
||||
"×": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"×"
|
||||
]
|
||||
}
|
||||
},
|
||||
"分析": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"分析"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"url0": "https://mmbiz.qpic.cn/sz_mmbiz_jpg/VCNFc2lDa226VGUEJP7AKHOKJlJIeGrdVx05jAdN7yeXTK08lKgSKSe0eyAVVsy2R3Hzfj01b28hMuFctGEtLA/0?wx_fmt=jpeg",
|
||||
"url1": "data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='1px' height='1px' viewBox='0 0 1 1' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3E%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' fill-opacity='0'%3E%3Cg transform='translate(-249.000000, -126.000000)' fill='%23FFFFFF'%3E%3Crect x='249' y='126' width='1' height='1'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/svg%3E",
|
||||
"url2": "http://mmbiz.qpic.cn/sz_mmbiz_png/VCNFc2lDa20p3OicicdsovDibyXZtfRGgxtIBUM6sdib6qNhBnghVC7wx36icZq6LM6wpaxxmMict4bBq7E6kZ2IbZJg/0?wx_fmt=png"
|
||||
}
|
@ -0,0 +1,544 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-cover_imageimg[url0]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
佛山市顺德区:“四力”齐发 助推新质生产力发展
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
广东社会工作发布
|
||||
|
||||
|
||||
2024年12月18日 19:44
|
||||
广东
|
||||
|
||||
|
||||
|
||||
|
||||
佛山市顺德区坚持党建引领,强化政治领导力、组织覆盖力、人才凝聚力、发展推动力,加强“
|
||||
两企三新
|
||||
”党建工作,实现党的组织和工作在企业更全更广泛的覆盖,有力助推新质生产力发展。
|
||||
|
||||
|
||||
强化政治领导力
|
||||
为发展新质生产力把牢方向
|
||||
|
||||
|
||||
引领思想共识。
|
||||
发挥区镇党校平台优势,创新性开办区“两新”组织党校,每年度培训“两新”党组织书记及党务工作者超40期、超2000人次,凝聚全区党群发展共识。
|
||||
|
||||
|
||||
引领发展定力。
|
||||
增强党组织的政治功能,大力宣传新质生产力理论,引导全区上下坚持工业立区、科技强区不动摇。
|
||||
|
||||
|
||||
引领红色动能。
|
||||
持续加强企业党组织建设,充分发挥企业党员先锋模范作用,在推动新质生产力发展中开展科技攻关、市场拓展,确保顺德制造业高质量发展基业长青。
|
||||
|
||||
|
||||
强化组织覆盖力
|
||||
为发展新质生产力强基固本
|
||||
|
||||
|
||||
构建“区域+行业+产业链”党建新格局。
|
||||
|
||||
|
||||
聚焦区域党建推动园区党建工作“五同步”。
|
||||
顺利推动伦教珠宝时尚产业园等6个园区党组织成立,企业党组织班子成员与企业管理层交叉任职比例达90%,其中书记担任高管的有80%。
|
||||
|
||||
|
||||
聚焦行业党建压实行业党委责任。
|
||||
在压实11个行业党委党建责任的基础上,建成非公经济组织党建示范点49个,其中3个获评省级示范点。截至目前,全区建成超1600个“两新”党组织,党的组织覆盖和工作覆盖更全更广泛。
|
||||
|
||||
|
||||
聚焦产业链党建实现链上资源高效配置。
|
||||
发挥智能家电、机器人、预制菜等产业链党委作用,推动支部建在产业链、服务聚在产业链、问题解在产业链。比如,区智能机器人产业链党委组织银企对接活动15场,对接金融机构10家,为200多家链上企业授信4.9亿元。区预制菜产业链党委组织180家链上企业组团参加首届中国国际预制菜产业大会,达成意向合作金额10.6亿元。
|
||||
|
||||
|
||||
强化人才凝聚力
|
||||
为发展新质生产力提供支撑
|
||||
|
||||
|
||||
坚持党管人才原则。
|
||||
完善高层次人才入党培养联系机制,实行高层次人才入党全流程管理,做到成熟一个发展一个,发展一个带动一片。近三年发展制造业企业党员1275名,200%完成市指导性计划。
|
||||
|
||||
|
||||
实施党员人才“双转化”。
|
||||
深化“红色顺企青蓝工程”,18名党员民营企业家与36名青年企业家结对,培养一批有情怀、有视野、懂管理的青年民营企业家。选派首批5名村(社区)党组织书记到上市公司挂职锻炼,运用基层实践经验助力企业新质生产力发展。
|
||||
|
||||
|
||||
培育科技攻关党员先锋队。
|
||||
全区企业共建有党员科技攻关队70多支,突破技术难题240个,带动全区获得发明专利授权5000余件。以联塑集团科技攻关党员先锋队为题材拍摄《我们在海上建牧场》,成为全省唯一入选第十七届全国党员教育电视片观摩交流活动获奖作品。
|
||||
|
||||
|
||||
凝聚新就业群体向心力。
|
||||
与工会联合共建27家暖“新”驿站,发动暑期少年儿童托管志愿服务,以“基础托管+特色活动+参观研学+心理辅导”为新就业群体子女提供14场活动,服务超800多人,为快递小哥、网约车司机、户外劳动者等新就业群体提供多元化暖心服务。
|
||||
|
||||
|
||||
强化发展推动力
|
||||
为发展新质生产力蓄势赋能
|
||||
|
||||
|
||||
坚持“有求必应、无事不扰”服务理念。
|
||||
持续开展“政企共建促发展”活动,活动开展以来,有26个机关党组织帮助企业破解加快上市融资等难题67个,“政企共建促发展”经验获央视新闻联播报道。
|
||||
|
||||
|
||||
推行“门口办”“指尖办”服务模式。
|
||||
在大企业门口设立党建服务站,为美的集团、碧桂园集团提供党员组织关系迁转、档案管理等20多项服务。上线390项“指尖办”涉企审批服务事项,为企业提供更便捷高效的指尖服务。
|
||||
|
||||
|
||||
树立“马上就办、办就办好”行动自觉。
|
||||
整合工业项目报建全流程审批事项,简化为“一件事”,审批事项压缩近40%,推动47个项目“拿地即开工”,更快更高效服务企业发展。
|
||||
|
||||
|
||||
来源:佛山市顺德区委社会工作部
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-img[url1]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
预览时标签不可点
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Scan to Follow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
继续滑动看下一个
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-img[url2]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
广东社会工作发布
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
向上滑动看下一个
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Got It
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Scan with Weixin to
|
||||
|
||||
|
||||
use this Mini Program
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Cancel
|
||||
|
||||
|
||||
Allow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Cancel
|
||||
|
||||
|
||||
Allow
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
:
|
||||
|
||||
|
||||
,
|
||||
|
||||
|
||||
.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Video
|
||||
|
||||
|
||||
Mini Program
|
||||
|
||||
|
||||
Like
|
||||
|
||||
|
||||
,轻点两下取消赞
|
||||
|
||||
|
||||
Wow
|
||||
|
||||
|
||||
,轻点两下取消在看
|
||||
|
||||
|
||||
Share
|
||||
|
||||
|
||||
Comment
|
||||
|
||||
|
||||
Favorite
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
{
|
||||
"input_0": {
|
||||
"input": {
|
||||
"type": "text",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"input_1": {
|
||||
"input": {
|
||||
"type": "checkbox",
|
||||
"values": [
|
||||
"aria-hidden=false class=['el-checkbox__original'] value="
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
{
|
||||
"url0": "http://search.people.cn/_nuxt/img/u14@2x.9edee14.png",
|
||||
"url1": "http://sh.people.com.cn/mediafile/pic/20241128/53/8393620497481641401.jpg",
|
||||
"url2": "http://dangjian.people.com.cn/n1/2024/1024/c117092-40346242.html",
|
||||
"url3": "http://dangjian.people.com.cn/n1/2024/1024/c117092-40346242.html",
|
||||
"url4": "http://bj.people.com.cn/n2/2024/1129/c14540-41059137.html",
|
||||
"url5": "http://bj.people.com.cn/n2/2024/1129/c14540-41059137.html",
|
||||
"url6": "http://hlj.people.com.cn/n2/2024/1114/c220005-41042233.html",
|
||||
"url7": "http://hlj.people.com.cn/n2/2024/1114/c220005-41042233.html",
|
||||
"url8": "http://sh.people.com.cn/n2/2024/1128/c134768-41057835.html",
|
||||
"url9": "http://sh.people.com.cn/n2/2024/1128/c134768-41057835.html",
|
||||
"url10": "http://sh.people.com.cn/n2/2024/1128/c134768-41057835.html",
|
||||
"url11": "http://nx.people.com.cn/n2/2024/1031/c192482-41026280.html",
|
||||
"url12": "http://nx.people.com.cn/n2/2024/1031/c192482-41026280.html",
|
||||
"url13": "http://gs.people.com.cn/n2/2024/0902/c183343-40963854.html",
|
||||
"url14": "http://gs.people.com.cn/n2/2024/0902/c183343-40963854.html",
|
||||
"url15": "http://leaders.people.com.cn/n1/2024/0902/c58278-40311098.html",
|
||||
"url16": "http://leaders.people.com.cn/n1/2024/0902/c58278-40311098.html",
|
||||
"url17": "http://jl.people.com.cn/n2/2024/1028/c349771-41022203.html",
|
||||
"url18": "http://jl.people.com.cn/n2/2024/1028/c349771-41022203.html",
|
||||
"url19": "http://cpc.people.com.cn/n1/2024/1028/c64387-40348213.html",
|
||||
"url20": "http://cpc.people.com.cn/n1/2024/1028/c64387-40348213.html",
|
||||
"url21": "http://hb.people.com.cn/n2/2024/1028/c194063-41021955.html",
|
||||
"url22": "http://hb.people.com.cn/n2/2024/1028/c194063-41021955.html",
|
||||
"url23": "http://opinion.people.com.cn/n1/2023/0425/c223228-32672908.html",
|
||||
"url24": "http://pic.people.com.cn/n1/2023/0426/c1016-32673822.html",
|
||||
"url25": "http://pic.people.com.cn/n1/2023/0425/c1016-32673398.html",
|
||||
"url26": "http://media.people.com.cn/n1/2023/0426/c14677-32673858.html",
|
||||
"url27": "http://finance.people.com.cn/n1/2023/0425/c1004-32673325.html",
|
||||
"url28": "http://politics.people.com.cn/n1/2023/0425/c1001-32673119.html",
|
||||
"url29": "http://finance.people.com.cn/n1/2023/0425/c1004-32673123.html",
|
||||
"url30": "http://pic.people.com.cn/n1/2023/0425/c1016-32673271.html",
|
||||
"url31": "http://pic.people.com.cn/n1/2023/0425/c1016-32673117.html",
|
||||
"url32": "http://pic.people.com.cn/n1/2023/0425/c1016-32672590.html",
|
||||
"url33": "http://data.people.com.cn/pd/ldrhdbd",
|
||||
"url34": "http://opinion.people.com.cn/GB/8213/49160/49179/index.html",
|
||||
"url35": "http://cpc.people.com.cn/GB/64162/64168/index.html",
|
||||
"url36": "http://yjy.people.com.cn",
|
||||
"url37": "http://data.people.com.cn"
|
||||
}
|
@ -0,0 +1,103 @@
|
||||
focus statement:
|
||||
#社区治理
|
||||
解释:社区活动、社区课堂、居民活动、物业管理、业主自治、楼组建设、小区微更新、文明养宠、楼组长、团队建设、居委会标准化建设、美丽楼组、僵尸车、全岗通、小区充电桩、电动自行车、“五大委员会”工作、社区民主协商、一居一品、事实项目、社区治理效能、“四百”走访大调研、社区难点、社区痛点、赋能社区工作者这些方面的信息
|
||||
|
||||
|
||||
raw materials: 53e552
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 6
|
||||
total analysis time: 13.022423267364502
|
||||
|
||||
author and publish time(not formated): {'source': '广富林街道社会工作办', 'publish_date': '2024-12-03'}
|
||||
infos(not formated):
|
||||
{'focus': '社区治理效能', 'content': '双创科技党支部书记石爱明自豪地说,截止目前,成功添加两企三新微信好友548个。更是开设了双创科技街区公众号、视频号,工作有了更多的抓手;针对“骑手”关心的异地就医、医保报销等高频问题,商贸服务街区党支部联合社区事务受理中心开展暖新共建,提供政策解读和手把手指导服务;针对新小区人车分流,骑手“进门难”,生态文化街区党支部,借力富林议事厅,协调社区在小区两个进门处专门设置了“快递外卖进出捷径路线图”,并录制了视频导引,同时,安排保安人员对进小区的“小哥”进行现场指引,实现了居民安全和“小哥”便捷的双兼顾,较好地解决了这一问题。'}
|
||||
{'focus': '社区治理效能', 'content': '为赋能街区治理,破解瓶颈难题,打通基层治理‘最后一公里’,在全覆盖攻坚行动中,广富林街道建立了《调研走访问题流转单》机制。但在实施过程中,存在沟通不顺、渠道不畅、协同不够、机制不转等问题,为打通裉节堵点,研究制定《广富林街道调研走访问题流转单流程指引》,通过‘五步流转法’实时接单、精准派单、多方议单、跟踪督单、评估结单,提升问题诉求响应效率,实现多部门联动,全链条闭环管理,让每一单都‘不落单’。'}
|
||||
{'focus': '社区治理效能', 'content': '广富林街道将接续发力,推动全覆盖攻坚走深走实,持续走出党组织的引领力,街区的向心力,群众凝聚力。'}
|
||||
{'focus': '社区治理效能', 'content': '全覆盖走访,不仅要走进街头巷尾,更要走进心坎心头。为此,广富林街道用好“四带四到”传家宝,即:带着上级精神,带着感情责任,带着任务清单,带着初心实干,实现责任到人全参与,走访到户全覆盖,服务到底全记录,考评到位全运用。'}
|
||||
{'focus': '社区治理效能', 'content': '为推动广富林街道新兴领域全覆盖攻坚行动走深走实,用“铁脚板”丈量民意,凝“新”聚力,广富林街道在首轮“攻坚战”初战告捷的基础上,集中火力,乘胜追击,以持续打好后续三大“保卫战”,保障“攻坚战”大获全胜,全面胜利。'}
|
||||
{'focus': '社区治理效能', 'content': '自11月初以来,对地铁沿线、商圈景点、大学城、快递外卖驿站等新业态、新就业群体开展新一轮集中再走访2430家,出动协同力量990人次,发放一信、一卡、一海报等宣传资料7500份。开展政策服务、防诈骗宣传等服务2500人次,收集意见建议11条,其中,街区自行解决5条,流转街道6条。其中,已解决2条,正在解决7条,确保全覆盖走访工作在街区落地生根,开花结果。'}
|
||||
************
|
||||
|
||||
raw materials: 8c1617
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 7
|
||||
total results: 3
|
||||
total analysis time: 9.925309896469116
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
{'focus': '社区治理效能', 'content': '习近平在视察驻澳门部队时强调 全面加强部队建设 提高履行防务能力 为继续开创具有澳门特色的‘一国两制’实践新局面作出更大贡献'}
|
||||
{'focus': '社区治理', 'content': '云南曲靖沾益区:网格管理精细化 提升基层治理效能'}
|
||||
{'focus': '社区治理效能', 'content': '‘学习强国’学习平台科学教育采编部纪事'}
|
||||
************
|
||||
|
||||
raw materials: bfa721
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 23
|
||||
total analysis time: 102.12229490280151
|
||||
|
||||
author and publish time(not formated): {'source': '党建网微平台', 'publish_date': '2024-12-20'}
|
||||
infos(not formated):
|
||||
{'focus': '社区治理', 'content': '为破解老年人口多、公共基础设施老化、居民需求多样化等问题,社区深入学习贯彻习近平总书记考察宁夏时的重要讲话精神,以为居民提供更加精细化、精准化的服务为目标,以党建引领基层治理为抓手,全面推动资源整合、力量融合、功能聚合,切实增强社区治理能力,不断提升群众的获得感、幸福感和安全感。'}
|
||||
{'focus': '社区治理', 'content': '精心打造“总书记来到咱们家”红色教育基地,组建“社区理论宣讲轻骑兵”,推出《总书记来到咱们家》等歌曲,广泛开展各类宣讲活动,引领带动各族群众在文化、社会等方面广泛交往交流交融。'}
|
||||
{'focus': '社区治理', 'content': '金花园社区始终把公共服务与居民需求拧成“一股绳”,整合社区党群服务中心、社区新时代文明实践站及周边药店、商超、餐厅、学校等生活配套服务点,打造以社区为圆心、步行15分钟为半径的“15分钟便民生活圈”,为居民提供党务、政务、便民服务等32项服务内容,让全年龄段的居民都能在社区便利生活。'}
|
||||
{'focus': '社区治理', 'content': '织密组织链条。建立“社区党委—网格党支部—楼栋党小组—楼道红管家”4级组织架构,在4个规模小区、3个散居楼院和580个商户中组建网格党支部4个、楼栋党小组12个、红色业委会5个,让治理触角向更小单元延伸。'}
|
||||
{'focus': '社区治理', 'content': '金花园社区牢记习近平总书记殷切嘱托,坚持以“大党建”引领基层微治理,不断创新治理机制、工作载体,着力提升社区治理和为民服务水平,绘就民族团结社区新画卷。'}
|
||||
{'focus': '社区治理', 'content': '创新建立社区党组织领办社会组织模式,社区党组织牵头注册成立社会组织,已培育孵化“织悦坊”“启心家庭教育”等5个社区社会组织,整合社会工作者、社会组织、志愿者以及社区慈善力量等多方资源,聚焦“一老一小”等重点群体,提供亲职家庭辅导、心理咨询、手工编织等多元化服务60余项,有效提升网格专业化、精细化治理水平。'}
|
||||
{'focus': '社区治理', 'content': '组建“五朵金花”宣讲队、“红管家”志愿者服务队、“手拉手”法律咨询队、“红袖章”巡逻队、“铁班长”志愿服务队等7支志愿服务队伍,400余名志愿者通过上门服务、定点服务、集中服务等方式,把群众需求与服务点对点结合,常态化为群众提供便民理发、家电维修等服务,在社区内形成“有时间当志愿者、有困难找志愿者”的良好氛围。'}
|
||||
{'focus': '社区治理', 'content': '以服务优化促治理提升,紧紧围绕“精细化管理、零距离服务”的网格理念,在社区内划分12个网格,分别设网格长和专职网格员,网格事务实行包干负责制,把网格员公示在单元门口,把职责任务和服务承诺亮晒在楼道中,让群众随时随地看得见、找得到。'}
|
||||
{'focus': '社区治理', 'content': '持续深化“兰花芬芳”志愿品牌,大力开展“行胜于言”志愿服务、阵地建设便民服务、为民办事暖心服务等志愿服务活动。'}
|
||||
{'focus': '社区治理', 'content': '连续开展20届“社区邻居节”,借助邻里百家宴、茶话会、文艺演出等载体,让各族群众像亲人一样聚在一起,共享百家宴、共唱邻里歌、共叙邻里情,凝聚起共建幸福美好家园的强大合力。'}
|
||||
{'focus': '社区治理', 'content': '城市基层党建是一项复杂的系统工程,仅仅依靠社区党组织的力量是有限的。要突破以社区抓社区、靠基层抓基层的思维局限,坚持纵向四级联动、横向互联互动,结合实际不断健全“县(市、区)、乡(镇)、社区、网格”组织体系,充分发挥党组织牵引作用,广泛推动各共建单位、各类组织、各方力量参与到社区治理中。要坚持把党的组织覆盖和工作覆盖延伸至基层治理的“神经末梢”,充分发挥党的组织优势、组织功能和组织力量,从而进一步提升城市基层党建工作质效。'}
|
||||
{'focus': '社区治理', 'content': '持续巩固社区“联合党委”共驻共建机制,严格落实“平战转换”“一书三单”机制,254名在职党员充分发挥“双报到双服务”作用。'}
|
||||
{'focus': '社区治理', 'content': '金花园社区始终坚持“围着需求转、服务赢点赞”,针对社会主要矛盾转变,顺应社区居民“需求端”的新变化,推动社区服务“供给侧改革”,以党建促发展、以党建促民生、以党建促团结、以党建促治理。在做优社区服务的基础上,依靠组织力量、组织网络把社会资源撬动起来,让群众参与其中,用群众去引领群众、服务群众,不断增强群众获得感、幸福感。'}
|
||||
{'focus': '社区治理', 'content': '结合春节、元宵节、端午节、中秋节等中华民族传统节日,组织开展“迎新春民族团结文艺汇演”“欢乐庆元宵联谊活动”“粽香满园话情谊”“花儿唱响新生活大合唱”等精彩纷呈的主题文化活动,让各族群众交到知心朋友、成为和睦邻居,在交往交流交融中铸牢中华民族共同体意识。'}
|
||||
{'focus': '社区治理', 'content': '加强自身建设。通过“请进来指导+走出去培训”,帮助社区工作者开眼界、拓思路、长经验。依托“擂台比武”“导师帮带”等机制,规范落实差异化考核管理制度,着力提升社区工作者在应急处突、矛盾化解、为民服务等方面的能力。'}
|
||||
{'focus': '社区治理', 'content': '依托“民主议政日”“板凳会”“廊庭会”等议事平台协商解决居民停车难、污水管网破损、高空甩线等民生问题,切实打通为民服务“最后一米”。'}
|
||||
{'focus': '社区治理', 'content': '金花园社区党委始终坚持以习近平新时代中国特色社会主义思想为引领,深入学习贯彻习近平总书记关于加强和改进民族工作的重要思想,牢牢把握铸牢中华民族共同体意识这一主线,扎实开展各项工作,以精准服务提升居民幸福感,以文化活动增进居民认同感,不断促进各民族交往交流交融,让各民族居民像石榴籽一样紧紧抱在一起。'}
|
||||
{'focus': '社区治理', 'content': '注重把政治立场坚定、有为民服务情怀的党员选聘为网格党支部书记、党小组组长,动员128名在职党员、退休党员、直管党员主动担任单元红管家、参与红色业委会、组建先锋管家团,持续充实网格力量,引导广大党员群众深度参与社区治理,让党员亮相在网格、发挥作用在网格。'}
|
||||
{'focus': '社区治理', 'content': '精心打造“石榴籽议事厅”和文化长廊,深入开展“重温红色教育 重走视察路线”等系列主题宣讲活动,通过“兰花大妈”志愿者带头开展“流动式+示范式”的志愿服务宣讲、热心党员开展“方言式+话家常”的接地气宣讲、党员开展“面对面+广场板凳会”的微宣讲等多种形式,切实把总书记对各族群众的亲切关怀、对社区发展的殷切希望讲给社区居民。'}
|
||||
{'focus': '社区治理', 'content': '坚持选树身边典型、用好身边典型,涵养和谐社区风尚。在社区内持续开展“身边好人”“好媳妇”“好婆婆”“美德少年”等群众性评选表彰宣传活动和“民族团结模范楼栋”“民族团结进步先进个人”评选等活动,实现表扬一批、影响一批、带动一批,进一步唱响铸牢中华民族共同体意识主旋律。'}
|
||||
{'focus': '社区治理', 'content': '延伸服务阵地。改造提升社区党群服务中心,打造社区日间照料中心和老年饭桌。“见缝插针”利用空间,统筹闲置用房等资源,打造“红领之家”网格驿站、红色暖“新”服务驿站等,将社区阵地延伸至小区,确保居民不出小区就能找到组织、享受到服务。'}
|
||||
{'focus': '社区治理', 'content': '广泛开展党员亮身份、亮承诺活动,13家共建单位聚焦网格公共服务、民生事项,累计投入40余万元为居民解决路灯亮化等民生实事90余件、圆梦居民“微心愿”280余个,形成共驻共建、共治共享治理格局。'}
|
||||
{'focus': '社区治理', 'content': '通过党员代办、认领微心愿、制作“七彩便民卡条”等方式,为小区居民提供养老认证、医保代办、水电费代交等贴心服务,解决群众“急难愁盼”问题。'}
|
||||
************
|
||||
|
||||
raw materials: ffffe4
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 8
|
||||
total results: 0
|
||||
total analysis time: 2.823572874069214
|
||||
|
||||
author and publish time(not formated): {'source': '《 人民日报 》', 'publish_date': '2024-10-28'}
|
||||
infos(not formated):
|
||||
|
||||
************
|
||||
|
||||
raw materials: eca076
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 10
|
||||
total analysis time: 16.187344789505005
|
||||
|
||||
author and publish time(not formated): {'source': '佛山市顺德区委社会工作部', 'publish_date': '2024-12-18'}
|
||||
infos(not formated):
|
||||
{'focus': '社区治理效能', 'content': '佛山市顺德区坚持党建引领,强化政治领导力、组织覆盖力、人才凝聚力、发展推动力,加强“两企三新”党建工作,实现党的组织和工作在企业更全更广泛的覆盖,有力助推新质生产力发展。'}
|
||||
{'focus': '社区治理效能', 'content': '为发展新质生产力强基固本。聚焦行业党建压实行业党委责任。在压实11个行业党委党建责任的基础上,建成非公经济组织党建示范点49个,其中3个获评省级示范点。截至目前,全区建成超1600个“两新”党组织,党的组织覆盖和工作覆盖更全更广泛。'}
|
||||
{'focus': '社区治理效能', 'content': '为发展新质生产力提供支撑。实施党员人才“双转化”。深化“红色顺企青蓝工程”,18名党员民营企业家与36名青年企业家结对,培养一批有情怀、有视野、懂管理的青年民营企业家。选派首批5名村(社区)党组织书记到上市公司挂职锻炼,运用基层实践经验助力企业新质生产力发展。'}
|
||||
{'focus': '社区治理', 'content': '整合工业项目报建全流程审批事项,简化为“一件事”,审批事项压缩近40%,推动47个项目“拿地即开工”,更快更高效服务企业发展。'}
|
||||
{'focus': '社区治理效能', 'content': '为发展新质生产力强基固本。聚焦产业链党建实现链上资源高效配置。发挥智能家电、机器人、预制菜等产业链党委作用,推动支部建在产业链、服务聚在产业链、问题解在产业链。比如,区智能机器人产业链党委组织银企对接活动15场,对接金融机构10家,为200多家链上企业授信4.9亿元。区预制菜产业链党委组织180家链上企业组团参加首届中国国际预制菜产业大会,达成意向合作金额10.6亿元。'}
|
||||
{'focus': '社区治理', 'content': '持续开展“政企共建促发展”活动,活动开展以来,有26个机关党组织帮助企业破解加快上市融资等难题67个,“政企共建促发展”经验获央视新闻联播报道。'}
|
||||
{'focus': '社区治理效能', 'content': '为发展新质生产力提供支撑。坚持党管人才原则。完善高层次人才入党培养联系机制,实行高层次人才入党全流程管理,做到成熟一个发展一个,发展一个带动一片。近三年发展制造业企业党员1275名,200%完成市指导性计划。'}
|
||||
{'focus': '社区治理效能', 'content': '为发展新质生产力把牢方向。引领思想共识。发挥区镇党校平台优势,创新性开办区“两新”组织党校,每年度培训“两新”党组织书记及党务工作者超40期、超2000人次,凝聚全区党群发展共识。'}
|
||||
{'focus': '社区治理效能', 'content': '为发展新质生产力强基固本。构建“区域+行业+产业链”党建新格局。聚焦区域党建推动园区党建工作“五同步”。顺利推动伦教珠宝时尚产业园等6个园区党组织成立,企业党组织班子成员与企业管理层交叉任职比例达90%,其中书记担任高管的有80%。'}
|
||||
{'focus': '社区治理', 'content': '推行“门口办”“指尖办”服务模式。在大企业门口设立党建服务站,为美的集团、碧桂园集团提供党员组织关系迁转、档案管理等20多项服务。上线390项“指尖办”涉企审批服务事项,为企业提供更便捷高效的指尖服务。'}
|
||||
************
|
||||
|
@ -0,0 +1,166 @@
|
||||
{
|
||||
"token_id": {
|
||||
"input": {
|
||||
"type": "hidden",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"Create Post": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"Create Post"
|
||||
]
|
||||
}
|
||||
},
|
||||
"auth-flow-modal-close-btn": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_3": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_4": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_5": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_6": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_7": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_8": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_9": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"skip": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"resend": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"email-verification-submit": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_13": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_14": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_15": {
|
||||
"button": {
|
||||
"type": "submit",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_16": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_17": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_18": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_19": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_20": {
|
||||
"button": {
|
||||
"type": "submit",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_21": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"auth-password-recovery-primary-cta": {
|
||||
"button": {
|
||||
"type": "submit",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_23": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"auth-password-recovery-resend-email-cta": {
|
||||
"button": {
|
||||
"type": "submit",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"button_25": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": []
|
||||
}
|
||||
},
|
||||
"auth-password-reset-primary-cta": {
|
||||
"button": {
|
||||
"type": "submit",
|
||||
"values": []
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,83 @@
|
||||
{
|
||||
"url0": "https://styles.redditmedia.com/t5_2qhfb/styles/communityIcon_gej97gt2057d1.png",
|
||||
"url1": "https://styles.redditmedia.com/t5_5l42n6/styles/profileIcon_snoo19feec3d-b7b2-45e1-bdc2-4cf427970b3f-headshot.png?width=64&height=64&frame=1&auto=webp&crop=64:64,smart&s=8212beeb1c87d207953af417974431b70a394b87",
|
||||
"url2": "https://b.thumbs.redditmedia.com/8_et4BGCqZ1LUnpL-N3qEAFzko2TgCpP_T8em4QYuaI.jpg",
|
||||
"url3": "https://styles.redditmedia.com/t5_evf3x/styles/profileIcon_5chg1lgorlx41.jpg?width=48&height=48&frame=1&auto=webp&crop=48:48,smart&s=26bd3799a265271bde824eec8c1a14cbf1bd506a",
|
||||
"url4": "https://external-preview.redd.it/3rRln0iVIX-wT0xZbW3PEwBaaAnqFo9eY9B6gKooOa4.jpg?width=640&crop=smart&auto=webp&s=217592e90ae2f0a92d7cfc6f0e43b91cae8e71ed",
|
||||
"url5": "https://external-preview.redd.it/3rRln0iVIX-wT0xZbW3PEwBaaAnqFo9eY9B6gKooOa4.jpg?width=640&crop=smart&auto=webp&s=217592e90ae2f0a92d7cfc6f0e43b91cae8e71ed",
|
||||
"url6": "https://preview.redd.it/snoovatar/avatars/b1d652c1-a856-4147-8470-4a5ae42d67df-headshot.png?width=64&height=64&crop=smart&auto=webp&s=ea14770c59823462e7fc8ce7cd5063b02ae7e270",
|
||||
"url7": "https://preview.redd.it/arc-agi-has-fallen-to-openais-new-model-o3-v0-yhxu4661p18e1.png?width=640&crop=smart&auto=webp&s=281bd992d1f62582767dccbc20d51c60af4e79cb",
|
||||
"url8": "https://preview.redd.it/arc-agi-has-fallen-to-openais-new-model-o3-v0-yhxu4661p18e1.png?width=640&crop=smart&auto=webp&s=281bd992d1f62582767dccbc20d51c60af4e79cb",
|
||||
"url9": "https://i.redd.it/yhxu4661p18e1.png",
|
||||
"url10": "https://www.redditstatic.com/avatars/defaults/v2/avatar_default_1.png",
|
||||
"url11": "https://v.redd.it/g52hgu66p28e1/HLSPlaylist.m3u8?f=hd%2CsubsAll%2ChlsSpecOrder&v=1&a=1737382988%2CZTRlNjM4OTExZWE3ODg0ZjA4Zjc1ODY0ZmQ2YTZiMTk2Mjc4YjRiZDcyMzY0OGVlZmUxY2Q4YTBmZmM2NGNmMw%3D%3D",
|
||||
"url12": "https://external-preview.redd.it/i-built-a-quick-app-that-lets-you-clone-your-voice-and-chat-v0-ZWZiMzVxNzZwMjhlMcGkEppnYcPAIiLzZoWL5S2N6MKWTw5IuP1xszL2McWb.png?width=640&crop=smart&format=pjpg&auto=webp&s=f34df45d8060e3831086a4f5279f14b6bfdce12d",
|
||||
"url13": "https://styles.redditmedia.com/t5_7hqomg/styles/communityIcon_bzj6d1z1oizc1.png",
|
||||
"url14": "https://styles.redditmedia.com/t5_3b9u5/styles/communityIcon_d49a7viby3db1.png",
|
||||
"url15": "https://styles.redditmedia.com/t5_7t8hvt/styles/communityIcon_n42r6yfh2ucd1.png",
|
||||
"url16": "https://external-preview.redd.it/X3dq7BwWSNeUHhYVAwg9EWZnzdW0rDaEwG8X76Th8PI.jpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170",
|
||||
"url17": "https://external-preview.redd.it/X3dq7BwWSNeUHhYVAwg9EWZnzdW0rDaEwG8X76Th8PI.jpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170",
|
||||
"url18": "https://www.reddit.com/r/artificial",
|
||||
"url19": "https://www.reddit.com/r/artificial/about/",
|
||||
"url20": "https://www.reddit.com/r/artificial/hot/",
|
||||
"url21": "https://www.reddit.com/r/artificial/new/",
|
||||
"url22": "https://www.reddit.com/r/artificial/top/",
|
||||
"url23": "https://www.reddit.com/r/artificial/rising/",
|
||||
"url24": "https://www.reddit.com/r/artificial/?feedViewType=cardView",
|
||||
"url25": "https://www.reddit.com/r/artificial/?feedViewType=compactView",
|
||||
"url26": "https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/",
|
||||
"url27": "https://www.reddit.com/user/F0urLeafCl0ver/",
|
||||
"url28": "https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/",
|
||||
"url29": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22News%22",
|
||||
"url30": "https://www.ft.com/content/c9f6067c-3faa-4e6a-bc0f-2ed7290a8476",
|
||||
"url31": "https://www.ft.com/content/c9f6067c-3faa-4e6a-bc0f-2ed7290a8476",
|
||||
"url32": "https://www.reddit.com/user/ANSYSInc/",
|
||||
"url33": "https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/",
|
||||
"url34": "https://www.reddit.com/user/MetaKnowing/",
|
||||
"url35": "https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/",
|
||||
"url36": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22News%22",
|
||||
"url37": "https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/",
|
||||
"url38": "https://www.reddit.com/user/I_Love_Yoga_Pants/",
|
||||
"url39": "https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/",
|
||||
"url40": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22Project%22",
|
||||
"url41": "https://www.reddit.com/best/communities/4/#t5_2qhfb/",
|
||||
"url42": "https://www.reddit.com/r/artificial/wiki/guidelines/selfpromo/",
|
||||
"url43": "https://www.reddit.com/wiki/automoderator/",
|
||||
"url44": "https://www.reddit.com/t/artificial_intelligence_and_machine_learning/",
|
||||
"url45": "https://fortune.com/ranking/ai-innovators/2024/",
|
||||
"url46": "https://time.com/collection/time100-ai-2024/",
|
||||
"url47": "https://www.forbes.com/lists/ai50/",
|
||||
"url48": "https://openai.com/news",
|
||||
"url49": "https://ai.meta.com/blog/?page=1",
|
||||
"url50": "https://blog.google/technology/ai/",
|
||||
"url51": "https://news.microsoft.com/source/topics/ai/",
|
||||
"url52": "https://research.ibm.com/artificial-intelligence",
|
||||
"url53": "https://aws.amazon.com/ai/",
|
||||
"url54": "https://www.apple.com/apple-intelligence/",
|
||||
"url55": "https://blogs.nvidia.com/blog/category/deep-learning/",
|
||||
"url56": "https://blog.character.ai/",
|
||||
"url57": "https://stability.ai/news",
|
||||
"url58": "https://www.anthropic.com/news",
|
||||
"url59": "https://mistral.ai/news/",
|
||||
"url60": "https://elevenlabs.io/blog/",
|
||||
"url61": "https://www.figure.ai/?ref=viden.ai",
|
||||
"url62": "https://huggingface.co/blog",
|
||||
"url63": "https://runwayml.com/blog/",
|
||||
"url64": "https://www.perplexity.ai/hub",
|
||||
"url65": "https://www.midjourney.com/home",
|
||||
"url66": "https://suno.com/blog/",
|
||||
"url67": "https://www.adobe.com/ai/overview.html",
|
||||
"url68": "https://www.reddit.com/r/artificial/wiki/index",
|
||||
"url69": "https://www.reddit.com/r/artificial/comments/120qr4r/psa_rule_2_will_be_enforced_selfpromotion_is_only/",
|
||||
"url70": "https://www.reddit.com/r/artificial/wiki/related-subreddits/",
|
||||
"url71": "https://www.reddit.com/r/ChatGPT",
|
||||
"url72": "https://www.reddit.com/r/OpenAI",
|
||||
"url73": "https://www.reddit.com/r/ClaudeAI",
|
||||
"url74": "https://www.redditinc.com/policies/user-agreement",
|
||||
"url75": "https://www.redditinc.com/policies/privacy-policy",
|
||||
"url76": "https://www.redditinc.com/policies/user-agreement",
|
||||
"url77": "https://www.redditinc.com/policies/privacy-policy",
|
||||
"url78": "https://www.redditinc.com/policies/user-agreement",
|
||||
"url79": "https://www.redditinc.com/policies/privacy-policy",
|
||||
"url80": "https://reddithelp.com/hc/sections/360008917491-Account-Security"
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
{
|
||||
"form_0": {
|
||||
"input_0": {
|
||||
"type": "email",
|
||||
"values": [
|
||||
"class=['newsletter__emailInput'] id=emailInput- value= placeholder=Email address"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Newest to Oldest": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"Newest to Oldest"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Load more stories": {
|
||||
"button": {
|
||||
"type": "button",
|
||||
"values": [
|
||||
"Load more stories"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
{
|
||||
"url0": "https://www.googletagmanager.com/ns.html?id=GTM-TRBQMN",
|
||||
"url1": "https://td.doubleclick.net/td/ga/rul?tid=G-CV8ZC5Z6LR&gacid=275767342.1734790979>m=45je4cc1v888391479z86948167za200zb6948167&dma=0&gcd=13l3l3l3l1l1&npa=0&pscdl=noapi&aip=1&fledge=1&frm=0&tag_exp=101925629~102067555~102067808~102081485~102198178&z=1871817166",
|
||||
"url2": "https://td.doubleclick.net/td/rul/940506728?random=1734790979232&cv=11&fst=1734790979232&fmt=3&bg=ffffff&guid=ON&async=1>m=45be4cc1v874868505z86948167za201zb6948167&gcd=13l3l3l3l1l1&dma=0&tag_exp=101925629~102067555~102067808~102081485~102198178&u_w=1280&u_h=720&url=https%3A%2F%2Fwww.technologyreview.com%2Ftopic%2Fartificial-intelligence%2F&label=MMkMCNSCuooYEOj8u8AD&hn=www.googleadservices.com&frm=0&tiba=Artificial%20intelligence%20%7C%20MIT%20Technology%20Review&value=0&bttype=purchase&npa=0&pscdl=noapi&auid=1495689877.1734790979&uaa=x64&uab=64&uafvl=HeadlessChrome%3B131.0.6778.33%7CChromium%3B131.0.6778.33%7CNot_A%2520Brand%3B24.0.0.0&uamb=0&uam=&uap=macOS&uapv=10_15_7&uaw=0&fledge=1&capi=1&ct_cookie_present=0",
|
||||
"url3": "about:blank",
|
||||
"url4": "https://www.technologyreview.com/all-topics"
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
|
||||
|
||||
|
||||
You need to enable JavaScript to view this site.
|
||||
|
||||
|
||||
|
||||
Skip to Content
|
||||
-html?id=GTM-TRBQMN[url0]
|
||||
error...
|
||||
Artificial intelligence
|
||||
The latest advances in the quest to build machines that can reason, learn, and act intelligently.
|
||||
All topics[url4]
|
||||
|
||||
|
||||
-1734790979>m=45je4cc1v888391479z86948167za200zb6948167&dma=0&gcd=13l3l3l3l1l1&npa=0&pscdl=noapi&aip=1&fledge=1&frm=0&tag_exp=101925629~102067555~102067808~102081485~102198178&z=1871817166[url1]
|
||||
-0&uamb=0&uam=&uap=macOS&uapv=10_15_7&uaw=0&fledge=1&capi=1&ct_cookie_present=0[url2]
|
||||
-iframe[url3]
|
@ -0,0 +1,193 @@
|
||||
{
|
||||
"url0": "https://cdn.sstatic.net/Sites/stackoverflow/Img/icon-48.png?v=b7e36f88ff92",
|
||||
"url1": "https://i.sstatic.net/dfIpF.jpg?s=32",
|
||||
"url2": "https://www.gravatar.com/avatar/d83271043bce52d53f812d5c12668215?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url3": "https://lh3.googleusercontent.com/a/AATXAJwJL-h4FSaBLRk2G5slx7rjTn2KOECtPUXIDuf7=k-s32",
|
||||
"url4": "https://www.gravatar.com/avatar/58c6e50f95852f881c3f28a02d256c34?s=32&d=identicon&r=PG",
|
||||
"url5": "https://www.gravatar.com/avatar/9c36845fa8363d2ca571428faf5461a1?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url6": "https://www.gravatar.com/avatar/3ad042bf49e2affbba4e2d9e73585347?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url7": "https://www.gravatar.com/avatar/70f4971d1a66bd353644af3b71f5c1a9?s=32&d=identicon&r=PG",
|
||||
"url8": "https://lh3.googleusercontent.com/a-/AFdZucoFeCZzHtLnaZhaXJKqQw1RpkLmNZfqOu450qm3=k-s32",
|
||||
"url9": "https://www.gravatar.com/avatar/9297a48b95e32581b668ddf7a1420686?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url10": "https://www.gravatar.com/avatar/07e61e083e1cccecbc55719c722ceb0c?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url11": "https://www.gravatar.com/avatar/cc92400fdb37966a4d13984fb68abaa9?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url12": "https://lh3.googleusercontent.com/a/ACg8ocLiHuLJR6eM1FmJvinL0Yu-53PqG4IPFobdrTOXtKth=k-s32",
|
||||
"url13": "https://www.gravatar.com/avatar/094cc80259f00e6ed53eb79b07d8c00f?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url14": "https://www.gravatar.com/avatar/92add345a8b55df790f60db3b795c1ef?s=32&d=identicon&r=PG&f=y&so-version=2",
|
||||
"url15": "https://graph.facebook.com/1769633233288076/picture?type=large",
|
||||
"url16": "https://www.google.com/recaptcha/api2/aframe",
|
||||
"url17": "https://stackoverflow.com/legal/terms-of-service/public",
|
||||
"url18": "https://stackoverflow.com/legal/privacy-policy",
|
||||
"url19": "https://stackoverflow.com/users/login",
|
||||
"url20": "https://stackoverflow.com/collectives",
|
||||
"url21": "https://stackoverflow.co/teams/",
|
||||
"url22": "https://stackoverflow.co/labs/",
|
||||
"url23": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Newest",
|
||||
"url24": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Active",
|
||||
"url25": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Bounties",
|
||||
"url26": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Unanswered",
|
||||
"url27": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Bounties",
|
||||
"url28": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Unanswered",
|
||||
"url29": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Frequent",
|
||||
"url30": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Votes",
|
||||
"url31": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Trending",
|
||||
"url32": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Week",
|
||||
"url33": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Month",
|
||||
"url34": "https://stackoverflow.com/questions/79299405/pddl-check-for-conditionals",
|
||||
"url35": "https://stackoverflow.com/questions/tagged/agent",
|
||||
"url36": "https://stackoverflow.com/questions/tagged/pddl",
|
||||
"url37": "https://stackoverflow.com/users/12467912/mes",
|
||||
"url38": "https://stackoverflow.com/users/12467912/mes",
|
||||
"url39": "https://stackoverflow.com/questions/79299085/seeking-advice-on-implementing-an-ai-based-image-search-and-matching-app",
|
||||
"url40": "https://stackoverflow.com/questions/tagged/google-image-search",
|
||||
"url41": "https://stackoverflow.com/questions/tagged/chrome-app-developer-tool",
|
||||
"url42": "https://stackoverflow.com/users/28656769/giorgi-gavashelishvili",
|
||||
"url43": "https://stackoverflow.com/users/28656769/giorgi-gavashelishvili",
|
||||
"url44": "https://stackoverflow.com/questions/79299020/ownership-and-reusability-of-a-fine-tuned-model-trained-on-client-data-who-contr",
|
||||
"url45": "https://stackoverflow.com/questions/tagged/licensing",
|
||||
"url46": "https://stackoverflow.com/users/18249502/pras",
|
||||
"url47": "https://stackoverflow.com/users/18249502/pras",
|
||||
"url48": "https://stackoverflow.com/questions/79297501/proper-system-message-construction-in-chatbot",
|
||||
"url49": "https://stackoverflow.com/collectives/azure",
|
||||
"url50": "https://stackoverflow.com/questions/tagged/chatbot",
|
||||
"url51": "https://stackoverflow.com/questions/tagged/azure-openai",
|
||||
"url52": "https://stackoverflow.com/questions/tagged/azure-ai",
|
||||
"url53": "https://stackoverflow.com/users/1960948/choopau",
|
||||
"url54": "https://stackoverflow.com/users/1960948/choopau",
|
||||
"url55": "https://stackoverflow.com/questions/79297363/autoscaling-resources-for-llm-model",
|
||||
"url56": "https://stackoverflow.com/questions/tagged/large-language-model",
|
||||
"url57": "https://stackoverflow.com/questions/tagged/llama",
|
||||
"url58": "https://stackoverflow.com/questions/tagged/vllm",
|
||||
"url59": "https://stackoverflow.com/users/7461410/umidjon-musaev",
|
||||
"url60": "https://stackoverflow.com/users/7461410/umidjon-musaev",
|
||||
"url61": "https://stackoverflow.com/questions/79294509/asking-chatgpt-api-for-questions-and-then-for-reviewing-the-answers-i-give-him",
|
||||
"url62": "https://stackoverflow.com/questions/tagged/reactjs",
|
||||
"url63": "https://stackoverflow.com/questions/tagged/openai-api",
|
||||
"url64": "https://stackoverflow.com/questions/tagged/chatgpt-api",
|
||||
"url65": "https://stackoverflow.com/users/15061821/maor-cohen",
|
||||
"url66": "https://stackoverflow.com/users/15061821/maor-cohen",
|
||||
"url67": "https://stackoverflow.com/questions/79294470/consultion-about-a-recommendations-system-complexity-as-a-graduation-project",
|
||||
"url68": "https://stackoverflow.com/questions/tagged/machine-learning",
|
||||
"url69": "https://stackoverflow.com/questions/tagged/reinforcement-learning",
|
||||
"url70": "https://stackoverflow.com/questions/tagged/recommendation-engine",
|
||||
"url71": "https://stackoverflow.com/questions/tagged/collaborative-filtering",
|
||||
"url72": "https://stackoverflow.com/users/18011763/e-m-e-a",
|
||||
"url73": "https://stackoverflow.com/users/18011763/e-m-e-a",
|
||||
"url74": "https://stackoverflow.com/questions/79292575/using-axolotl-ai-oom-error-while-fine-tuning",
|
||||
"url75": "https://stackoverflow.com/questions/tagged/python",
|
||||
"url76": "https://stackoverflow.com/questions/tagged/out-of-memory",
|
||||
"url77": "https://stackoverflow.com/questions/tagged/quantization",
|
||||
"url78": "https://stackoverflow.com/questions/tagged/fine-tuning",
|
||||
"url79": "https://stackoverflow.com/users/28463121/akshat-08",
|
||||
"url80": "https://stackoverflow.com/users/28463121/akshat-08",
|
||||
"url81": "https://stackoverflow.com/questions/79291675/greater-validation-accuracy-during-training",
|
||||
"url82": "https://stackoverflow.com/questions/tagged/python",
|
||||
"url83": "https://stackoverflow.com/questions/tagged/machine-learning",
|
||||
"url84": "https://stackoverflow.com/questions/tagged/model",
|
||||
"url85": "https://stackoverflow.com/questions/tagged/training-data",
|
||||
"url86": "https://stackoverflow.com/users/28840032/pixel535",
|
||||
"url87": "https://stackoverflow.com/users/28840032/pixel535",
|
||||
"url88": "https://stackoverflow.com/questions/79290775/how-to-send-only-dynamic-part-of-a-prompt-in-openai-api-to-optimize-token-usage",
|
||||
"url89": "https://stackoverflow.com/questions/tagged/machine-learning",
|
||||
"url90": "https://stackoverflow.com/questions/tagged/openai-api",
|
||||
"url91": "https://stackoverflow.com/users/26414987/naman-kumar-muktha",
|
||||
"url92": "https://stackoverflow.com/users/26414987/naman-kumar-muktha",
|
||||
"url93": "https://stackoverflow.com/questions/79289217/send-and-get-data-from-azure-machine-learning-service",
|
||||
"url94": "https://stackoverflow.com/collectives/azure",
|
||||
"url95": "https://stackoverflow.com/questions/tagged/azure",
|
||||
"url96": "https://stackoverflow.com/questions/tagged/azure-functions",
|
||||
"url97": "https://stackoverflow.com/questions/tagged/azure-machine-learning-service",
|
||||
"url98": "https://stackoverflow.com/questions/tagged/azure-ai",
|
||||
"url99": "https://stackoverflow.com/users/28827681/hel4dev",
|
||||
"url100": "https://stackoverflow.com/users/28827681/hel4dev",
|
||||
"url101": "https://stackoverflow.com/questions/79288815/how-to-make-a-correct-prompt-for-gpt-4o-vision-api-to-find-letters-in-an-image",
|
||||
"url102": "https://stackoverflow.com/questions/tagged/openai-api",
|
||||
"url103": "https://stackoverflow.com/questions/tagged/gpt-3",
|
||||
"url104": "https://stackoverflow.com/questions/tagged/gpt-4",
|
||||
"url105": "https://stackoverflow.com/users/23553754/vincent-randall",
|
||||
"url106": "https://stackoverflow.com/users/23553754/vincent-randall",
|
||||
"url107": "https://stackoverflow.com/questions/79288025/how-can-i-test-the-responses-that-an-ai-gives-to-a-survey",
|
||||
"url108": "https://stackoverflow.com/questions/tagged/testing",
|
||||
"url109": "https://stackoverflow.com/questions/tagged/automated-tests",
|
||||
"url110": "https://stackoverflow.com/questions/tagged/survey",
|
||||
"url111": "https://stackoverflow.com/users/28822567/federico-castelli",
|
||||
"url112": "https://stackoverflow.com/users/28822567/federico-castelli",
|
||||
"url113": "https://stackoverflow.com/questions/79287870/how-do-i-specify-index-name-in-llama-index-milvusvectorstore",
|
||||
"url114": "https://stackoverflow.com/questions/tagged/llama",
|
||||
"url115": "https://stackoverflow.com/questions/tagged/llama-index",
|
||||
"url116": "https://stackoverflow.com/questions/tagged/vector-database",
|
||||
"url117": "https://stackoverflow.com/questions/tagged/milvus",
|
||||
"url118": "https://stackoverflow.com/users/15822536/legacy",
|
||||
"url119": "https://stackoverflow.com/users/15822536/legacy",
|
||||
"url120": "https://stackoverflow.com/questions/79287858/which-are-the-most-effective-topic-modelling-algorithm-for-a-very-random-text-co",
|
||||
"url121": "https://stackoverflow.com/collectives/nlp",
|
||||
"url122": "https://stackoverflow.com/questions/tagged/machine-learning",
|
||||
"url123": "https://stackoverflow.com/questions/tagged/nlp",
|
||||
"url124": "https://stackoverflow.com/questions/tagged/bert-language-model",
|
||||
"url125": "https://stackoverflow.com/users/7048096/tanay-vekariya",
|
||||
"url126": "https://stackoverflow.com/users/7048096/tanay-vekariya",
|
||||
"url127": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=15",
|
||||
"url128": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=30",
|
||||
"url129": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=50",
|
||||
"url130": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=2&pagesize=15",
|
||||
"url131": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=3&pagesize=15",
|
||||
"url132": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=4&pagesize=15",
|
||||
"url133": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=5&pagesize=15",
|
||||
"url134": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=597&pagesize=15",
|
||||
"url135": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=2&pagesize=15",
|
||||
"url136": "https://stackoverflow.blog/2024/12/19/developers-hate-documentation-ai-generated-toil-work/?cb=1",
|
||||
"url137": "https://stackoverflow.blog/2024/12/20/this-developer-tool-is-40-years-old-can-it-be-improved/?cb=1",
|
||||
"url138": "https://meta.stackexchange.com/questions/404724/the-december-2024-community-asks-sprint-has-been-moved-to-march-2025-and-length?cb=1",
|
||||
"url139": "https://meta.stackexchange.com/questions/404909/stack-overflow-jobs-is-expanding-to-more-countries?cb=1",
|
||||
"url140": "https://stackoverflow.com/questions/tagged/artificial-intelligence+python",
|
||||
"url141": "https://stackoverflow.com/questions/tagged/artificial-intelligence+machine-learning",
|
||||
"url142": "https://stackoverflow.com/questions/tagged/artificial-intelligence+neural-network",
|
||||
"url143": "https://stackoverflow.com/questions/tagged/artificial-intelligence+algorithm",
|
||||
"url144": "https://stackoverflow.com/questions/tagged/artificial-intelligence+tensorflow",
|
||||
"url145": "https://stackoverflow.com/questions/tagged/artificial-intelligence+deep-learning",
|
||||
"url146": "https://stackoverflow.com/questions/tagged/artificial-intelligence+java",
|
||||
"url147": "https://stackoverflow.com/questions/tagged/artificial-intelligence+nlp",
|
||||
"url148": "https://stackoverflow.com/questions/tagged/artificial-intelligence+c%23",
|
||||
"url149": "https://stackoverflow.com/questions/tagged/artificial-intelligence+keras",
|
||||
"url150": "https://stackoverflow.com/questions/tagged/artificial-intelligence+pytorch",
|
||||
"url151": "https://stackoverflow.com/questions/tagged/artificial-intelligence+minimax",
|
||||
"url152": "https://stackoverflow.com/questions/tagged/artificial-intelligence+python-3.x",
|
||||
"url153": "https://stackoverflow.com/questions/tagged/artificial-intelligence+reinforcement-learning",
|
||||
"url154": "https://stackoverflow.com/questions/tagged/artificial-intelligence+computer-vision",
|
||||
"url155": "https://stackoverflow.com/questions/tagged/artificial-intelligence+conv-neural-network",
|
||||
"url156": "https://stackoverflow.com/questions/tagged/artificial-intelligence+search",
|
||||
"url157": "https://stackoverflow.com/questions/tagged/artificial-intelligence%20c%2b%2b",
|
||||
"url158": "https://stackoverflow.com/questions/tagged/artificial-intelligence+javascript",
|
||||
"url159": "https://stackoverflow.com/questions/tagged/artificial-intelligence+chatbot",
|
||||
"url160": "https://stackoverflow.com/questions/tagged/artificial-intelligence+genetic-algorithm",
|
||||
"url161": "https://stackoverflow.com/questions/tagged/artificial-intelligence+unity-game-engine",
|
||||
"url162": "https://stackoverflow.com/questions/tagged/artificial-intelligence+a-star",
|
||||
"url163": "https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model",
|
||||
"url164": "https://stackoverflow.com/questions/tagged/artificial-intelligence+heuristics",
|
||||
"url165": "https://stackexchange.com/questions?tab=hot",
|
||||
"url166": "https://math.stackexchange.com/questions/5013601/factorization-of-maps-between-locally-compact-hausdorff-space",
|
||||
"url167": "https://hermeneutics.stackexchange.com/questions/99950/why-is-jesus-called-prince-of-peace-and-not-king-of-peace-considering-he-was-als",
|
||||
"url168": "https://space.stackexchange.com/questions/67545/can-a-ship-like-starship-roll-during-re-entry",
|
||||
"url169": "https://gis.stackexchange.com/questions/488946/can-not-load-shapefiles-in-qgis-3-34-13-prizren-using-macbook-pro",
|
||||
"url170": "https://unix.stackexchange.com/questions/788436/optimize-rsync-when-large-files-move-around-on-the-source",
|
||||
"url171": "https://cs.stackexchange.com/questions/170741/a-sat-question-about-sat-property",
|
||||
"url172": "https://buddhism.stackexchange.com/questions/51696/noisy-environment-while-meditating",
|
||||
"url173": "https://bricks.stackexchange.com/questions/18933/help-identify-this-1980s-non-lego-non-duplo-but-larger-than-average-brick",
|
||||
"url174": "https://law.stackexchange.com/questions/106536/is-the-jury-informed-when-the-person-giving-testimony-has-taken-a-plea-deal-in-e",
|
||||
"url175": "https://diy.stackexchange.com/questions/311863/grounding-isolated-electrical-circuit-from-a-floating-source-ev-v2l",
|
||||
"url176": "https://law.stackexchange.com/questions/106488/why-is-it-considered-terrorism-to-murder-a-ceo",
|
||||
"url177": "https://mathematica.stackexchange.com/questions/309576/is-it-possible-to-symbolically-solve-this-polynomial-system-of-equations-and-ine",
|
||||
"url178": "https://mathoverflow.net/questions/484508/suspension-spectrum-functor",
|
||||
"url179": "https://tex.stackexchange.com/questions/733307/best-practice-how-to-correctly-size-the-delimiters-fences-of-the-following-exam",
|
||||
"url180": "https://security.stackexchange.com/questions/279921/best-practices-for-managing-open-source-vulnerabilities-in-enterprise-deployment",
|
||||
"url181": "https://politics.stackexchange.com/questions/90116/new-york-2025-mayoral-election-any-primaries",
|
||||
"url182": "https://aviation.stackexchange.com/questions/107524/what-abbreviation-for-knots-do-pilots-in-non-english-speaking-countries-use",
|
||||
"url183": "https://judaism.stackexchange.com/questions/146564/why-does-each-page-of-talmud-end-with-the-first-word-of-the-next-page",
|
||||
"url184": "https://astronomy.stackexchange.com/questions/59115/is-the-atmosphere-of-a-planet-considered-an-integral-part-of-the-planet",
|
||||
"url185": "https://german.stackexchange.com/questions/78490/heute-nacht-tonight-or-last-night",
|
||||
"url186": "https://mathematica.stackexchange.com/questions/309551/concatenating-column-vectors-in-a-loop",
|
||||
"url187": "https://codereview.stackexchange.com/questions/294774/single-producer-single-consumer-queue",
|
||||
"url188": "https://electronics.stackexchange.com/questions/733841/quartz-crystals-is-it-load-capacitance-or-loading-capacitance",
|
||||
"url189": "https://blender.stackexchange.com/questions/328709/grease-pencil-3-and-python-get-set-the-active-layer",
|
||||
"url190": "https://stackoverflow.com/feeds/tag?tagnames=artificial-intelligence&sort=newest"
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
content_judge: 14856
|
||||
special_url_count: 189
|
||||
arcile_or_list_judge: 0.012722132471728594
|
||||
************
|
||||
|
||||
raw materials: 9c76f8
|
||||
|
||||
content_judge: 3447
|
||||
special_url_count: 279
|
||||
arcile_or_list_judge: 0.08093994778067885
|
||||
************
|
||||
|
||||
raw materials: e8c97c
|
||||
|
||||
content_judge: 5777
|
||||
special_url_count: 73
|
||||
arcile_or_list_judge: 0.012636316427211355
|
||||
************
|
||||
|
||||
raw materials: 29229b
|
||||
|
||||
content_judge: 505
|
||||
special_url_count: 5
|
||||
arcile_or_list_judge: 0.009900990099009901
|
||||
************
|
||||
|
||||
raw materials: 3958ab
|
||||
|
@ -0,0 +1,321 @@
|
||||
{
|
||||
"url0": "https://img.36krcdn.com/hsossms/20241221/v2_40c28bcceafc4905b8612d6dce7a6a2a@000000_oswg116731oswg1280oswg545_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
|
||||
"url1": "https://img.36krcdn.com/hsossms/20241221/v2_59c9cefddf0a4e118dc4b4399cc0ad2a@5654145_oswg53447oswg1053oswg495_img_jpg?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
|
||||
"url2": "https://img.36krcdn.com/hsossms/20241221/v2_db5c77303254452c89beb1a781e7e4d6@000000_oswg37843oswg940oswg399_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
|
||||
"url3": "https://img.36krcdn.com/hsossms/20241221/v2_9a6d858952a544bf8dd7d5400c5288eb@000000_oswg156992oswg1536oswg722_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
|
||||
"url4": "https://img.36krcdn.com/hsossms/20241221/v2_1c681a2060ce472d89c14d99b66431a8@000000_oswg167885oswg1536oswg722_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
|
||||
"url5": "https://img.36krcdn.com/hsossms/20241221/v2_1f897d4ae5ca4eaa84fa137d44658b1d@5595930_oswg534192oswg1053oswg495_img_png?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
|
||||
"url6": "https://img.36krcdn.com/hsossms/20241220/v2_c722a7cb32e640d59652937625b4db26@000000_oswg2500800oswg1792oswg1024_img_png?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
|
||||
"url7": "https://img.36krcdn.com/hsossms/20241221/v2_7c85fa6cf15244c7b01989df9e9a2851@000000_oswg56173oswg1080oswg460_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center",
|
||||
"url8": "https://img.36krcdn.com/hsossms/20241221/v2_158e665fd5304c08972f43bf8ad0f0a0@1200352198_oswg626424oswg1053oswg495_img_png?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center/format,webp",
|
||||
"url9": "https://img.36krcdn.com/hsossms/20240409/v2_f6df766206e14338b495758625b5a03f@000000_oswg63841oswg750oswg750_img_jpg?x-oss-process=image/format,webp",
|
||||
"url10": "https://static.36krcdn.com/36kr-web/static/code_production.72d61993.png",
|
||||
"url11": "https://static.36krcdn.com/36kr-web/static/code_production.72d61993.png",
|
||||
"url12": "https://static.36krcdn.com/36kr-web/static/kr.ad0c1158.jpg",
|
||||
"url13": "https://static.36krcdn.com/36kr-web/static/jingzhun.9a251862.jpg",
|
||||
"url14": "https://static.36krcdn.com/36kr-web/static/krSpace.7efbe7d3.jpg",
|
||||
"url15": "https://36kr.com/usercenter/basicinfo",
|
||||
"url16": "https://36kr.com/usercenter/account-password",
|
||||
"url17": "https://36kr.com/usercenter/follow",
|
||||
"url18": "https://36kr.com/usercenter/favorite",
|
||||
"url19": "https://36kr.com/seek-report-new?tabKey=2",
|
||||
"url20": "https://img.36krcdn.com/hsossms/20230605/v2_384be8e4c1e942a28cf13a2e427fe211@18900718_oswg78404oswg320oswg320_img_png",
|
||||
"url21": "https://img.36krcdn.com/hsossms/20230605/v2_636063907bdc44389b46e7db9c761a38@18900718_oswg62424oswg320oswg320_img_png",
|
||||
"url22": "https://img.36krcdn.com/hsossms/20230210/v2_38d1cdabc8404b00806de58cbedb3b7b_oswg27031oswg320oswg320_img_png",
|
||||
"url23": "https://img.36krcdn.com/hsossms/20230605/v2_da74c43ba887426f8fbccaede691b844@18900718_oswg76573oswg320oswg320_img_png",
|
||||
"url24": "https://img.36krcdn.com/hsossms/20230209/v2_8c2233c88a854c6496ff4f7842a9f9dd_oswg17629oswg320oswg320_img_png",
|
||||
"url25": "https://img.36krcdn.com/hsossms/20230605/v2_632f36f1c5904a539a1e57efe4497e3a@18900718_oswg63630oswg320oswg320_img_png",
|
||||
"url26": "http://letschuhai.com",
|
||||
"url27": "https://img.36krcdn.com/hsossms/20230605/v2_89fa42090fae495ca5e45ba921ee42ff@18900718_oswg65306oswg320oswg320_img_png",
|
||||
"url28": "https://img.36krcdn.com/hsossms/20231204/v2_3b8447ffdda24a38a30fd839fd934baa@000000_oswg40121oswg430oswg430_img_jpeg",
|
||||
"url29": "https://img.36krcdn.com/hsossms/20230605/v2_c4720503500642d294b5be04064ef870@18900718_oswg58529oswg320oswg320_img_png",
|
||||
"url30": "https://img.36krcdn.com/hsossms/20230209/v2_d6d3f8b57fa04507915c48adf0f9620d_oswg16586oswg320oswg320_img_png",
|
||||
"url31": "https://img.36krcdn.com/hsossms/20230605/v2_efc94b0cce7043dbac883c1dfe00c810@18900718_oswg57046oswg320oswg320_img_png",
|
||||
"url32": "https://img.36krcdn.com/hsossms/20230209/v2_9eb02027be264174b61b9d49c391ca75_oswg15571oswg320oswg320_img_png",
|
||||
"url33": "https://img.36krcdn.com/hsossms/20230605/v2_86f220b69e164751946d583b5472c857@18900718_oswg97988oswg320oswg320_img_png",
|
||||
"url34": "https://img.36krcdn.com/hsossms/20230209/v2_0c6a697748b54beea356d6e1f1fcec5f_oswg17066oswg320oswg320_img_png",
|
||||
"url35": "https://img.36krcdn.com/hsossms/20230209/v2_2f845ed16244458d8887a5526c63c6d6_oswg17346oswg320oswg320_img_png",
|
||||
"url36": "https://q.36kr.com",
|
||||
"url37": "https://www.36dianping.com/",
|
||||
"url38": "https://36kr.com/academe",
|
||||
"url39": "https://innovation.36kr.com",
|
||||
"url40": "https://www.36kr.com/p/2492318105786505",
|
||||
"url41": "https://36kr.com/policy",
|
||||
"url42": "https://topics.36kr.com/topic/1645523444931974",
|
||||
"url43": "https://36kr.com/LPlan",
|
||||
"url44": "https://36kr.com/VClub",
|
||||
"url45": "https://36kr.com/organization/",
|
||||
"url46": "https://36kr.com/topics/1620276089894403",
|
||||
"url47": "https://pitchhub.36kr.com/audit-investor",
|
||||
"url48": "https://36kr.com/seek-report-new",
|
||||
"url49": "https://img.36krcdn.com/hsossms/20230209/v2_95565530d4d94dc4ad904f3131c7b690_oswg23055oswg320oswg320_img_png",
|
||||
"url50": "https://topics.36kr.com/topic/1961250130199045",
|
||||
"url51": "https://36kr.com/project-form/settled",
|
||||
"url52": "https://36kr.com/topics/799051634713857",
|
||||
"url53": "http://www.bjjubao.org.cn/node_1606.html",
|
||||
"url54": "ttps://36kr.com/topics/799051634713857",
|
||||
"url55": "https://36kr.com/",
|
||||
"url56": "https://36kr.com/",
|
||||
"url57": "https://36kr.com/newsflashes/",
|
||||
"url58": "https://36kr.com/information/web_news/",
|
||||
"url59": "https://36kr.com/information/web_recommend/",
|
||||
"url60": "https://36kr.com/information/ccs/",
|
||||
"url61": "https://36kr.com/information/AI/",
|
||||
"url62": "https://36kr.com/information/aireport/",
|
||||
"url63": "https://36kr.com/local/zhejiang",
|
||||
"url64": "https://36kr.com/information/web_news/latest/",
|
||||
"url65": "https://36kr.com/information/contact/",
|
||||
"url66": "https://36kr.com/information/travel/",
|
||||
"url67": "https://36kr.com/information/technology/",
|
||||
"url68": "https://36kr.com/information/shuzihua/",
|
||||
"url69": "https://36kr.com/live/channel",
|
||||
"url70": "https://36kr.com/video/",
|
||||
"url71": "https://36kr.com/topics/",
|
||||
"url72": "https://36kr.com/activity",
|
||||
"url73": "https://36kr.com/local/guangdong",
|
||||
"url74": "https://36kr.com/local/jiangsu",
|
||||
"url75": "https://36kr.com/local/sichuan",
|
||||
"url76": "https://36kr.com/local/henan",
|
||||
"url77": "https://36kr.com/local/hubei",
|
||||
"url78": "https://36kr.com/local/anhui",
|
||||
"url79": "https://36kr.com/local/hainan",
|
||||
"url80": "https://36kr.com/local/zhejiang",
|
||||
"url81": "https://36kr.com/local/xian",
|
||||
"url82": "https://36kr.com/local/chongqing",
|
||||
"url83": "https://36kr.com/local/qingdao",
|
||||
"url84": "https://36kr.com/local/hunan",
|
||||
"url85": "https://36kr.com/local/guizhou",
|
||||
"url86": "https://36kr.com/seek-report-new?t=1734790984602",
|
||||
"url87": "https://36kr.com/station-business",
|
||||
"url88": "https://36kr.com/information/web_news/latest/",
|
||||
"url89": "https://36kr.com/information/web_recommend/",
|
||||
"url90": "https://36kr.com/information/contact/",
|
||||
"url91": "https://36kr.com/information/ccs/",
|
||||
"url92": "https://36kr.com/information/travel/",
|
||||
"url93": "https://36kr.com/information/AI/",
|
||||
"url94": "https://36kr.com/information/technology/",
|
||||
"url95": "https://36kr.com/information/aireport/",
|
||||
"url96": "https://36kr.com/information/shuzihua/",
|
||||
"url97": "https://36kr.com/information/innovate/",
|
||||
"url98": "https://36kr.com/information/enterpriseservice/",
|
||||
"url99": "https://36kr.com/information/happy_life/",
|
||||
"url100": "https://36kr.com/information/real_estate/",
|
||||
"url101": "https://36kr.com/information/web_zhichang/",
|
||||
"url102": "https://36kr.com/information/qiyehao/",
|
||||
"url103": "https://36kr.com/information/sensation/",
|
||||
"url104": "https://36kr.com/information/other/",
|
||||
"url105": "https://36kr.com/information/web_recommend",
|
||||
"url106": "https://36kr.com/p/3088646341179523",
|
||||
"url107": "https://36kr.com/p/3088646341179523",
|
||||
"url108": "https://36kr.com/p/3088646341179523",
|
||||
"url109": "https://36kr.com/motif/887340957231622",
|
||||
"url110": "https://36kr.com/user/5327149",
|
||||
"url111": "https://36kr.com/information/web_recommend",
|
||||
"url112": "https://36kr.com/p/3088381180835968",
|
||||
"url113": "https://36kr.com/p/3088381180835968",
|
||||
"url114": "https://36kr.com/p/3088381180835968",
|
||||
"url115": "https://36kr.com/motif/327689076737",
|
||||
"url116": "https://36kr.com/user/5654145",
|
||||
"url117": "https://36kr.com/information/technology",
|
||||
"url118": "https://36kr.com/p/3088295581481346",
|
||||
"url119": "https://36kr.com/p/3088295581481346",
|
||||
"url120": "https://36kr.com/p/3088295581481346",
|
||||
"url121": "https://36kr.com/motif/327686176769",
|
||||
"url122": "https://36kr.com/user/13334819",
|
||||
"url123": "https://36kr.com/information/happy_life",
|
||||
"url124": "https://36kr.com/p/3088308264761731",
|
||||
"url125": "https://36kr.com/p/3088308264761731",
|
||||
"url126": "https://36kr.com/p/3088308264761731",
|
||||
"url127": "https://36kr.com/motif/1654014377589128",
|
||||
"url128": "https://36kr.com/user/375349",
|
||||
"url129": "https://36kr.com/information/technology",
|
||||
"url130": "https://36kr.com/p/3088295368030594",
|
||||
"url131": "https://36kr.com/p/3088295368030594",
|
||||
"url132": "https://36kr.com/p/3088295368030594",
|
||||
"url133": "https://36kr.com/motif/1654014377589128",
|
||||
"url134": "https://36kr.com/user/10623839",
|
||||
"url135": "https://36kr.com/information/web_recommend",
|
||||
"url136": "https://36kr.com/p/3087940258265473",
|
||||
"url137": "https://36kr.com/p/3087940258265473",
|
||||
"url138": "https://36kr.com/p/3087940258265473",
|
||||
"url139": "https://36kr.com/motif/327686029313",
|
||||
"url140": "https://36kr.com/user/1613224138",
|
||||
"url141": "https://36kr.com/information/web_recommend",
|
||||
"url142": "https://36kr.com/p/3087303746140289",
|
||||
"url143": "https://36kr.com/p/3087303746140289",
|
||||
"url144": "https://36kr.com/p/3087303746140289",
|
||||
"url145": "https://36kr.com/motif/327688486913",
|
||||
"url146": "https://36kr.com/user/1133528739",
|
||||
"url147": "https://36kr.com/information/technology",
|
||||
"url148": "https://36kr.com/p/3087654394362243",
|
||||
"url149": "https://36kr.com/p/3087654394362243",
|
||||
"url150": "https://36kr.com/p/3087654394362243",
|
||||
"url151": "https://36kr.com/motif/327686782977",
|
||||
"url152": "https://36kr.com/user/214166",
|
||||
"url153": "https://36kr.com/information/technology",
|
||||
"url154": "https://36kr.com/p/3088086092839298",
|
||||
"url155": "https://36kr.com/p/3088086092839298",
|
||||
"url156": "https://36kr.com/p/3088086092839298",
|
||||
"url157": "https://36kr.com/motif/327686782977",
|
||||
"url158": "https://36kr.com/user/16637033",
|
||||
"url159": "https://36kr.com/information/web_recommend",
|
||||
"url160": "https://36kr.com/p/3088051331496065",
|
||||
"url161": "https://36kr.com/p/3088051331496065",
|
||||
"url162": "https://36kr.com/p/3088051331496065",
|
||||
"url163": "https://36kr.com/motif/887340009662976",
|
||||
"url164": "https://36kr.com/user/5363153",
|
||||
"url165": "https://36kr.com/information/technology",
|
||||
"url166": "https://36kr.com/p/3088122103117959",
|
||||
"url167": "https://36kr.com/p/3088122103117959",
|
||||
"url168": "https://36kr.com/p/3088122103117959",
|
||||
"url169": "https://36kr.com/motif/327686782977",
|
||||
"url170": "https://36kr.com/user/375349",
|
||||
"url171": "https://36kr.com/information/happy_life",
|
||||
"url172": "https://36kr.com/p/3088035080681605",
|
||||
"url173": "https://36kr.com/p/3088035080681605",
|
||||
"url174": "https://36kr.com/p/3088035080681605",
|
||||
"url175": "https://36kr.com/motif/327687553025",
|
||||
"url176": "https://36kr.com/user/5324324",
|
||||
"url177": "https://36kr.com/information/web_recommend",
|
||||
"url178": "https://36kr.com/p/3087990370580616",
|
||||
"url179": "https://36kr.com/p/3087990370580616",
|
||||
"url180": "https://36kr.com/p/3087990370580616",
|
||||
"url181": "https://36kr.com/motif/327685832705",
|
||||
"url182": "https://36kr.com/user/638700851",
|
||||
"url183": "https://36kr.com/information/technology",
|
||||
"url184": "https://36kr.com/p/3088107741870215",
|
||||
"url185": "https://36kr.com/p/3088107741870215",
|
||||
"url186": "https://36kr.com/p/3088107741870215",
|
||||
"url187": "https://36kr.com/motif/327686782977",
|
||||
"url188": "https://36kr.com/user/375349",
|
||||
"url189": "https://36kr.com/information/technology",
|
||||
"url190": "https://36kr.com/p/3087954405325193",
|
||||
"url191": "https://36kr.com/p/3087954405325193",
|
||||
"url192": "https://36kr.com/p/3087954405325193",
|
||||
"url193": "https://36kr.com/motif/327686782977",
|
||||
"url194": "https://36kr.com/user/175367",
|
||||
"url195": "https://36kr.com/information/web_recommend",
|
||||
"url196": "https://36kr.com/p/3087949073086855",
|
||||
"url197": "https://36kr.com/p/3087949073086855",
|
||||
"url198": "https://36kr.com/p/3087949073086855",
|
||||
"url199": "https://36kr.com/motif/327685832705",
|
||||
"url200": "https://36kr.com/user/1080897699",
|
||||
"url201": "https://36kr.com/information/web_recommend",
|
||||
"url202": "https://36kr.com/p/3086765895022729",
|
||||
"url203": "https://36kr.com/p/3086765895022729",
|
||||
"url204": "https://36kr.com/p/3086765895022729",
|
||||
"url205": "https://36kr.com/motif/327687405569",
|
||||
"url206": "https://36kr.com/user/11918142",
|
||||
"url207": "https://36kr.com/information/travel",
|
||||
"url208": "https://36kr.com/p/3087906699311492",
|
||||
"url209": "https://36kr.com/p/3087906699311492",
|
||||
"url210": "https://36kr.com/p/3087906699311492",
|
||||
"url211": "https://36kr.com/motif/327687127041",
|
||||
"url212": "https://36kr.com/user/5786567",
|
||||
"url213": "https://36kr.com/information/travel",
|
||||
"url214": "https://36kr.com/p/3087890137233544",
|
||||
"url215": "https://36kr.com/p/3087890137233544",
|
||||
"url216": "https://36kr.com/p/3087890137233544",
|
||||
"url217": "https://36kr.com/motif/327685996545",
|
||||
"url218": "https://36kr.com/user/5507103",
|
||||
"url219": "https://36kr.com/information/contact",
|
||||
"url220": "https://36kr.com/p/3087868278749316",
|
||||
"url221": "https://36kr.com/p/3087868278749316",
|
||||
"url222": "https://36kr.com/p/3087868278749316",
|
||||
"url223": "https://36kr.com/motif/1846746003540870",
|
||||
"url224": "https://36kr.com/user/47157707",
|
||||
"url225": "https://36kr.com/information/technology",
|
||||
"url226": "https://36kr.com/p/3087594703943812",
|
||||
"url227": "https://36kr.com/p/3087594703943812",
|
||||
"url228": "https://36kr.com/p/3087594703943812",
|
||||
"url229": "https://36kr.com/motif/327686782977",
|
||||
"url230": "https://36kr.com/user/1852809498",
|
||||
"url231": "https://36kr.com/information/web_recommend",
|
||||
"url232": "https://36kr.com/p/3087382330062979",
|
||||
"url233": "https://36kr.com/p/3087382330062979",
|
||||
"url234": "https://36kr.com/p/3087382330062979",
|
||||
"url235": "https://36kr.com/motif/327685832705",
|
||||
"url236": "https://36kr.com/user/1288893084",
|
||||
"url237": "https://36kr.com/information/web_recommend",
|
||||
"url238": "https://36kr.com/motif/327687618561",
|
||||
"url239": "https://36kr.com/user/5034919",
|
||||
"url240": "https://36kr.com/information/web_recommend",
|
||||
"url241": "https://36kr.com/p/3087290228914563",
|
||||
"url242": "https://36kr.com/p/3087290228914563",
|
||||
"url243": "https://36kr.com/p/3087290228914563",
|
||||
"url244": "https://36kr.com/motif/327686029313",
|
||||
"url245": "https://36kr.com/user/1554725818",
|
||||
"url246": "https://36kr.com/information/web_recommend",
|
||||
"url247": "https://36kr.com/p/3087292469065863",
|
||||
"url248": "https://36kr.com/p/3087292469065863",
|
||||
"url249": "https://36kr.com/p/3087292469065863",
|
||||
"url250": "https://36kr.com/motif/327686782977",
|
||||
"url251": "https://36kr.com/user/5372076",
|
||||
"url252": "https://36kr.com/information/web_zhichang",
|
||||
"url253": "https://36kr.com/p/3087063959665031",
|
||||
"url254": "https://36kr.com/p/3087063959665031",
|
||||
"url255": "https://36kr.com/p/3087063959665031",
|
||||
"url256": "https://36kr.com/motif/1756302767423108",
|
||||
"url257": "https://36kr.com/user/10246630",
|
||||
"url258": "https://36kr.com/information/web_zhichang",
|
||||
"url259": "https://36kr.com/p/3087061837281667",
|
||||
"url260": "https://36kr.com/p/3087061837281667",
|
||||
"url261": "https://36kr.com/p/3087061837281667",
|
||||
"url262": "https://36kr.com/motif/1756302767423108",
|
||||
"url263": "https://36kr.com/user/10246630",
|
||||
"url264": "https://36kr.com/information/travel",
|
||||
"url265": "https://36kr.com/p/3087175585134728",
|
||||
"url266": "https://36kr.com/p/3087175585134728",
|
||||
"url267": "https://36kr.com/p/3087175585134728",
|
||||
"url268": "https://36kr.com/motif/327687127041",
|
||||
"url269": "https://36kr.com/user/5060931",
|
||||
"url270": "https://36kr.com/information/web_zhichang",
|
||||
"url271": "https://36kr.com/p/3087052296943753",
|
||||
"url272": "https://36kr.com/p/3087052296943753",
|
||||
"url273": "https://36kr.com/p/3087052296943753",
|
||||
"url274": "https://36kr.com/motif/1756302767423108",
|
||||
"url275": "https://36kr.com/user/10246630",
|
||||
"url276": "https://36kr.com/information/web_recommend",
|
||||
"url277": "https://36kr.com/p/3087158007168777",
|
||||
"url278": "https://36kr.com/p/3087158007168777",
|
||||
"url279": "https://36kr.com/p/3087158007168777",
|
||||
"url280": "https://36kr.com/motif/327686029313",
|
||||
"url281": "https://36kr.com/user/17104992",
|
||||
"url282": "https://36kr.com/user/6004667",
|
||||
"url283": "https://36kr.com/user/6004667",
|
||||
"url284": "https://36kr.com/enterprises-list",
|
||||
"url285": "https://q.36kr.com",
|
||||
"url286": "https://36kr.com/station-business",
|
||||
"url287": "https://36kr.com/seek-report-new",
|
||||
"url288": "http://ir.36kr.com",
|
||||
"url289": "https://36kr.com/pages/about",
|
||||
"url290": "https://zhaopin.36kr.com",
|
||||
"url291": "https://eu.36kr.com",
|
||||
"url292": "https://eu.36kr.com/zh",
|
||||
"url293": "https://eu.36kr.com/de",
|
||||
"url294": "https://www.aicpb.com",
|
||||
"url295": "https://36kr.com/refute-rumor-notice",
|
||||
"url296": "https://36kr.com/hot-list/catalog",
|
||||
"url297": "https://36kr.com/project",
|
||||
"url298": "https://36kr.com/tags",
|
||||
"url299": "https://36kr.com/nftags",
|
||||
"url300": "https://www.aliyun.com/",
|
||||
"url301": "https://www.volcengine.cn/",
|
||||
"url302": "https://www.getui.com/cn/index.html",
|
||||
"url303": "https://www.odaily.com",
|
||||
"url304": "https://www.jingdata.com",
|
||||
"url305": "https://www.krspace.cn",
|
||||
"url306": "https://www.futunn.com/",
|
||||
"url307": "https://www.36dianping.com/pk/",
|
||||
"url308": "http://www.woshipm.com",
|
||||
"url309": "https://www.36linkr.com",
|
||||
"url310": "https://36kr.com/",
|
||||
"url311": "https://www.aliyun.com/",
|
||||
"url312": "https://www.12377.cn",
|
||||
"url313": "https://beian.miit.gov.cn/#/Integrated/index",
|
||||
"url314": "https://dxzhgl.miit.gov.cn/dxxzsp/xkz/xkzgl/resource/qiyesearch.jsp?num=%25E5%258C%2597%25E4%25BA%25AC%25E5%25A4%259A%25E6%25B0%25AA%25E4%25BF%25A1%25E6%2581%25AF%25E7%25A7%2591%25E6%258A%2580%25E6%259C%2589%25E9%2599%2590%25E5%2585%25AC%25E5%258F%25B8&type=xuke",
|
||||
"url315": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502036099",
|
||||
"url316": "https://weibo.com/wow36kr",
|
||||
"url317": "https://36kr.com/rss-center",
|
||||
"url318": "https://36kr.com/mform/1755983296602372"
|
||||
}
|
@ -0,0 +1,305 @@
|
||||
|
||||
|
||||
-[url15]
|
||||
账号设置[url16]
|
||||
我的关注[url17]
|
||||
我的收藏[url18]
|
||||
申请的报道[url19]
|
||||
退出登录
|
||||
登录
|
||||
|
||||
搜索
|
||||
1. 36氪Auto[url20]数字时氪[url21]未来消费[url22]智能涌现[url23]未来城市[url24]启动Power on[url25]36氪出海[url26]36氪研究院[url27]潮生TIDE[url28]36氪企服点评[url29]36氪财经[url30]职场bonus[url31]36碳[url32]后浪研究所[url33]暗涌Waves[url34]硬氪[url35]媒体品牌 2. 企业号[url36]企服点评[url37]36Kr研究院[url38]36Kr创新咨询[url39]企业服务 3. 核心服务[url40]城市之窗[url41]政府服务 4. 创投发布[url42]LP源计划[url43]VClub[url44]VClub投资机构库[url45]投资机构职位推介[url46]投资人认证[url47]投资人服务 5. 寻求报道[url48]36氪Pro[url49]创投氪堂[url50]企业入驻[url51]创业者服务 6. 创投平台
|
||||
|
||||
-[url52]
|
||||
-[url53]
|
||||
-[url54]
|
||||
-[url55]
|
||||
1. 首页[url56] 2. 快讯[url57] 3. 资讯[url58]推荐[url59]财经[url60]AI[url61]自助报道[url62]浙江[url63]最新[url64]创投[url65]汽车[url66]科技[url67]专精特新[url68] 4. 推荐[url59] 5. 财经[url60] 6. AI[url61] 7. 自助报道[url62] 8. 浙江[url63] 9. 最新[url64] 10. 创投[url65] 11. 汽车[url66] 12. 科技[url67] 13. 专精特新[url68] 14. 直播[url69] 15. 视频[url70] 16. 专题[url71] 17. 活动[url72] 18. 广东[url73] 19. 江苏[url74] 20. 四川[url75] 21. 河南[url76] 22. 湖北[url77] 23. 安徽[url78] 24. 海南[url79] 25. 浙江[url80] 26. 陕西[url81] 27. 重庆[url82] 28. 山东[url83] 29. 湖南[url84] 30. 贵州[url85]
|
||||
|
||||
|
||||
搜索
|
||||
|
||||
寻求报道[url86]
|
||||
|
||||
我要入驻
|
||||
城市合作[url87]
|
||||
|
||||
|
||||
推荐[url105]
|
||||
-宁德时代的梦想,储存在电池银行img[url0][url106]
|
||||
宁德时代的梦想,储存在电池银行[url107]
|
||||
让电池成为“会生长的资产”。[url108]
|
||||
来自主题:新能源车[url109]|
|
||||
晓曦[url110]
|
||||
47分钟前
|
||||
推荐[url111]
|
||||
-7家消费公司拿到新钱;哈根达斯中国门店客流量下降;「男版lululemon」Vuori首推新春系列 |创投大视野img[url1][url112]
|
||||
7家消费公司拿到新钱;哈根达斯中国门店客流量下降;「男版lululemon」Vuori首推新春系列 |创投大视野[url113]
|
||||
离你最近的消费创投一线。[url114]
|
||||
来自主题:新商业观察[url115]|
|
||||
李小霞[url116]
|
||||
2小时前
|
||||
科技[url117]
|
||||
-第一批用上苹果AI的人,已经后悔了img[url2][url118]
|
||||
第一批用上苹果AI的人,已经后悔了[url119]
|
||||
这就翻车了?[url120]
|
||||
来自主题:王者苹果?[url121]|
|
||||
字母榜[url122]
|
||||
5小时前
|
||||
消费[url123]
|
||||
-中国最大金表商要IPO了img[url3][url124]
|
||||
中国最大金表商要IPO了[url125]
|
||||
10个黄金珠宝商,8个莆田人,7个北高人。[url126]
|
||||
来自主题:创投圈秘事[url127]|
|
||||
36氪的朋友们[url128]
|
||||
5小时前
|
||||
科技[url129]
|
||||
-婚纱女王,卖了img[url4][url130]
|
||||
婚纱女王,卖了[url131]
|
||||
婚纱女王,卖了[url132]
|
||||
来自主题:创投圈秘事[url133]|
|
||||
投资界[url134]
|
||||
5小时前
|
||||
推荐[url135]
|
||||
-2024内娱第一「癫公」,日入千万?img[url5][url136]
|
||||
2024内娱第一「癫公」,日入千万?[url137]
|
||||
向佐没疯,他赚疯了[url138]
|
||||
来自主题:文娱直播新动向[url139]|
|
||||
凤凰周刊[url140]
|
||||
8小时前
|
||||
推荐[url141]
|
||||
-阿里都搞不定的银泰,雅戈尔为何接手?img[url6][url142]
|
||||
阿里都搞不定的银泰,雅戈尔为何接手?[url143]
|
||||
回归主业是战略,投资大王的名号也不能丢。[url144]
|
||||
来自主题:这就是商业[url145]|
|
||||
伯虎财经[url146]
|
||||
9小时前
|
||||
科技[url147]
|
||||
-刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元img[url7][url148]
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url149]
|
||||
o3:突破 ARC-AGI 基准,博士级问题求解能力[url150]
|
||||
来自主题:人工智能·AI[url151]|
|
||||
机器之心[url152]
|
||||
9小时前
|
||||
科技[url153]
|
||||
-苹果没能做成的这个功能,成了国产厂商的新杀手锏img[url8][url154]
|
||||
苹果没能做成的这个功能,成了国产厂商的新杀手锏[url155]
|
||||
被大众遗忘的轻 App[url156]
|
||||
来自主题:人工智能·AI[url157]|
|
||||
爱范儿[url158]
|
||||
9小时前
|
||||
推荐[url159]
|
||||
-[url160]
|
||||
客户流失、竞争壁垒低,有赞的时代正在远去[url161]
|
||||
有赞难言轻松。[url162]
|
||||
来自主题:电商零售[url163]|
|
||||
DoNews[url164]
|
||||
9小时前
|
||||
科技[url165]
|
||||
-[url166]
|
||||
o3权威评测报告:AI能力实现关键跃升,但仍未达到AGI水平[url167]
|
||||
通过ARC-AGI的测试并不等于实现了通用人工智能。[url168]
|
||||
来自主题:人工智能·AI[url169]|
|
||||
36氪的朋友们[url170]
|
||||
9小时前
|
||||
消费[url171]
|
||||
-[url172]
|
||||
土耳其游戏:狂奔之后刹车,年轻人开始逃离[url173]
|
||||
游戏产业,曾是土耳其数字经济的一道曙光。[url174]
|
||||
来自主题:游戏圈大事件[url175]|
|
||||
霞光社[url176]
|
||||
9小时前
|
||||
推荐[url177]
|
||||
-[url178]
|
||||
身价30亿,LV母公司收购的顶级健身房,要垮了[url179]
|
||||
倒下的威尔仕。[url180]
|
||||
来自主题:关于消费的一切[url181]|
|
||||
融资中国[url182]
|
||||
9小时前
|
||||
科技[url183]
|
||||
-[url184]
|
||||
当你以为AI发展放缓时,OpenAI推出o3,向AGI迈出关键一步[url185]
|
||||
OpenAI在年底通过o3系列的卓越表现,重新杀回了铁王座。[url186]
|
||||
来自主题:人工智能·AI[url187]|
|
||||
36氪的朋友们[url188]
|
||||
9小时前
|
||||
科技[url189]
|
||||
-[url190]
|
||||
AI同时操控200个机器人,任务成功率超90%,半数故障依然「能打」[url191]
|
||||
在协作中学会如何优化自己的行为。[url192]
|
||||
来自主题:人工智能·AI[url193]|
|
||||
学术头条[url194]
|
||||
10小时前
|
||||
推荐[url195]
|
||||
-[url196]
|
||||
冻梨卖爆、搓澡巾被抢,“神秘东北力量”席卷饮品圈[url197]
|
||||
给饮品加点“东北味”更好卖?[url198]
|
||||
来自主题:关于消费的一切[url199]|
|
||||
咖门[url200]
|
||||
10小时前
|
||||
推荐[url201]
|
||||
-[url202]
|
||||
出海周刊125期|谁在越南挣到钱了?/紧随Keeta,美团小象超市和无人机业务也出海中东了[url203]
|
||||
全方位的全球化布局增加了企业运营的复杂度,但也正因如此,中国企业在国际市场能够建立起更具竞争力的业务模式。[url204]
|
||||
来自主题:出海是门大生意[url205]|
|
||||
36氪出海[url206]
|
||||
10小时前
|
||||
汽车[url207]
|
||||
-[url208]
|
||||
本田日产,警惕出现“失意者联盟”[url209]
|
||||
大家重点关心的,已不再是800万辆的销售规模,而是后续的运营效率和潜在风险。[url210]
|
||||
来自主题:汽车出行[url211]|
|
||||
汽车公社[url212]
|
||||
10小时前
|
||||
汽车[url213]
|
||||
-[url214]
|
||||
150亿造车新势力闪崩,9位创始人全部跑路,股价断崖下跌97%[url215]
|
||||
刚实现盈利就没钱了[url216]
|
||||
来自主题:新造车势力又搞事[url217]|
|
||||
智能车参考[url218]
|
||||
10小时前
|
||||
创投[url219]
|
||||
-[url220]
|
||||
药企借船,NewCo或许比我们想象的要难[url221]
|
||||
动脉网出品[url222]
|
||||
来自主题:专精特新-生物医药[url223]|
|
||||
动脉网[url224]
|
||||
10小时前
|
||||
科技[url225]
|
||||
-[url226]
|
||||
o3来了!编程跻身人类全球前200,破解陶哲轩说难的数学测试,北大校友任泓宇现身直播间[url227]
|
||||
“AGI重要里程碑”[url228]
|
||||
来自主题:人工智能·AI[url229]|
|
||||
量子位[url230]
|
||||
10小时前
|
||||
推荐[url231]
|
||||
-[url232]
|
||||
年入30亿+的毛绒玩具Build-A-Bear,如何走出低谷?[url233]
|
||||
“定义价值观”[url234]
|
||||
来自主题:关于消费的一切[url235]|
|
||||
三文娱[url236]
|
||||
10小时前
|
||||
推荐[url237]
|
||||
煌上煌收购展翠食品告吹,背后徐桂芬家族已跌出胡润百富榜
|
||||
煌上煌发展遇瓶颈。
|
||||
来自主题:商业人物追踪[url238]|
|
||||
雷达财经[url239]
|
||||
10小时前
|
||||
推荐[url240]
|
||||
-[url241]
|
||||
是时候给春节档松绑了[url242]
|
||||
春节档有些过激了[url243]
|
||||
来自主题:文娱直播新动向[url244]|
|
||||
犀牛娱乐[url245]
|
||||
12小时前
|
||||
推荐[url246]
|
||||
-[url247]
|
||||
AI+Emoji,终于打了一场胜仗?[url248]
|
||||
胜利,转瞬即逝。[url249]
|
||||
来自主题:人工智能·AI[url250]|
|
||||
白鲸出海[url251]
|
||||
12小时前
|
||||
职场[url252]
|
||||
-[url253]
|
||||
90后独生子女,把抑郁症父母送去精神科[url254]
|
||||
一件困难又要紧的事。[url255]
|
||||
来自主题:后浪研究所[url256]|
|
||||
后浪研究所[url257]
|
||||
12小时前
|
||||
职场[url258]
|
||||
-[url259]
|
||||
一个男性自学女性主义后,越来越「自闭」了[url260]
|
||||
“我就是普信男啊。”[url261]
|
||||
来自主题:后浪研究所[url262]|
|
||||
后浪研究所[url263]
|
||||
12小时前
|
||||
汽车[url264]
|
||||
-[url265]
|
||||
中国人打价格战,德国人先裁员[url266]
|
||||
消失的附加值[url267]
|
||||
来自主题:汽车出行[url268]|
|
||||
远川科技评论[url269]
|
||||
12小时前
|
||||
职场[url270]
|
||||
-[url271]
|
||||
「长安街英菲尼迪车祸案」14年,一个女人的丧失与重建[url272]
|
||||
接纳一切。[url273]
|
||||
来自主题:后浪研究所[url274]|
|
||||
后浪研究所[url275]
|
||||
12小时前
|
||||
推荐[url276]
|
||||
-[url277]
|
||||
长视频与短视频的2024[url278]
|
||||
长视频与短视频平台之间,也早已不再是你死我亡的战火硝烟,而是在发挥各自优势的同时向对方取径,携手满足观众不同层级、场景的精神需求。[url279]
|
||||
来自主题:文娱直播新动向[url280]|
|
||||
文娱价值官[url281]
|
||||
13小时前
|
||||
查看更多
|
||||
...正在加载
|
||||
没有更多了
|
||||
|
||||
推荐企业
|
||||
换一换
|
||||
-如视img[url9][url282]
|
||||
如视数字空间综合解决方案引领者[url283]
|
||||
查看更多企业[url284]
|
||||
-[url285]
|
||||
关于36氪
|
||||
城市合作[url286]
|
||||
寻求报道[url287]
|
||||
我要入驻
|
||||
投资者关系[url288]
|
||||
商务合作
|
||||
关于我们[url289]
|
||||
联系我们
|
||||
加入我们[url290]
|
||||
36氪欧洲站[url291]
|
||||
36氪欧洲站[url292]
|
||||
36氪欧洲站[url293]
|
||||
Ai产品日报[url294]
|
||||
网络谣言信息举报入口[url295]
|
||||
热门推荐
|
||||
热门资讯[url296]
|
||||
热门产品[url297]
|
||||
文章标签[url298]
|
||||
快讯标签[url299]
|
||||
合作伙伴
|
||||
1. -阿里云[url300] 2. -火山引擎[url301] 3. -高德 4. -个推[url302] 5. -星球日报[url303] 6. -鲸准[url304] 7. -氪空间[url305] 8. -富途牛牛[url306] 9. -企服点评[url307] 10. -人人都是产品经理[url308] 11. -领氪[url309]
|
||||
|
||||
36氪APP下载
|
||||
-png[url10]
|
||||
iOS & Android
|
||||
-36氪[url310]
|
||||
本站由
|
||||
阿里云[url311]提供计算与安全服务 违法和不良信息、未成年人保护举报电话:010-89650707 举报邮箱:jubao@36kr.com 网上有害信息举报[url312]
|
||||
© 2011~2024 北京多氪信息科技有限公司 |
|
||||
京ICP备12031756号-6[url313]
|
||||
|
||||
|
|
||||
|
||||
京ICP证150143号[url314]
|
||||
|
||||
|
|
||||
|
||||
京公网安备11010502036099号[url315]
|
||||
-[url316]
|
||||
-[url317]
|
||||
意见反馈[url318]
|
||||
-png[url11]
|
||||
36氪APP
|
||||
让一部分人先看到未来
|
||||
36氪
|
||||
鲸准
|
||||
氪空间
|
||||
-jpg[url12]
|
||||
推送和解读前沿、有料的科技创投资讯
|
||||
-jpg[url13]
|
||||
一级市场金融信息和系统服务提供商
|
||||
-jpg[url14]
|
||||
聚焦全球优秀创业者,项目融资率接近97%,领跑行业
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,620 @@
|
||||
focus statement:
|
||||
#大模型技术突破与创新
|
||||
解释:包括新算法与模型,新的研究成果
|
||||
#AI应用市场规模与增长预测
|
||||
解释:提供AI市场的最新统计数据、增长趋势和未来预测,帮助读者了解行业发展方向的信息
|
||||
#大模型落地行业应用趋势
|
||||
解释:分析大模型在各个行业(如医疗、金融、制造、教育)的应用现状和发展前景,展示AI在实际业务中的价值。
|
||||
#大模型企业应用案例
|
||||
解释:分享企业如何利用大模型提升效率、降低成本或创新产品的具体案例,展示AI的实际效益。
|
||||
#大模型创业故事
|
||||
解释:介绍大模型初创公司的发展历程、融资情况和成功经验,激励创业者和投资者。
|
||||
#好用的AI工具及其适用的范围,和同类型工具的对比
|
||||
|
||||
|
||||
raw materials: 9c76f8
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 3
|
||||
total results: 24
|
||||
total analysis time: 292.0451638698578
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
Ownership and Reusability of a Fine-Tuned Model Trained on Client Data—Who Controls It, and Can It Be Used for Other Clients? [closed][url44] https://stackoverflow.com/questions/79299020/ownership-and-reusability-of-a-fine-tuned-model-trained-on-client-data-who-contr
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/vllm
|
||||
1. python[url82] 2. machine-learning[url83] 3. model[url84] 4. artificial-intelligence 5. training-data[url85] https://stackoverflow.com/questions/tagged/model
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/llama
|
||||
large-language-model[url163] https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model
|
||||
Autoscaling resources for llm model [closed][url55] https://stackoverflow.com/questions/79297363/autoscaling-resources-for-llm-model
|
||||
Newest artificial-intelligence questions feed[url190] https://stackoverflow.com/feeds/tag?tagnames=artificial-intelligence&sort=newest
|
||||
Using Axolotl ai, OOM error while fine tuning [closed][url74] https://stackoverflow.com/questions/79292575/using-axolotl-ai-oom-error-while-fine-tuning
|
||||
How do i specify index_name in llama-index MilvusVectorStore[url113] https://stackoverflow.com/questions/79287870/how-do-i-specify-index-name-in-llama-index-milvusvectorstore
|
||||
How to Send Only Dynamic Part of a Prompt in OpenAI API to Optimize Token Usage?[url88] https://stackoverflow.com/questions/79290775/how-to-send-only-dynamic-part-of-a-prompt-in-openai-api-to-optimize-token-usage
|
||||
How can I test the responses that an AI gives to a survey [closed][url107] https://stackoverflow.com/questions/79288025/how-can-i-test-the-responses-that-an-ai-gives-to-a-survey
|
||||
1. python[url82] 2. machine-learning[url83] 3. model[url84] 4. artificial-intelligence 5. training-data[url85] https://stackoverflow.com/questions/tagged/python
|
||||
1. artificial-intelligence 2. agent[url35] 3. pddl[url36] https://stackoverflow.com/questions/tagged/agent
|
||||
Which are the most effective topic modelling algorithm for a very random text corpus? [closed][url120] https://stackoverflow.com/questions/79287858/which-are-the-most-effective-topic-modelling-algorithm-for-a-very-random-text-co
|
||||
1. python[url82] 2. machine-learning[url83] 3. model[url84] 4. artificial-intelligence 5. training-data[url85] https://stackoverflow.com/questions/tagged/machine-learning
|
||||
Seeking Advice on Implementing an AI-Based Image Search and Matching App [closed][url39] https://stackoverflow.com/questions/79299085/seeking-advice-on-implementing-an-ai-based-image-search-and-matching-app
|
||||
How to make a correct prompt for "gpt-4o" vision API to find letters in an image? [closed][url101] https://stackoverflow.com/questions/79288815/how-to-make-a-correct-prompt-for-gpt-4o-vision-api-to-find-letters-in-an-image
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/large-language-model
|
||||
I'm working on a python rag project. where I'm using milvus as vector database and using llama-index for setting up the project.[url113] https://stackoverflow.com/questions/79287870/how-do-i-specify-index-name-in-llama-index-milvusvectorstore
|
||||
1. artificial-intelligence 2. agent[url35] 3. pddl[url36] https://stackoverflow.com/questions/tagged/pddl
|
||||
PDDL check for conditionals[url34] https://stackoverflow.com/questions/79299405/pddl-check-for-conditionals
|
||||
1. python[url82] 2. machine-learning[url83] 3. model[url84] 4. artificial-intelligence 5. training-data[url85] https://stackoverflow.com/questions/tagged/training-data
|
||||
I am currently trying to use ChatGPT to expand the results of some survey-based research. My idea is to upload macroeconomic variables (such as the average spending power of the age group I am ...[url107] https://stackoverflow.com/questions/79288025/how-can-i-test-the-responses-that-an-ai-gives-to-a-survey
|
||||
Send and get data from azure machine learning service[url93] https://stackoverflow.com/questions/79289217/send-and-get-data-from-azure-machine-learning-service
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 13
|
||||
total analysis time: 43.71246790885925
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
computer-vision[url154] https://stackoverflow.com/questions/tagged/artificial-intelligence+computer-vision
|
||||
neural-network[url142] https://stackoverflow.com/questions/tagged/artificial-intelligence+neural-network
|
||||
large-language-model[url163] https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model
|
||||
Autoscaling resources for llm model [closed][url55] https://stackoverflow.com/questions/79297363/autoscaling-resources-for-llm-model
|
||||
pytorch[url150] https://stackoverflow.com/questions/tagged/artificial-intelligence+pytorch
|
||||
reinforcement-learning[url153] https://stackoverflow.com/questions/tagged/artificial-intelligence+reinforcement-learning
|
||||
keras[url149] https://stackoverflow.com/questions/tagged/artificial-intelligence+keras
|
||||
nlp[url147] https://stackoverflow.com/questions/tagged/artificial-intelligence+nlp
|
||||
conv-neural-network[url155] https://stackoverflow.com/questions/tagged/artificial-intelligence+conv-neural-network
|
||||
chatbot[url159] https://stackoverflow.com/questions/tagged/artificial-intelligence+chatbot
|
||||
tensorflow[url144] https://stackoverflow.com/questions/tagged/artificial-intelligence+tensorflow
|
||||
algorithm[url143] https://stackoverflow.com/questions/tagged/artificial-intelligence+algorithm
|
||||
deep-learning[url145] https://stackoverflow.com/questions/tagged/artificial-intelligence+deep-learning
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 13
|
||||
total results: 17
|
||||
total analysis time: 19.6178617477417
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/llama
|
||||
Ownership and Reusability of a Fine-Tuned Model Trained on Client Data—Who Controls It, and Can It Be Used for Other Clients? [closed][url44] https://stackoverflow.com/questions/79299020/ownership-and-reusability-of-a-fine-tuned-model-trained-on-client-data-who-contr
|
||||
large-language-model[url163] https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model
|
||||
1. machine-learning[url68] 2. artificial-intelligence 3. reinforcement-learning[url69] 4. recommendation-engine[url70] 5. collaborative-filtering[url71] https://stackoverflow.com/questions/tagged/reinforcement-learning
|
||||
https://www.kaggle.com/code/akshat08/axolotl[url75] https://stackoverflow.com/questions/tagged/python
|
||||
How can I test the responses that an AI gives to a survey [closed][url107] https://stackoverflow.com/questions/79288025/how-can-i-test-the-responses-that-an-ai-gives-to-a-survey
|
||||
1. reactjs[url62] 2. artificial-intelligence 3. openai-api[url63] 4. chatgpt-api[url64] https://stackoverflow.com/questions/tagged/openai-api
|
||||
Which are the most effective topic modelling algorithm for a very random text corpus? [closed][url120] https://stackoverflow.com/questions/79287858/which-are-the-most-effective-topic-modelling-algorithm-for-a-very-random-text-co
|
||||
1. machine-learning[url68] 2. artificial-intelligence 3. reinforcement-learning[url69] 4. recommendation-engine[url70] 5. collaborative-filtering[url71] https://stackoverflow.com/questions/tagged/recommendation-engine
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/vllm
|
||||
1. machine-learning[url68] 2. artificial-intelligence 3. reinforcement-learning[url69] 4. recommendation-engine[url70] 5. collaborative-filtering[url71] https://stackoverflow.com/questions/tagged/machine-learning
|
||||
I am trying to write a model to “translate” sign language in real time. I try to do this this way: https://github.com/dgovor/Sign-Language-Translator but with dataset. I am using ASL Citizen as[url82] https://stackoverflow.com/questions/tagged/python
|
||||
How to Send Only Dynamic Part of a Prompt in OpenAI API to Optimize Token Usage?[url88] https://stackoverflow.com/questions/79290775/how-to-send-only-dynamic-part-of-a-prompt-in-openai-api-to-optimize-token-usage
|
||||
1. machine-learning[url68] 2. artificial-intelligence 3. reinforcement-learning[url69] 4. recommendation-engine[url70] 5. collaborative-filtering[url71] https://stackoverflow.com/questions/tagged/collaborative-filtering
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/large-language-model
|
||||
1. reactjs[url62] 2. artificial-intelligence 3. openai-api[url63] 4. chatgpt-api[url64] https://stackoverflow.com/questions/tagged/chatgpt-api
|
||||
I'm working on a python rag project. where I'm using milvus as vector database and using llama-index for setting up the project.[url113] https://stackoverflow.com/questions/79287870/how-do-i-specify-index-name-in-llama-index-milvusvectorstore
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 30
|
||||
total results: 18
|
||||
total analysis time: 24.869983911514282
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
大模型技术突破与创新:large-language-model[url163] https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model
|
||||
Asking ChatGPT API for questions and then for reviewing the answers I give him [closed][url61] https://stackoverflow.com/questions/79294509/asking-chatgpt-api-for-questions-and-then-for-reviewing-the-answers-i-give-him
|
||||
-Umidjon Musaev's user avatarimg[url5][url59] https://stackoverflow.com/users/7461410/umidjon-musaev
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/llama
|
||||
Umidjon Musaev[url60] https://stackoverflow.com/users/7461410/umidjon-musaev
|
||||
artificial-intelligence 2. llama[url114] 3. llama-index[url115] 4. vector-database[url116] 5. milvus[url117] https://stackoverflow.com/questions/tagged/vector-database
|
||||
Autoscaling resources for llm model [closed][url55] https://stackoverflow.com/questions/79297363/autoscaling-resources-for-llm-model
|
||||
artificial-intelligence 2. openai-api[url102] 3. gpt-3[url103] 4. gpt-4[url104] https://stackoverflow.com/questions/tagged/openai-api
|
||||
-Umidjon Musaev's user avatarimg[url5][url59] https://www.gravatar.com/avatar/9c36845fa8363d2ca571428faf5461a1?s=32&d=identicon&r=PG&f=y&so-version=2
|
||||
artificial-intelligence 2. llama[url114] 3. llama-index[url115] 4. vector-database[url116] 5. milvus[url117] https://stackoverflow.com/questions/tagged/llama-index
|
||||
artificial-intelligence 2. llama[url114] 3. llama-index[url115] 4. vector-database[url116] 5. milvus[url117] https://stackoverflow.com/questions/tagged/milvus
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/vllm
|
||||
Which are the most effective topic modelling algorithm for a very random text corpus? [closed][url120] https://stackoverflow.com/questions/79287858/which-are-the-most-effective-topic-modelling-algorithm-for-a-very-random-text-co
|
||||
How to make a correct prompt for "gpt-4o" vision API to find letters in an image? [closed][url101] https://stackoverflow.com/questions/79288815/how-to-make-a-correct-prompt-for-gpt-4o-vision-api-to-find-letters-in-an-image
|
||||
artificial-intelligence 2. openai-api[url102] 3. gpt-3[url103] 4. gpt-4[url104] https://stackoverflow.com/questions/tagged/gpt-3
|
||||
artificial-intelligence 2. llama[url114] 3. llama-index[url115] 4. vector-database[url116] 5. milvus[url117] https://stackoverflow.com/questions/tagged/llama
|
||||
1. artificial-intelligence 2. large-language-model[url56] 3. llama[url57] 4. vllm[url58] https://stackoverflow.com/questions/tagged/large-language-model
|
||||
artificial-intelligence 2. openai-api[url102] 3. gpt-3[url103] 4. gpt-4[url104] https://stackoverflow.com/questions/tagged/gpt-4
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 22
|
||||
total results: 54
|
||||
total analysis time: 33.23680591583252
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
neural-network[url142] https://stackoverflow.com/questions/tagged/artificial-intelligence+neural-network
|
||||
c++[url157] https://stackoverflow.com/questions/tagged/artificial-intelligence%20c%2b%2b
|
||||
Ownership and Reusability of a Fine-Tuned Model Trained on Client Data—Who Controls It, and Can It Be Used for Other Clients? [closed][url44] https://stackoverflow.com/questions/79299020/ownership-and-reusability-of-a-fine-tuned-model-trained-on-client-data-who-contr
|
||||
search[url156] https://stackoverflow.com/questions/tagged/artificial-intelligence+search
|
||||
-Hel4Dev's user avatarimg[url11][url99] https://stackoverflow.com/users/28827681/hel4dev
|
||||
collaborative-filtering[url71] https://stackoverflow.com/questions/tagged/collaborative-filtering
|
||||
javascript[url158] https://stackoverflow.com/questions/tagged/artificial-intelligence+javascript
|
||||
machine-learning[url68] https://stackoverflow.com/questions/tagged/machine-learning
|
||||
Proper System Message Construction in Chatbot[url48] https://stackoverflow.com/questions/79297501/proper-system-message-construction-in-chatbot
|
||||
computer-vision[url154] https://stackoverflow.com/questions/tagged/artificial-intelligence+computer-vision
|
||||
Asking ChatGPT API for questions and then for reviewing the answers I give him [closed][url61] https://stackoverflow.com/questions/79294509/asking-chatgpt-api-for-questions-and-then-for-reviewing-the-answers-i-give-him
|
||||
heuristics[url164] https://stackoverflow.com/questions/tagged/artificial-intelligence+heuristics
|
||||
large-language-model[url163] https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model
|
||||
Autoscaling resources for llm model [closed][url55] https://stackoverflow.com/questions/79297363/autoscaling-resources-for-llm-model
|
||||
machine-learning[url141] https://stackoverflow.com/questions/tagged/artificial-intelligence+machine-learning
|
||||
Newest artificial-intelligence questions feed[url190] https://stackoverflow.com/feeds/tag?tagnames=artificial-intelligence&sort=newest
|
||||
conv-neural-network[url155] https://stackoverflow.com/questions/tagged/artificial-intelligence+conv-neural-network
|
||||
Learn more about Collectives[url20] https://stackoverflow.com/collectives
|
||||
java[url146] https://stackoverflow.com/questions/tagged/artificial-intelligence+java
|
||||
How do i specify index_name in llama-index MilvusVectorStore[url113] https://stackoverflow.com/questions/79287870/how-do-i-specify-index-name-in-llama-index-milvusvectorstore
|
||||
python-3.x[url152] https://stackoverflow.com/questions/tagged/artificial-intelligence+python-3.x
|
||||
How to Send Only Dynamic Part of a Prompt in OpenAI API to Optimize Token Usage?[url88] https://stackoverflow.com/questions/79290775/how-to-send-only-dynamic-part-of-a-prompt-in-openai-api-to-optimize-token-usage
|
||||
openai-api[url63] https://stackoverflow.com/questions/tagged/openai-api
|
||||
How can I test the responses that an AI gives to a survey [closed][url107] https://stackoverflow.com/questions/79288025/how-can-i-test-the-responses-that-an-ai-gives-to-a-survey
|
||||
Greater Validation Accuracy during training[url81] https://stackoverflow.com/questions/79291675/greater-validation-accuracy-during-training
|
||||
recommendation-engine[url70] https://stackoverflow.com/questions/tagged/recommendation-engine
|
||||
-Hel4Dev's user avatarimg[url11][url99] https://www.gravatar.com/avatar/cc92400fdb37966a4d13984fb68abaa9?s=32&d=identicon&r=PG&f=y&so-version=2
|
||||
Learn more about Labs[url22] https://stackoverflow.co/labs/
|
||||
-[url94] https://stackoverflow.com/collectives/azure
|
||||
Hel4Dev[url100] https://stackoverflow.com/users/28827681/hel4dev
|
||||
genetic-algorithm[url160] https://stackoverflow.com/questions/tagged/artificial-intelligence+genetic-algorithm
|
||||
pytorch[url150] https://stackoverflow.com/questions/tagged/artificial-intelligence+pytorch
|
||||
1. azure[url95] 2. azure-functions[url96] 3. artificial-intelligence 4. azure-machine-learning-service[url97] 5. azure-ai[url98] https://stackoverflow.com/questions/tagged/azure-ai
|
||||
keras[url149] https://stackoverflow.com/questions/tagged/artificial-intelligence+keras
|
||||
unity-game-engine[url161] https://stackoverflow.com/questions/tagged/artificial-intelligence+unity-game-engine
|
||||
Which are the most effective topic modelling algorithm for a very random text corpus? [closed][url120] https://stackoverflow.com/questions/79287858/which-are-the-most-effective-topic-modelling-algorithm-for-a-very-random-text-co
|
||||
Seeking Advice on Implementing an AI-Based Image Search and Matching App [closed][url39] https://stackoverflow.com/questions/79299085/seeking-advice-on-implementing-an-ai-based-image-search-and-matching-app
|
||||
tensorflow[url144] https://stackoverflow.com/questions/tagged/artificial-intelligence+tensorflow
|
||||
chatgpt-api[url64] https://stackoverflow.com/questions/tagged/chatgpt-api
|
||||
How to make a correct prompt for "gpt-4o" vision API to find letters in an image? [closed][url101] https://stackoverflow.com/questions/79288815/how-to-make-a-correct-prompt-for-gpt-4o-vision-api-to-find-letters-in-an-image
|
||||
algorithm[url143] https://stackoverflow.com/questions/tagged/artificial-intelligence+algorithm
|
||||
deep-learning[url145] https://stackoverflow.com/questions/tagged/artificial-intelligence+deep-learning
|
||||
1. azure[url95] 2. azure-functions[url96] 3. artificial-intelligence 4. azure-machine-learning-service[url97] 5. azure-ai[url98] https://stackoverflow.com/questions/tagged/azure-functions
|
||||
c#[url148] https://stackoverflow.com/questions/tagged/artificial-intelligence+c%23
|
||||
1. azure[url95] 2. azure-functions[url96] 3. artificial-intelligence 4. azure-machine-learning-service[url97] 5. azure-ai[url98] https://stackoverflow.com/questions/tagged/azure
|
||||
Learn more about Teams[url21] https://stackoverflow.co/teams/
|
||||
reinforcement-learning[url153] https://stackoverflow.com/questions/tagged/artificial-intelligence+reinforcement-learning
|
||||
nlp[url147] https://stackoverflow.com/questions/tagged/artificial-intelligence+nlp
|
||||
minimax[url151] https://stackoverflow.com/questions/tagged/artificial-intelligence+minimax
|
||||
chatbot[url159] https://stackoverflow.com/questions/tagged/artificial-intelligence+chatbot
|
||||
1. azure[url95] 2. azure-functions[url96] 3. artificial-intelligence 4. azure-machine-learning-service[url97] 5. azure-ai[url98] https://stackoverflow.com/questions/tagged/azure-machine-learning-service
|
||||
reinforcement-learning[url69] https://stackoverflow.com/questions/tagged/reinforcement-learning
|
||||
python[url140] https://stackoverflow.com/questions/tagged/artificial-intelligence+python
|
||||
Send and get data from azure machine learning service[url93] https://stackoverflow.com/questions/79289217/send-and-get-data-from-azure-machine-learning-service
|
||||
************
|
||||
|
||||
raw materials: e8c97c
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 0
|
||||
total results: 31
|
||||
total analysis time: 55.898107051849365
|
||||
|
||||
author and publish time(not formated): {'source': '北京多氪信息科技有限公司', 'publish_date': '2011~2024'}
|
||||
infos(not formated):
|
||||
长视频与短视频的2024[url278] https://36kr.com/p/3087158007168777
|
||||
o3:突破 ARC-AGI 基准,博士级问题求解能力[url150] https://36kr.com/p/3087654394362243
|
||||
第一批用上苹果AI的人,已经后悔了[url119] https://36kr.com/p/3088295581481346
|
||||
-36氪[url310] https://36kr.com/
|
||||
快讯标签[url299] https://36kr.com/nftags
|
||||
-[url316] https://weibo.com/wow36kr
|
||||
-个推[url302] https://www.getui.com/cn/index.html
|
||||
-火山引擎[url301] https://www.volcengine.cn/
|
||||
-企服点评[url307] https://www.36dianping.com/pk/
|
||||
在协作中学会如何优化自己的行为。[url192] https://36kr.com/p/3087954405325193
|
||||
o3权威评测报告:AI能力实现关键跃升,但仍未达到AGI水平[url167] https://36kr.com/p/3088122103117959
|
||||
京ICP备12031756号-6[url313] https://beian.miit.gov.cn/#/Integrated/index
|
||||
文章标签[url298] https://36kr.com/tags
|
||||
“AGI重要里程碑”[url228] https://36kr.com/p/3087594703943812
|
||||
意见反馈[url318] https://36kr.com/mform/1755983296602372
|
||||
AI+Emoji,终于打了一场胜仗?[url248] https://36kr.com/p/3087292469065863
|
||||
-[url317] https://36kr.com/rss-center
|
||||
阿里云[url311] https://www.aliyun.com/
|
||||
京ICP证150143号[url314] https://dxzhgl.miit.gov.cn/dxxzsp/xkz/xkzgl/resource/qiyesearch.jsp?num=%25E5%258C%2597%25E4%25BA%25AC%25E5%25A4%259A%25E6%25B0%25AA%25E4%25BF%25A1%25E6%2581%25AF%25E7%25A7%2591%25E6%258A%2580%25E6%259C%2589%25E9%2599%2590%25E5%2585%25AC%25E5%258F%25B8&type=xuke
|
||||
这就翻车了?[url120] https://36kr.com/p/3088295581481346
|
||||
京公网安备11010502036099号[url315] http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502036099
|
||||
-富途牛牛[url306] https://www.futunn.com/
|
||||
通过ARC-AGI的测试并不等于实现了通用人工智能。[url168] https://36kr.com/p/3088122103117959
|
||||
AI[url61] https://36kr.com/information/AI/
|
||||
-阿里云[url300] https://www.aliyun.com/
|
||||
OpenAI在年底通过o3系列的卓越表现,重新杀回了铁王座。[url186] https://36kr.com/p/3088107741870215
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url149] https://36kr.com/p/3087654394362243
|
||||
o3来了!编程跻身人类全球前200,破解陶哲轩说难的数学测试,北大校友任泓宇现身直播间[url227] https://36kr.com/p/3087594703943812
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url148] https://36kr.com/p/3087654394362243
|
||||
AI同时操控200个机器人,任务成功率超90%,半数故障依然「能打」[url191] https://36kr.com/p/3087954405325193
|
||||
当你以为AI发展放缓时,OpenAI推出o3,向AGI迈出关键一步[url185] https://36kr.com/p/3088107741870215
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 7
|
||||
total analysis time: 25.0852632522583
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
o3:突破 ARC-AGI 基准,博士级问题求解能力[url150] https://36kr.com/p/3087654394362243
|
||||
“AGI重要里程碑”[url228] https://36kr.com/p/3087594703943812
|
||||
AI同时操控200个机器人,任务成功率超90%,半数故障依然「能打」[url191] https://36kr.com/p/3087954405325193
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url148] https://36kr.com/p/3087654394362243
|
||||
o3来了!编程跻身人类全球前200,破解陶哲轩说难的数学测试,北大校友任泓宇现身直播间[url227] https://36kr.com/p/3087594703943812
|
||||
o3权威评测报告:AI能力实现关键跃升,但仍未达到AGI水平[url167] https://36kr.com/p/3088122103117959
|
||||
当你以为AI发展放缓时,OpenAI推出o3,向AGI迈出关键一步[url185] https://36kr.com/p/3088107741870215
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 12
|
||||
total results: 8
|
||||
total analysis time: 7.475970983505249
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
o3:突破 ARC-AGI 基准,博士级问题求解能力[url150] https://36kr.com/p/3087654394362243
|
||||
AI+Emoji,终于打了一场胜仗?[url248] https://36kr.com/p/3087292469065863
|
||||
o3来了!编程跻身人类全球前200,破解陶哲轩说难的数学测试,北大校友任泓宇现身直播间[url227] https://36kr.com/p/3087594703943812
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url148] https://36kr.com/p/3087654394362243
|
||||
AI同时操控200个机器人,任务成功率超90%,半数故障依然「能打」[url191] https://36kr.com/p/3087954405325193
|
||||
如视数字空间综合解决方案引领者[url283] https://36kr.com/user/6004667
|
||||
o3权威评测报告:AI能力实现关键跃升,但仍未达到AGI水平[url167] https://36kr.com/p/3088122103117959
|
||||
当你以为AI发展放缓时,OpenAI推出o3,向AGI迈出关键一步[url185] https://36kr.com/p/3088107741870215
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 13
|
||||
total results: 22
|
||||
total analysis time: 11.104120969772339
|
||||
|
||||
author and publish time(not formated): {'source': '北京多氪信息科技有限公司', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
来自主题:人工智能·AI[url250]| https://36kr.com/motif/327686782977
|
||||
长视频与短视频的2024[url278] https://36kr.com/p/3087158007168777
|
||||
o3:突破 ARC-AGI 基准,博士级问题求解能力[url150] https://36kr.com/p/3087654394362243
|
||||
第一批用上苹果AI的人,已经后悔了[url120] https://36kr.com/p/3088295581481346
|
||||
90后独生子女,把抑郁症父母送去精神科[url254] https://36kr.com/p/3087063959665031
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元img[url7][url148] https://36kr.com/p/3087654394362243
|
||||
一件困难又要紧的事。[url255] https://36kr.com/p/3087063959665031
|
||||
职场[url252] https://36kr.com/information/web_zhichang
|
||||
-[url277] https://36kr.com/p/3087158007168777
|
||||
当你以为AI发展放缓时,OpenAI推出o3,向AGI迈出关键一步[url186] https://36kr.com/p/3088107741870215
|
||||
推荐[url276] https://36kr.com/information/web_recommend
|
||||
长视频与短视频平台之间,也早已不再是你死我亡的战火硝烟,而是在发挥各自优势的同时向对方取径,携手满足观众不同层级、场景的精神需求。[url279] https://36kr.com/p/3087158007168777
|
||||
“AGI重要里程碑”[url228] https://36kr.com/p/3087594703943812
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元img[url7][url148] https://img.36krcdn.com/hsossms/20241221/v2_7c85fa6cf15244c7b01989df9e9a2851@000000_oswg56173oswg1080oswg460_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center
|
||||
来自主题:后浪研究所[url274]| https://36kr.com/motif/1756302767423108
|
||||
白鲸出海[url251] https://36kr.com/user/5372076
|
||||
-[url253] https://36kr.com/p/3087063959665031
|
||||
后浪研究所[url275] https://36kr.com/user/10246630
|
||||
通过ARC-AGI的测试并不等于实现了通用人工智能。[url168] https://36kr.com/p/3088122103117959
|
||||
AI[url61] https://36kr.com/information/AI/
|
||||
o3来了!编程跻身人类全球前200,破解陶哲轩说难的数学测试,北大校友任泓宇现身直播间[url227] https://36kr.com/p/3087594703943812
|
||||
AI同时操控200个机器人,任务成功率超90%,半数故障依然「能打」[url191] https://36kr.com/p/3087954405325193
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 1
|
||||
total results: 70
|
||||
total analysis time: 24.695602893829346
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
-[url81] https://36kr.com/local/xian
|
||||
长视频与短视频的2024[url278] https://36kr.com/p/3087158007168777
|
||||
-[url82] https://36kr.com/local/chongqing
|
||||
o3:突破 ARC-AGI 基准,博士级问题求解能力[url150] https://36kr.com/p/3087654394362243
|
||||
-[url72] https://36kr.com/activity
|
||||
-[url54] ttps://36kr.com/topics/799051634713857
|
||||
-[url74] https://36kr.com/local/jiangsu
|
||||
第一批用上苹果AI的人,已经后悔了[url119] https://36kr.com/p/3088295581481346
|
||||
向佐没疯,他赚疯了[url138] https://36kr.com/p/3087940258265473
|
||||
本田日产,警惕出现“失意者联盟”[url209] https://36kr.com/p/3087906699311492
|
||||
-[url69] https://36kr.com/live/channel
|
||||
春节档有些过激了[url243] https://36kr.com/p/3087290228914563
|
||||
全方位的全球化布局增加了企业运营的复杂度,但也正因如此,中国企业在国际市场能够建立起更具竞争力的业务模式。[url204] https://36kr.com/p/3086765895022729
|
||||
宁德时代的梦想,储存在电池银行[url107] https://36kr.com/p/3088646341179523
|
||||
-[url78] https://36kr.com/local/anhui
|
||||
-婚纱女王,卖了img[url4][url130] https://img.36krcdn.com/hsossms/20241221/v2_1c681a2060ce472d89c14d99b66431a8@000000_oswg167885oswg1536oswg722_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center
|
||||
-[url55] https://36kr.com/
|
||||
冻梨卖爆、搓澡巾被抢,“神秘东北力量”席卷饮品圈[url197] https://36kr.com/p/3087949073086855
|
||||
150亿造车新势力闪崩,9位创始人全部跑路,股价断崖下跌97%[url215] https://36kr.com/p/3087890137233544
|
||||
-[url85] https://36kr.com/local/guizhou
|
||||
1. -阿里云[url300] 2. -火山引擎[url301] 3. -高德 4. -个推[url302] 5. -星球日报[url303] 6. -鲸准[url304] 7. -氪空间[url305] 8. -富途牛牛[url306] 9. -企服点评[url307] 10. -人人都是产品经理[url308] 11. -领氪[url309] https://www.36dianping.com/pk/
|
||||
1. -阿里云[url300] 2. -火山引擎[url301] 3. -高德 4. -个推[url302] 5. -星球日报[url303] 6. -鲸准[url304] 7. -氪空间[url305] 8. -富途牛牛[url306] 9. -企服点评[url307] 10. -人人都是产品经理[url308] 11. -领氪[url309] https://www.volcengine.cn/
|
||||
是时候给春节档松绑了[url242] https://36kr.com/p/3087290228914563
|
||||
大家重点关心的,已不再是800万辆的销售规模,而是后续的运营效率和潜在风险。[url210] https://36kr.com/p/3087906699311492
|
||||
-[url15] https://36kr.com/usercenter/basicinfo
|
||||
-第一批用上苹果AI的人,已经后悔了img[url2][url118] https://36kr.com/p/3088295581481346
|
||||
7家消费公司拿到新钱;哈根达斯中国门店客流量下降;「男版lululemon」Vuori首推新春系列 |创投大视野[url113] https://36kr.com/p/3088381180835968
|
||||
-婚纱女王,卖了img[url4][url130] https://36kr.com/p/3088295368030594
|
||||
2024内娱第一「癫公」,日入千万?[url137] https://36kr.com/p/3087940258265473
|
||||
-[url52] https://36kr.com/topics/799051634713857
|
||||
出海周刊125期|谁在越南挣到钱了?/紧随Keeta,美团小象超市和无人机业务也出海中东了[url203] https://36kr.com/p/3086765895022729
|
||||
刚实现盈利就没钱了[url216] https://36kr.com/p/3087890137233544
|
||||
-中国最大金表商要IPO了img[url3][url124] https://img.36krcdn.com/hsossms/20241221/v2_9a6d858952a544bf8dd7d5400c5288eb@000000_oswg156992oswg1536oswg722_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center
|
||||
-[url53] http://www.bjjubao.org.cn/node_1606.html
|
||||
-宁德时代的梦想,储存在电池银行img[url0][url106] https://36kr.com/p/3088646341179523
|
||||
1. -阿里云[url300] 2. -火山引擎[url301] 3. -高德 4. -个推[url302] 5. -星球日报[url303] 6. -鲸准[url304] 7. -氪空间[url305] 8. -富途牛牛[url306] 9. -企服点评[url307] 10. -人人都是产品经理[url308] 11. -领氪[url309] https://www.futunn.com/
|
||||
-[url75] https://36kr.com/local/sichuan
|
||||
长视频与短视频平台之间,也早已不再是你死我亡的战火硝烟,而是在发挥各自优势的同时向对方取径,携手满足观众不同层级、场景的精神需求。[url279] https://36kr.com/p/3087158007168777
|
||||
“AGI重要里程碑”[url228] https://36kr.com/p/3087594703943812
|
||||
-中国最大金表商要IPO了img[url3][url124] https://36kr.com/p/3088308264761731
|
||||
1. -阿里云[url300] 2. -火山引擎[url301] 3. -高德 4. -个推[url302] 5. -星球日报[url303] 6. -鲸准[url304] 7. -氪空间[url305] 8. -富途牛牛[url306] 9. -企服点评[url307] 10. -人人都是产品经理[url308] 11. -领氪[url309] https://www.getui.com/cn/index.html
|
||||
AI+Emoji,终于打了一场胜仗?[url248] https://36kr.com/p/3087292469065863
|
||||
-2024内娱第一「癫公」,日入千万?img[url5][url136] https://36kr.com/p/3087940258265473
|
||||
-宁德时代的梦想,储存在电池银行img[url0][url106] https://img.36krcdn.com/hsossms/20241221/v2_40c28bcceafc4905b8612d6dce7a6a2a@000000_oswg116731oswg1280oswg545_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center
|
||||
-刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元img[url7][url148] https://36kr.com/p/3087654394362243
|
||||
这就翻车了?[url120] https://36kr.com/p/3088295581481346
|
||||
如视数字空间综合解决方案引领者[url283] https://36kr.com/user/6004667
|
||||
婚纱女王,卖了[url132] https://36kr.com/p/3088295368030594
|
||||
中国最大金表商要IPO了[url125] https://36kr.com/p/3088308264761731
|
||||
年入30亿+的毛绒玩具Build-A-Bear,如何走出低谷?[url233] https://36kr.com/p/3087382330062979
|
||||
婚纱女王,卖了[url131] https://36kr.com/p/3088295368030594
|
||||
1. -阿里云[url300] 2. -火山引擎[url301] 3. -高德 4. -个推[url302] 5. -星球日报[url303] 6. -鲸准[url304] 7. -氪空间[url305] 8. -富途牛牛[url306] 9. -企服点评[url307] 10. -人人都是产品经理[url308] 11. -领氪[url309] https://www.aliyun.com/
|
||||
让电池成为“会生长的资产”。[url108] https://36kr.com/p/3088646341179523
|
||||
-[url76] https://36kr.com/local/henan
|
||||
-第一批用上苹果AI的人,已经后悔了img[url2][url118] https://img.36krcdn.com/hsossms/20241221/v2_db5c77303254452c89beb1a781e7e4d6@000000_oswg37843oswg940oswg399_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center
|
||||
-[url70] https://36kr.com/video/
|
||||
-[url71] https://36kr.com/topics/
|
||||
当你以为AI发展放缓时,OpenAI推出o3,向AGI迈出关键一步[url185] https://36kr.com/p/3088107741870215
|
||||
-[url84] https://36kr.com/local/hunan
|
||||
-[url80] https://36kr.com/local/zhejiang
|
||||
给饮品加点“东北味”更好卖?[url198] https://36kr.com/p/3087949073086855
|
||||
OpenAI在年底通过o3系列的卓越表现,重新杀回了铁王座。[url186] https://36kr.com/p/3088107741870215
|
||||
-[url77] https://36kr.com/local/hubei
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url149] https://36kr.com/p/3087654394362243
|
||||
o3来了!编程跻身人类全球前200,破解陶哲轩说难的数学测试,北大校友任泓宇现身直播间[url227] https://36kr.com/p/3087594703943812
|
||||
AI同时操控200个机器人,任务成功率超90%,半数故障依然「能打」[url191] https://36kr.com/p/3087954405325193
|
||||
-[url79] https://36kr.com/local/hainan
|
||||
-7家消费公司拿到新钱;哈根达斯中国门店客流量下降;「男版lululemon」Vuori首推新春系列 |创投大视野img[url1][url112] https://36kr.com/p/3088381180835968
|
||||
-刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元img[url7][url148] https://img.36krcdn.com/hsossms/20241221/v2_7c85fa6cf15244c7b01989df9e9a2851@000000_oswg56173oswg1080oswg460_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center
|
||||
-[url83] https://36kr.com/local/qingdao
|
||||
************
|
||||
|
||||
raw materials: 29229b
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 2
|
||||
total results: 43
|
||||
total analysis time: 59.166102170944214
|
||||
|
||||
author and publish time(not formated): {'source': 'u/F0urLeafCl0ver', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
Click here for the full rule, it is also located in the Wiki[url42] https://www.reddit.com/r/artificial/wiki/guidelines/selfpromo/
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url35] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
Stability AI[url57] https://stability.ai/news
|
||||
Anthropic[url58] https://www.anthropic.com/news
|
||||
Apple ML[url54] https://www.apple.com/apple-intelligence/
|
||||
-[url77] https://www.redditinc.com/policies/privacy-policy
|
||||
IBM AI[url52] https://research.ibm.com/artificial-intelligence
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url39] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
Google AI[url50] https://blog.google/technology/ai/
|
||||
r/ChatGPT[url71] https://www.reddit.com/r/ChatGPT
|
||||
UK’s ambitions to police AI face Trump’s ‘starkly’ different approach[url28] https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/
|
||||
Time 100 AI List 2024[url46] https://time.com/collection/time100-ai-2024/
|
||||
Perplexity[url64] https://www.perplexity.ai/hub
|
||||
-[url75] https://www.redditinc.com/policies/privacy-policy
|
||||
Subreddit Update[url69] https://www.reddit.com/r/artificial/comments/120qr4r/psa_rule_2_will_be_enforced_selfpromotion_is_only/
|
||||
Wiki[url68] https://www.reddit.com/r/artificial/wiki/index
|
||||
Adobe AI[url67] https://www.adobe.com/ai/overview.html
|
||||
r/ClaudeAI[url73] https://www.reddit.com/r/ClaudeAI
|
||||
OpenAI[url48] https://openai.com/news
|
||||
Midjourney[url65] https://www.midjourney.com/home
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url33] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
Trending AI Subreddits and Posts[url44] https://www.reddit.com/t/artificial_intelligence_and_machine_learning/
|
||||
ElevenLabs[url60] https://elevenlabs.io/blog/
|
||||
Microsoft AI[url51] https://news.microsoft.com/source/topics/ai/
|
||||
Character.AI[url56] https://blog.character.ai/
|
||||
-[url76] https://www.redditinc.com/policies/user-agreement
|
||||
Hugging Face[url62] https://huggingface.co/blog
|
||||
Runway[url63] https://runwayml.com/blog/
|
||||
Amazon AWS[url53] https://aws.amazon.com/ai/
|
||||
Suno AI[url66] https://suno.com/blog/
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url37] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
More Communities[url70] https://www.reddit.com/r/artificial/wiki/related-subreddits/
|
||||
r/OpenAI[url72] https://www.reddit.com/r/OpenAI
|
||||
Fortune 50 AI List 2024[url45] https://fortune.com/ranking/ai-innovators/2024/
|
||||
NVIDIA DL[url55] https://blogs.nvidia.com/blog/category/deep-learning/
|
||||
Meta AI[url49] https://ai.meta.com/blog/?page=1
|
||||
UK’s ambitions to police AI face Trump’s ‘starkly’ different approach[url26] https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/
|
||||
-[url79] https://www.redditinc.com/policies/privacy-policy
|
||||
Forbes AI 50 List 2024[url47] https://www.forbes.com/lists/ai50/
|
||||
-[url80] https://reddithelp.com/hc/sections/360008917491-Account-Security
|
||||
Mistral AI[url59] https://mistral.ai/news/
|
||||
-[url74] https://www.redditinc.com/policies/user-agreement
|
||||
-[url78] https://www.redditinc.com/policies/user-agreement
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 24
|
||||
total analysis time: 32.42322301864624
|
||||
|
||||
author and publish time(not formated): {'source': 'u/F0urLeafCl0ver', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url35] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
Stability AI[url57] https://stability.ai/news
|
||||
Anthropic[url58] https://www.anthropic.com/news
|
||||
Apple ML[url54] https://www.apple.com/apple-intelligence/
|
||||
IBM AI[url52] https://research.ibm.com/artificial-intelligence
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url39] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
Google AI[url50] https://blog.google/technology/ai/
|
||||
Perplexity[url64] https://www.perplexity.ai/hub
|
||||
Adobe AI[url67] https://www.adobe.com/ai/overview.html
|
||||
OpenAI[url48] https://openai.com/news
|
||||
Midjourney[url65] https://www.midjourney.com/home
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url33] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
ElevenLabs[url60] https://elevenlabs.io/blog/
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url37] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
Microsoft AI[url51] https://news.microsoft.com/source/topics/ai/
|
||||
Character.AI[url56] https://blog.character.ai/
|
||||
Hugging Face[url62] https://huggingface.co/blog
|
||||
Runway[url63] https://runwayml.com/blog/
|
||||
Amazon AWS[url53] https://aws.amazon.com/ai/
|
||||
Suno AI[url66] https://suno.com/blog/
|
||||
NVIDIA DL[url55] https://blogs.nvidia.com/blog/category/deep-learning/
|
||||
Meta AI[url49] https://ai.meta.com/blog/?page=1
|
||||
Mistral AI[url59] https://mistral.ai/news/
|
||||
Project[url40] https://www.reddit.com/r/artificial/?f=flair_name%3A%22Project%22
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 12
|
||||
total results: 28
|
||||
total analysis time: 14.524560928344727
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url35] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
Stability AI[url57] https://stability.ai/news
|
||||
Anthropic[url58] https://www.anthropic.com/news
|
||||
Apple ML[url54] https://www.apple.com/apple-intelligence/
|
||||
IBM AI[url52] https://research.ibm.com/artificial-intelligence
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url39] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
Google AI[url50] https://blog.google/technology/ai/
|
||||
r/ChatGPT[url71] https://www.reddit.com/r/ChatGPT
|
||||
Time 100 AI List 2024[url46] https://time.com/collection/time100-ai-2024/
|
||||
Perplexity[url64] https://www.perplexity.ai/hub
|
||||
Adobe AI[url67] https://www.adobe.com/ai/overview.html
|
||||
r/ClaudeAI[url73] https://www.reddit.com/r/ClaudeAI
|
||||
OpenAI[url48] https://openai.com/news
|
||||
Midjourney[url65] https://www.midjourney.com/home
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url33] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
ElevenLabs[url60] https://elevenlabs.io/blog/
|
||||
Microsoft AI[url51] https://news.microsoft.com/source/topics/ai/
|
||||
Character.AI[url56] https://blog.character.ai/
|
||||
Hugging Face[url62] https://huggingface.co/blog
|
||||
Runway[url63] https://runwayml.com/blog/
|
||||
Amazon AWS[url53] https://aws.amazon.com/ai/
|
||||
Suno AI[url66] https://suno.com/blog/
|
||||
r/OpenAI[url72] https://www.reddit.com/r/OpenAI
|
||||
Fortune 50 AI List 2024[url45] https://fortune.com/ranking/ai-innovators/2024/
|
||||
NVIDIA DL[url55] https://blogs.nvidia.com/blog/category/deep-learning/
|
||||
Meta AI[url49] https://ai.meta.com/blog/?page=1
|
||||
Forbes AI 50 List 2024[url47] https://www.forbes.com/lists/ai50/
|
||||
Mistral AI[url59] https://mistral.ai/news/
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 25
|
||||
total results: 8
|
||||
total analysis time: 15.405689001083374
|
||||
|
||||
author and publish time(not formated): {'source': 'u/F0urLeafCl0ver', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url33] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
ARC-AGI has fallen to OpenAI's new model, o3png?width=640&crop=smart&auto=webp&s=281bd992d1f62582767dccbc20d51c60af4e79cb[url8] https://preview.redd.it/arc-agi-has-fallen-to-openais-new-model-o3-v0-yhxu4661p18e1.png?width=640&crop=smart&auto=webp&s=281bd992d1f62582767dccbc20d51c60af4e79cb
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url35] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
Solve complex engineering challenges up to 53X faster with Anys' multiphysics simulation software. Learn more.[url32] https://www.reddit.com/user/ANSYSInc/
|
||||
[url68] https://www.reddit.com/r/artificial/wiki/index
|
||||
Fortune 50 AI List 2024[url45] https://fortune.com/ranking/ai-innovators/2024/
|
||||
[url17] https://external-preview.redd.it/X3dq7BwWSNeUHhYVAwg9EWZnzdW0rDaEwG8X76Th8PI.jpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url39] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 33
|
||||
total results: 46
|
||||
total analysis time: 23.528389930725098
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
Click here for the full rule, it is also located in the Wiki[url42] https://www.reddit.com/r/artificial/wiki/guidelines/selfpromo/
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url35] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
Anthropic[url58] https://www.anthropic.com/news
|
||||
Stability AI[url57] https://stability.ai/news
|
||||
Apple ML[url54] https://www.apple.com/apple-intelligence/
|
||||
-[url77] https://www.redditinc.com/policies/privacy-policy
|
||||
IBM AI[url52] https://research.ibm.com/artificial-intelligence
|
||||
Google AI[url50] https://blog.google/technology/ai/
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url39] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
-sidebar promoted post thumbnailjpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170[url16] https://external-preview.redd.it/X3dq7BwWSNeUHhYVAwg9EWZnzdW0rDaEwG8X76Th8PI.jpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170
|
||||
r/ChatGPT[url71] https://www.reddit.com/r/ChatGPT
|
||||
Resources[url44] https://www.reddit.com/t/artificial_intelligence_and_machine_learning/
|
||||
Time 100 AI List 2024[url46] https://time.com/collection/time100-ai-2024/
|
||||
AutoMod[url43] https://www.reddit.com/wiki/automoderator/
|
||||
Solve complex engineering challenges up to 53X faster with Ansys' multiphysics simulation software. Learn more[url5] https://external-preview.redd.it/3rRln0iVIX-wT0xZbW3PEwBaaAnqFo9eY9B6gKooOa4.jpg?width=640&crop=smart&auto=webp&s=217592e90ae2f0a92d7cfc6f0e43b91cae8e71ed
|
||||
Perplexity[url64] https://www.perplexity.ai/hub
|
||||
-[url75] https://www.redditinc.com/policies/privacy-policy
|
||||
Subreddit Update[url69] https://www.reddit.com/r/artificial/comments/120qr4r/psa_rule_2_will_be_enforced_selfpromotion_is_only/
|
||||
Wiki[url68] https://www.reddit.com/r/artificial/wiki/index
|
||||
Adobe AI[url67] https://www.adobe.com/ai/overview.html
|
||||
r/ClaudeAI[url73] https://www.reddit.com/r/ClaudeAI
|
||||
OpenAI[url48] https://openai.com/news
|
||||
Midjourney[url65] https://www.midjourney.com/home
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url33] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
ElevenLabs[url60] https://elevenlabs.io/blog/
|
||||
Microsoft AI[url51] https://news.microsoft.com/source/topics/ai/
|
||||
Character.AI[url56] https://blog.character.ai/
|
||||
-[url76] https://www.redditinc.com/policies/user-agreement
|
||||
Hugging Face[url62] https://huggingface.co/blog
|
||||
Runway[url63] https://runwayml.com/blog/
|
||||
-sidebar promoted post thumbnailjpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170[url17] https://external-preview.redd.it/X3dq7BwWSNeUHhYVAwg9EWZnzdW0rDaEwG8X76Th8PI.jpg?auto=webp&s=41609c39ac55f81573d212eaf4cf408bb74a3170
|
||||
Amazon AWS[url53] https://aws.amazon.com/ai/
|
||||
Suno AI[url66] https://suno.com/blog/
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url37] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
More Communities[url70] https://www.reddit.com/r/artificial/wiki/related-subreddits/
|
||||
Forbes AI 50 List 2024[url47] https://www.forbes.com/lists/ai50/
|
||||
Fortune 50 AI List 2024[url45] https://fortune.com/ranking/ai-innovators/2024/
|
||||
r/OpenAI[url72] https://www.reddit.com/r/OpenAI
|
||||
Mistral AI[url59] https://mistral.ai/news/
|
||||
UK’s ambitions to police AI face Trump’s ‘starkly’ different approach[url26] https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/
|
||||
NVIDIA DL[url55] https://blogs.nvidia.com/blog/category/deep-learning/
|
||||
Meta AI[url49] https://ai.meta.com/blog/?page=1
|
||||
-[url80] https://reddithelp.com/hc/sections/360008917491-Account-Security
|
||||
-[url79] https://www.redditinc.com/policies/privacy-policy
|
||||
-[url74] https://www.redditinc.com/policies/user-agreement
|
||||
-[url78] https://www.redditinc.com/policies/user-agreement
|
||||
************
|
||||
|
||||
raw materials: 3958ab
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 0
|
||||
total results: 0
|
||||
total analysis time: 9.49904727935791
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 0
|
||||
total analysis time: 7.593919038772583
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 0
|
||||
total analysis time: 4.947685718536377
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 0
|
||||
total analysis time: 0.5866909027099609
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 1
|
||||
total analysis time: 6.940003871917725
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
{'focus': '大模型技术突破与创新', 'content': 'The latest advances in the quest to build machines that can reason, learn, and act intelligently.'}
|
||||
************
|
||||
|
@ -0,0 +1,123 @@
|
||||
focus statement:
|
||||
#大模型技术突破与创新
|
||||
解释:包括新算法与模型,新的研究成果
|
||||
#AI应用市场规模与增长预测
|
||||
解释:提供AI市场的最新统计数据、增长趋势和未来预测,帮助读者了解行业发展方向的信息
|
||||
#大模型落地行业应用趋势
|
||||
解释:分析大模型在各个行业(如医疗、金融、制造、教育)的应用现状和发展前景,展示AI在实际业务中的价值。
|
||||
#大模型企业应用案例
|
||||
解释:分享企业如何利用大模型提升效率、降低成本或创新产品的具体案例,展示AI的实际效益。
|
||||
#大模型创业故事
|
||||
解释:介绍大模型初创公司的发展历程、融资情况和成功经验,激励创业者和投资者。
|
||||
#好用的AI工具及其适用的范围,和同类型工具的对比
|
||||
|
||||
|
||||
raw materials: 9c76f8
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 11
|
||||
total results: 8
|
||||
total analysis time: 9.75146222114563
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
1. machine-learning[url68] 2. artificial-intelligence 3. reinforcement-learning[url69] 4. recommendation-engine[url70] 5. collaborative-filtering[url71] https://stackoverflow.com/questions/tagged/collaborative-filtering
|
||||
Consultion about a Recommendations system complexity as a graduation project [url67] https://stackoverflow.com/questions/79294470/consultion-about-a-recommendations-system-complexity-as-a-graduation-project
|
||||
Asking ChatGPT API for questions and then for reviewing the answers I give him [url61] https://stackoverflow.com/questions/79294509/asking-chatgpt-api-for-questions-and-then-for-reviewing-the-answers-i-give-him
|
||||
Autoscaling resources for llm model [url55] https://stackoverflow.com/questions/79297363/autoscaling-resources-for-llm-model
|
||||
Which are the most effective topic modelling algorithm for a very random text corpus? [url120] https://stackoverflow.com/questions/79287858/which-are-the-most-effective-topic-modelling-algorithm-for-a-very-random-text-co
|
||||
How can I test the responses that an AI gives to a survey [url107] https://stackoverflow.com/questions/79288025/how-can-i-test-the-responses-that-an-ai-gives-to-a-survey
|
||||
Proper System Message Construction in Chatbot[url48] https://stackoverflow.com/questions/79297501/proper-system-message-construction-in-chatbot
|
||||
large-language-model[url163] https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model
|
||||
************
|
||||
|
||||
raw materials: e8c97c
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 2
|
||||
total results: 21
|
||||
total analysis time: 6.710699081420898
|
||||
|
||||
author and publish time(not formated): {'source': '36氪', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
-[url316] https://weibo.com/wow36kr
|
||||
-[url52] https://36kr.com/topics/799051634713857
|
||||
-[url15] https://36kr.com/usercenter/basicinfo
|
||||
「长安街英菲尼迪车祸案」14年,一个女人的丧失与重建[url273] https://36kr.com/p/3087052296943753
|
||||
-[url317] https://36kr.com/rss-center
|
||||
-[url318] https://36kr.com/mform/1755983296602372
|
||||
当你以为AI发展放缓时,OpenAI推出o3,向AGI迈出关键一步[url185] https://36kr.com/p/3088107741870215
|
||||
-[url54] ttps://36kr.com/topics/799051634713857
|
||||
AI+Emoji,终于打了一场胜仗?[url248] https://36kr.com/p/3087292469065863
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url149] https://36kr.com/p/3087654394362243
|
||||
o3权威评测报告:AI能力实现关键跃升,但仍未达到AGI水平[url167] https://36kr.com/p/3088122103117959
|
||||
刚刚,OpenAI放出最后大惊喜o3,高计算模式每任务花费数千美元[url7] https://img.36krcdn.com/hsossms/20241221/v2_7c85fa6cf15244c7b01989df9e9a2851@000000_oswg56173oswg1080oswg460_img_000?x-oss-process=image/resize,m_mfit,w_600,h_400,limit_0/crop,w_600,h_400,g_center
|
||||
1. AI[url61] https://36kr.com/information/AI/
|
||||
如视数字空间综合解决方案引领者[url283] https://36kr.com/user/6004667
|
||||
一个男性自学女性主义后,越来越「自闭」了[url260] https://36kr.com/p/3087061837281667
|
||||
o3:突破 ARC-AGI 基准,博士级问题求解能力[url150] https://36kr.com/p/3087654394362243
|
||||
90后独生子女,把抑郁症父母送去精神科[url255] https://36kr.com/p/3087063959665031
|
||||
长视频与短视频的2024[url279] https://36kr.com/p/3087158007168777
|
||||
-[url53] http://www.bjjubao.org.cn/node_1606.html
|
||||
第一批用上苹果AI的人,已经后悔了[url120] https://36kr.com/p/3088295581481346
|
||||
中国人打价格战,德国人先裁员[url267] https://36kr.com/p/3087175585134728
|
||||
************
|
||||
|
||||
raw materials: 29229b
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 3
|
||||
total results: 35
|
||||
total analysis time: 7.976946830749512
|
||||
|
||||
author and publish time(not formated): {'source': 'u/F0urLeafCl0ver', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
Meta AI[url49] https://ai.meta.com/blog/?page=1
|
||||
Stability AI[url57] https://stability.ai/news
|
||||
Runway[url63] https://runwayml.com/blog/
|
||||
Adobe AI[url67] https://www.adobe.com/ai/overview.html
|
||||
ElevenLabs[url60] https://elevenlabs.io/blog/
|
||||
IBM AI[url52] https://research.ibm.com/artificial-intelligence
|
||||
Midjourney[url65] https://www.midjourney.com/home
|
||||
NVIDIA DL[url55] https://blogs.nvidia.com/blog/category/deep-learning/
|
||||
OpenAI[url48] https://openai.com/news
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url39] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
-[url76] https://www.redditinc.com/policies/user-agreement
|
||||
Microsoft AI[url51] https://news.microsoft.com/source/topics/ai/
|
||||
Project[url40] https://www.reddit.com/r/artificial/?f=flair_name%3A%22Project%22
|
||||
Google AI[url50] https://blog.google/technology/ai/
|
||||
UK’s ambitions to police AI face Trump’s ‘starkly’ different approach[url26] https://www.reddit.com/r/artificial/comments/1hj8nmp/uks_ambitions_to_police_ai_face_trumps_starkly/
|
||||
-[url75] https://www.redditinc.com/policies/privacy-policy
|
||||
Anthropic[url58] https://www.anthropic.com/news
|
||||
Hugging Face[url62] https://huggingface.co/blog
|
||||
-[url77] https://www.redditinc.com/policies/privacy-policy
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url33] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
r/OpenAI[url72] https://www.reddit.com/r/OpenAI
|
||||
Apple ML[url54] https://www.apple.com/apple-intelligence/
|
||||
Suno AI[url66] https://suno.com/blog/
|
||||
-[url80] https://reddithelp.com/hc/sections/360008917491-Account-Security
|
||||
-[url78] https://www.redditinc.com/policies/user-agreement
|
||||
Amazon AWS[url53] https://aws.amazon.com/ai/
|
||||
I built a quick app that lets you clone your voice and chat with yourself. The AI becomes more like you the more you talk to it - took me about an hour, happy to share code![url37] https://www.reddit.com/r/artificial/comments/1hiujec/i_built_a_quick_app_that_lets_you_clone_your/
|
||||
ARC-AGI has fallen to OpenAI's new model, o3[url35] https://www.reddit.com/r/artificial/comments/1hiq12u/arcagi_has_fallen_to_openais_new_model_o3/
|
||||
Solve complex engineering challenges up to 53X faster with Ansys' multiphysics simulation software. Learn more[url5] https://external-preview.redd.it/3rRln0iVIX-wT0xZbW3PEwBaaAnqFo9eY9B6gKooOa4.jpg?width=640&crop=smart&auto=webp&s=217592e90ae2f0a92d7cfc6f0e43b91cae8e71ed
|
||||
r/ClaudeAI[url73] https://www.reddit.com/r/ClaudeAI
|
||||
r/ChatGPT[url71] https://www.reddit.com/r/ChatGPT
|
||||
Perplexity[url64] https://www.perplexity.ai/hub
|
||||
-[url74] https://www.redditinc.com/policies/user-agreement
|
||||
-[url79] https://www.redditinc.com/policies/privacy-policy
|
||||
Mistral AI[url59] https://mistral.ai/news/
|
||||
************
|
||||
|
||||
raw materials: 3958ab
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 1
|
||||
total analysis time: 1.0662531852722168
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
{'focus': '大模型技术突破与创新', 'content': 'The latest advances in the quest to build machines that can reason, learn, and act intelligently.'}
|
||||
************
|
||||
|
@ -0,0 +1,32 @@
|
||||
{
|
||||
"form_0": {
|
||||
"kw": {
|
||||
"type": "text",
|
||||
"values": [
|
||||
"placeholder=请输入关键词 autocomplete=off onblur=this.value=this.value.trim()"
|
||||
]
|
||||
},
|
||||
"type": {
|
||||
"type": "hidden",
|
||||
"values": [
|
||||
"value=5"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tab": {
|
||||
"input": {
|
||||
"type": "radio",
|
||||
"values": [
|
||||
"id=tab8"
|
||||
]
|
||||
}
|
||||
},
|
||||
"input_2": {
|
||||
"input": {
|
||||
"type": "hidden",
|
||||
"values": [
|
||||
"value={\"appid\":1101,\"reportUrl\":\"https://userlog.bjx.com.cn/report\",\"os\":\"1\",\"ver\":\"100\"} id=txtReportId"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,289 @@
|
||||
{
|
||||
"url0": "https://img.mybjx.net/theme/default/wap/images/share.jpg",
|
||||
"url1": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/logo.png?_=1734790967898",
|
||||
"url2": "https://img01.mybjx.net/webupload/image/20241219/3e0f324b240000e.png",
|
||||
"url3": "https://static.bjx.com.cn/upload/zhuanti/2024/12/10/57003319_1fnfbs60pa81eelh357q1c.jpg",
|
||||
"url4": "https://static.bjx.com.cn/upload/zhuanti/2024/12/18/48535603_y6rg41sobi19xf9nfmo7r.jpg",
|
||||
"url5": "https://static.bjx.com.cn/upload/zhuanti/2024/12/16/51492787_7roao9srj66zcxfmiteg8.jpg",
|
||||
"url6": "https://static.bjx.com.cn/upload/zhuanti/2024/12/9/36011159_ps0tmmp7vk1iw0x3r8oqa.jpg",
|
||||
"url7": "https://static.bjx.com.cn/upload/zhuanti/2024/12/11/42271930_27b2xjjtqv02e1yp68k206.jpg",
|
||||
"url8": "https://static.bjx.com.cn/upload/zhuanti/2024/12/10/57003319_1fnfbs60pa81eelh357q1c.jpg",
|
||||
"url9": "https://static.bjx.com.cn/upload/zhuanti/2024/12/18/48535603_y6rg41sobi19xf9nfmo7r.jpg",
|
||||
"url10": "https://static.bjx.com.cn/company-logo/2018/06/09/2018060916062676_442749.jpg",
|
||||
"url11": "https://static.bjx.com.cn/company-logo/2018/06/09/2018060916051223_458392.jpg",
|
||||
"url12": "https://static.bjx.com.cn/company-logo/2021/01/18/2021011813450536_img897429.jpg",
|
||||
"url13": "https://hrusersidestatic.bjx.com.cn/EnterpriseNew/CompanyLogo/124300/2024110515440275_170987.jpeg",
|
||||
"url14": "https://hrusersidestatic.bjx.com.cn/EnterpriseNew/CompanyLogo/158749/2024111818473333_670131.jpeg",
|
||||
"url15": "https://img01.mybjx.net/webupload/image/20230428/3e02d134500000c.jpg!eduitemthumbnail",
|
||||
"url16": "https://img01.mybjx.net/webupload/image/20220322/3ffa89444400002.png!eduitemthumbnail",
|
||||
"url17": "https://img01.mybjx.net/webupload/image/20220601/3ffbffe3a00000a.jpg!eduitemthumbnail",
|
||||
"url18": "https://img01.mybjx.net/webupload/image/20220728/3ffd2c42dc00002.jpg!eduitemthumbnail",
|
||||
"url19": "https://img01.mybjx.net/webupload/image/20220328/3ffaa922b000008.jpg!eduitemthumbnail",
|
||||
"url20": "https://img01.mybjx.net/webupload/image/20220602/3ffc067a4400002.jpg!eduitemthumbnail",
|
||||
"url21": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_app.png?_=1734790967898",
|
||||
"url22": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_gzh.png?_=1734790967898",
|
||||
"url23": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_xcx.png?_=1734790967898",
|
||||
"url24": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/footer_h5.png?_=1734790967898",
|
||||
"url25": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/logo.png?_=1734790967898",
|
||||
"url26": "https://newsstatic.bjx.com.cn/public/a210726/bjx_mt_10_news/img/chip/footer_bei_ico.png?_=1734790967898",
|
||||
"url27": "https://www.bjx.com.cn/",
|
||||
"url28": "https://huodian.bjx.com.cn/",
|
||||
"url29": "https://fd.bjx.com.cn/",
|
||||
"url30": "https://guangfu.bjx.com.cn/",
|
||||
"url31": "https://shuidian.bjx.com.cn/",
|
||||
"url32": "https://shoudian.bjx.com.cn/",
|
||||
"url33": "https://chuneng.bjx.com.cn/",
|
||||
"url34": "https://qn.bjx.com.cn/",
|
||||
"url35": "https://huanbao.bjx.com.cn/",
|
||||
"url36": "https://xinxihua.bjx.com.cn/",
|
||||
"url37": "http://www.chinasmartgrid.com.cn/",
|
||||
"url38": "https://hedian.bjx.com.cn/",
|
||||
"url39": "https://news.bjx.com.cn/zhuanti/2019zhnyfw/",
|
||||
"url40": "https://energy.bjx.com.cn/",
|
||||
"url41": "https://shupeidian.bjx.com.cn/",
|
||||
"url42": "https://tanguanjia.bjx.com.cn/",
|
||||
"url43": "https://nongdian.bjx.com.cn/",
|
||||
"url44": "https://battery.bjx.com.cn/",
|
||||
"url45": "https://huanbao.bjx.com.cn/",
|
||||
"url46": "https://daqi.bjx.com.cn/",
|
||||
"url47": "https://scl.bjx.com.cn/",
|
||||
"url48": "https://gfcl.bjx.com.cn/",
|
||||
"url49": "https://jn.bjx.com.cn/",
|
||||
"url50": "https://ljfd.bjx.com.cn/",
|
||||
"url51": "https://hjxf.bjx.com.cn/",
|
||||
"url52": "https://hjjc.bjx.com.cn/",
|
||||
"url53": "https://huanwei.bjx.com.cn/",
|
||||
"url54": "https://vocs.bjx.com.cn/",
|
||||
"url55": "https://hr.bjx.com.cn",
|
||||
"url56": "https://dljob.bjx.com.cn",
|
||||
"url57": "https://hdjob.bjx.com.cn",
|
||||
"url58": "https://hbfdjob.bjx.com.cn",
|
||||
"url59": "https://zhnyfwjob.bjx.com.cn",
|
||||
"url60": "https://dlgcjob.bjx.com.cn",
|
||||
"url61": "https://spdjob.bjx.com.cn",
|
||||
"url62": "https://sdjob.bjx.com.cn",
|
||||
"url63": "https://hedjob.bjx.com.cn",
|
||||
"url64": "https://shdjob.bjx.com.cn",
|
||||
"url65": "https://tanjob.bjx.com.cn",
|
||||
"url66": "https://fdjob.bjx.com.cn",
|
||||
"url67": "https://fdjob.bjx.com.cn/industry/flfd/",
|
||||
"url68": "https://fdjob.bjx.com.cn/industry/fdzj/",
|
||||
"url69": "https://fdjob.bjx.com.cn/industry/ypjcl/",
|
||||
"url70": "https://fdjob.bjx.com.cn/industry/fedgc/",
|
||||
"url71": "https://fdjob.bjx.com.cn/industry/fdjjyj/",
|
||||
"url72": "https://fdjob.bjx.com.cn/industry/tttj/",
|
||||
"url73": "https://fdjob.bjx.com.cn/industry/kzxt/",
|
||||
"url74": "https://gfjob.bjx.com.cn",
|
||||
"url75": "https://gfjob.bjx.com.cn/industry/gfdcjzj/",
|
||||
"url76": "https://gfjob.bjx.com.cn/industry/gfdz/",
|
||||
"url77": "https://gfjob.bjx.com.cn/industry/gfnbq/",
|
||||
"url78": "https://gfjob.bjx.com.cn/industry/fbsgf/",
|
||||
"url79": "https://gfjob.bjx.com.cn/industry/gsygf/",
|
||||
"url80": "https://gfjob.bjx.com.cn/industry/hygf/",
|
||||
"url81": "https://gfjob.bjx.com.cn/industry/gfgc/",
|
||||
"url82": "https://gfjob.bjx.com.cn/industry/gfxtlbj/",
|
||||
"url83": "https://gfjob.bjx.com.cn/industry/gfcljsb/",
|
||||
"url84": "https://cnjob.bjx.com.cn",
|
||||
"url85": "https://cnjob.bjx.com.cn/industry/cndc/",
|
||||
"url86": "https://cnjob.bjx.com.cn/industry/cnjs/",
|
||||
"url87": "https://cnjob.bjx.com.cn/industry/cndz/",
|
||||
"url88": "https://cnjob.bjx.com.cn/industry/gsycn/",
|
||||
"url89": "https://cnjob.bjx.com.cn/industry/cngc/",
|
||||
"url90": "https://cnjob.bjx.com.cn/industry/dccl/",
|
||||
"url91": "https://cnjob.bjx.com.cn/industry/xnyqc/",
|
||||
"url92": "https://cnjob.bjx.com.cn/industry/cnyy/",
|
||||
"url93": "https://cnjob.bjx.com.cn/industry/qn/",
|
||||
"url94": "https://dcjob.bjx.com.cn",
|
||||
"url95": "https://dccljob.bjx.com.cn",
|
||||
"url96": "https://dcscjob.bjx.com.cn",
|
||||
"url97": "https://dcyyjob.bjx.com.cn",
|
||||
"url98": "https://dchsjob.bjx.com.cn",
|
||||
"url99": "https://dcjsjob.bjx.com.cn",
|
||||
"url100": "https://hbjob.bjx.com.cn",
|
||||
"url101": "https://scljob.bjx.com.cn",
|
||||
"url102": "https://gfcljob.bjx.com.cn",
|
||||
"url103": "https://dqzljob.bjx.com.cn",
|
||||
"url104": "https://hbfdjob.bjx.com.cn",
|
||||
"url105": "https://jchpjob.bjx.com.cn",
|
||||
"url106": "https://hbgcjob.bjx.com.cn",
|
||||
"url107": "https://hbsbjob.bjx.com.cn",
|
||||
"url108": "https://hjxfjob.bjx.com.cn",
|
||||
"url109": "https://tanjob.bjx.com.cn",
|
||||
"url110": "https://jnjob.bjx.com.cn",
|
||||
"url111": "https://dqjob.bjx.com.cn",
|
||||
"url112": "https://spdjob.bjx.com.cn",
|
||||
"url113": "https://zdhjob.bjx.com.cn",
|
||||
"url114": "https://xxhjob.bjx.com.cn",
|
||||
"url115": "https://gcjob.bjx.com.cn",
|
||||
"url116": "https://dlgcjob.bjx.com.cn",
|
||||
"url117": "https://sjjob.bjx.com.cn",
|
||||
"url118": "https://jljob.bjx.com.cn",
|
||||
"url119": "https://gczjjob.bjx.com.cn",
|
||||
"url120": "https://hbgcjob.bjx.com.cn",
|
||||
"url121": "https://szlqjob.bjx.com.cn",
|
||||
"url122": "https://jzjob.bjx.com.cn",
|
||||
"url123": "https://gdjob.bjx.com.cn",
|
||||
"url124": "https://jdjob.bjx.com.cn",
|
||||
"url125": "https://tv.bjx.com.cn/list/?type=1",
|
||||
"url126": "https://tv.bjx.com.cn/list/?type=2",
|
||||
"url127": "https://tv.bjx.com.cn/list/?type=3",
|
||||
"url128": "https://tv.bjx.com.cn/list/?type=4",
|
||||
"url129": "https://tv.bjx.com.cn/list/?type=5",
|
||||
"url130": "https://tv.bjx.com.cn/list/?type=7",
|
||||
"url131": "https://tv.bjx.com.cn/list/?type=8",
|
||||
"url132": "https://edu.bjx.com.cn/course/0-0-0-0-0-1/",
|
||||
"url133": "https://edu.bjx.com.cn/book/0-0-0-1/",
|
||||
"url134": "https://edu.bjx.com.cn/activity/",
|
||||
"url135": "https://news.bjx.com.cn/zt/app/index.html",
|
||||
"url136": "https://b2b.bjx.com.cn/",
|
||||
"url137": "https://hbshebei.bjx.com.cn/",
|
||||
"url138": "https://club.bjx.com.cn/",
|
||||
"url139": "https://ex.bjx.com.cn/",
|
||||
"url140": "https://huanbao.bjx.com.cn/ex",
|
||||
"url141": "https://guangfu.bjx.com.cn/ex/",
|
||||
"url142": "https://www.bjx.com.cn/zt/",
|
||||
"url143": "https://huanbao.bjx.com.cn/zt/",
|
||||
"url144": "https://news.bjx.com.cn/",
|
||||
"url145": "https://news.bjx.com.cn/",
|
||||
"url146": "https://news.bjx.com.cn/zc/",
|
||||
"url147": "https://news.bjx.com.cn/zb/",
|
||||
"url148": "https://news.bjx.com.cn/xm/",
|
||||
"url149": "https://news.bjx.com.cn/js/",
|
||||
"url150": "https://news.bjx.com.cn/sj/",
|
||||
"url151": "https://news.bjx.com.cn/bg/",
|
||||
"url152": "https://club.bjx.com.cn",
|
||||
"url153": "https://download.bjx.com.cn/",
|
||||
"url154": "https://news.bjx.com.cn/sc/",
|
||||
"url155": "https://news.bjx.com.cn/mq/",
|
||||
"url156": "https://news.bjx.com.cn/dj/",
|
||||
"url157": "https://huanbao.bjx.com.cn/hbrw.shtml",
|
||||
"url158": "https://news.bjx.com.cn/pl/",
|
||||
"url159": "https://news.bjx.com.cn/gj/",
|
||||
"url160": "https://huodian.bjx.com.cn",
|
||||
"url161": "https://fd.bjx.com.cn",
|
||||
"url162": "https://guangfu.bjx.com.cn",
|
||||
"url163": "https://chuneng.bjx.com.cn",
|
||||
"url164": "https://shoudian.bjx.com.cn",
|
||||
"url165": "https://shuidian.bjx.com.cn",
|
||||
"url166": "https://qn.bjx.com.cn",
|
||||
"url167": "https://huanbao.bjx.com.cn",
|
||||
"url168": "http://www.chinasmartgrid.com.cn/",
|
||||
"url169": "https://hedian.bjx.com.cn",
|
||||
"url170": "https://battery.bjx.com.cn",
|
||||
"url171": "https://news.bjx.com.cn/zhuanti/2019zhnyfw/",
|
||||
"url172": "https://shupeidian.bjx.com.cn",
|
||||
"url173": "https://nongdian.bjx.com.cn",
|
||||
"url174": "https://hr.bjx.com.cn/",
|
||||
"url175": "https://edu.bjx.com.cn/",
|
||||
"url176": "https://tv.bjx.com.cn",
|
||||
"url177": "https://b2b.bjx.com.cn/",
|
||||
"url178": "http://www.bjx.com.cn/zt/",
|
||||
"url179": "https://companycenter.bjx.com.cn/Account/Register/",
|
||||
"url180": "https://companycenter.bjx.com.cn/Account/logon/",
|
||||
"url181": "https://news.bjx.com.cn/rankinglist/dianli/",
|
||||
"url182": "https://news.bjx.com.cn/rankinglist/huodian/",
|
||||
"url183": "https://news.bjx.com.cn/rankinglist/fengdian/",
|
||||
"url184": "https://news.bjx.com.cn/rankinglist/tyngf/",
|
||||
"url185": "https://news.bjx.com.cn/rankinglist/shuidian/",
|
||||
"url186": "https://news.bjx.com.cn/rankinglist/hedian/",
|
||||
"url187": "https://news.bjx.com.cn/rankinglist/chuneng/",
|
||||
"url188": "https://news.bjx.com.cn/rankinglist/battery/",
|
||||
"url189": "https://news.bjx.com.cn/rankinglist/shupeidian/",
|
||||
"url190": "https://news.bjx.com.cn/rankinglist/zndw/",
|
||||
"url191": "https://news.bjx.com.cn/rankinglist/shoudian/",
|
||||
"url192": "https://news.bjx.com.cn/html/20241220/1418167.shtml",
|
||||
"url193": "https://news.bjx.com.cn/html/20241220/1418167.shtml",
|
||||
"url194": "https://news.bjx.com.cn/html/20241220/1418171.shtml",
|
||||
"url195": "https://news.bjx.com.cn/html/20241220/1418171.shtml",
|
||||
"url196": "https://news.bjx.com.cn/html/20241220/1418107.shtml",
|
||||
"url197": "https://news.bjx.com.cn/html/20241220/1418107.shtml",
|
||||
"url198": "https://news.bjx.com.cn/html/20241220/1418178.shtml",
|
||||
"url199": "https://news.bjx.com.cn/html/20241220/1418178.shtml",
|
||||
"url200": "https://news.bjx.com.cn/html/20241220/1418085.shtml",
|
||||
"url201": "https://news.bjx.com.cn/html/20241220/1418085.shtml",
|
||||
"url202": "https://news.bjx.com.cn/html/20241220/1418108.shtml",
|
||||
"url203": "https://news.bjx.com.cn/html/20241220/1418108.shtml",
|
||||
"url204": "https://news.bjx.com.cn/html/20241220/1418124.shtml",
|
||||
"url205": "https://news.bjx.com.cn/html/20241220/1418124.shtml",
|
||||
"url206": "https://news.bjx.com.cn/html/20241220/1418153.shtml",
|
||||
"url207": "https://news.bjx.com.cn/html/20241220/1418153.shtml",
|
||||
"url208": "https://news.bjx.com.cn/html/20241220/1418105.shtml",
|
||||
"url209": "https://news.bjx.com.cn/html/20241220/1418105.shtml",
|
||||
"url210": "https://news.bjx.com.cn/html/20241220/1418133.shtml",
|
||||
"url211": "https://news.bjx.com.cn/html/20241220/1418133.shtml",
|
||||
"url212": "https://news.bjx.com.cn/html/20241220/1418113.shtml",
|
||||
"url213": "https://news.bjx.com.cn/html/20241220/1418113.shtml",
|
||||
"url214": "https://news.bjx.com.cn/html/20241220/1418160.shtml",
|
||||
"url215": "https://news.bjx.com.cn/html/20241220/1418160.shtml",
|
||||
"url216": "https://news.bjx.com.cn/html/20241219/1417898.shtml",
|
||||
"url217": "https://news.bjx.com.cn/html/20241219/1417898.shtml",
|
||||
"url218": "https://news.bjx.com.cn/html/20241219/1417980.shtml",
|
||||
"url219": "https://news.bjx.com.cn/html/20241219/1417980.shtml",
|
||||
"url220": "https://news.bjx.com.cn/html/20241219/1417869.shtml",
|
||||
"url221": "https://news.bjx.com.cn/html/20241219/1417869.shtml",
|
||||
"url222": "https://news.bjx.com.cn/html/20241219/1417824.shtml",
|
||||
"url223": "https://news.bjx.com.cn/html/20241219/1417824.shtml",
|
||||
"url224": "https://news.bjx.com.cn/html/20241219/1417829.shtml",
|
||||
"url225": "https://news.bjx.com.cn/html/20241219/1417829.shtml",
|
||||
"url226": "https://news.bjx.com.cn/html/20241219/1417854.shtml",
|
||||
"url227": "https://news.bjx.com.cn/html/20241219/1417854.shtml",
|
||||
"url228": "https://news.bjx.com.cn/html/20241219/1417886.shtml",
|
||||
"url229": "https://news.bjx.com.cn/html/20241219/1417886.shtml",
|
||||
"url230": "https://news.bjx.com.cn/html/20241219/1417961.shtml",
|
||||
"url231": "https://news.bjx.com.cn/html/20241219/1417961.shtml",
|
||||
"url232": "https://pubapinews.bjx.com.cn/Kehuclick?id=22325",
|
||||
"url233": "https://news.bjx.com.cn/html/20241220/1418178.shtml",
|
||||
"url234": "https://news.bjx.com.cn/html/20241220/1418171.shtml",
|
||||
"url235": "https://news.bjx.com.cn/html/20241220/1418167.shtml",
|
||||
"url236": "https://news.bjx.com.cn/html/20241220/1418160.shtml",
|
||||
"url237": "https://news.bjx.com.cn/html/20241220/1418153.shtml",
|
||||
"url238": "https://news.bjx.com.cn/html/20241220/1418133.shtml",
|
||||
"url239": "https://news.bjx.com.cn/html/20241220/1418124.shtml",
|
||||
"url240": "https://news.bjx.com.cn/html/20241220/1418113.shtml",
|
||||
"url241": "https://news.bjx.com.cn/html/20241220/1418108.shtml",
|
||||
"url242": "https://news.bjx.com.cn/html/20241220/1418107.shtml",
|
||||
"url243": "https://hr.bjx.com.cn",
|
||||
"url244": "https://gfjob.bjx.com.cn/specials/101809.html",
|
||||
"url245": "https://dljob.bjx.com.cn/specials/101813.html",
|
||||
"url246": "https://dljob.bjx.com.cn/specials/101812.html",
|
||||
"url247": "https://dljob.bjx.com.cn/specials/101807.html",
|
||||
"url248": "https://dljob.bjx.com.cn/specials/101810.html",
|
||||
"url249": "https://gfjob.bjx.com.cn/specials/101809.html",
|
||||
"url250": "https://dljob.bjx.com.cn/specials/101813.html",
|
||||
"url251": "https://hr.bjx.com.cn/companys/43315/jobs_0_1/",
|
||||
"url252": "https://hr.bjx.com.cn/companys/43315/jobs_0_1/",
|
||||
"url253": "https://hr.bjx.com.cn/companys/43755/jobs_0_1/",
|
||||
"url254": "https://hr.bjx.com.cn/companys/43755/jobs_0_1/",
|
||||
"url255": "https://hr.bjx.com.cn/companys/69431/jobs_0_1/",
|
||||
"url256": "https://hr.bjx.com.cn/companys/69431/jobs_0_1/",
|
||||
"url257": "https://hr.bjx.com.cn/companys/124300/jobs_0_1/",
|
||||
"url258": "https://hr.bjx.com.cn/companys/124300/jobs_0_1/",
|
||||
"url259": "https://hr.bjx.com.cn/companys/158749/jobs_0_1/",
|
||||
"url260": "https://hr.bjx.com.cn/companys/158749/jobs_0_1/",
|
||||
"url261": "https://edu.bjx.com.cn",
|
||||
"url262": "https://edu.bjx.com.cn/s/67109308.html",
|
||||
"url263": "https://edu.bjx.com.cn/s/67109294.html",
|
||||
"url264": "https://edu.bjx.com.cn/s/67109353.html",
|
||||
"url265": "https://edu.bjx.com.cn/s/67109396.html",
|
||||
"url266": "https://edu.bjx.com.cn/s/67109299.html",
|
||||
"url267": "https://edu.bjx.com.cn/s/67109355.html",
|
||||
"url268": "https://tv.bjx.com.cn/",
|
||||
"url269": "https://hr.bjx.com.cn/",
|
||||
"url270": "https://edu.bjx.com.cn/",
|
||||
"url271": "http://www.bjx.com.cn/about/about.html",
|
||||
"url272": "http://www.bjx.com.cn/about/baojia_index.html",
|
||||
"url273": "https://companycenter.bjx.com.cn/common/hybz",
|
||||
"url274": "http://www.bjx.com.cn/about/yxfa.html",
|
||||
"url275": "https://map.bjx.com.cn/",
|
||||
"url276": "http://www.bjx.com.cn/about/about.html?=#s6",
|
||||
"url277": "http://www.bjx.com.cn/about/lxwm.html",
|
||||
"url278": "https://news.bjx.com.cn/",
|
||||
"url279": "http://img.mybjx.net/theme/default/images/common/renzeng/icp1.jpg",
|
||||
"url280": "https://beian.miit.gov.cn/#/Integrated/index",
|
||||
"url281": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502034458",
|
||||
"url282": "https://www.bjx.com.cn/icp.html",
|
||||
"url283": "http://img.mybjx.net/theme/default/images/common/renzeng/gbjmzz.jpg",
|
||||
"url284": "http://img.mybjx.net/theme/default/images/common/renzeng/cbwjy.jpg",
|
||||
"url285": "http://img.mybjx.net/theme/default/images/common/renzeng/hrrlzyxk.jpg",
|
||||
"url286": "http://img.mybjx.net/theme/default/images/common/renzeng/yingyezhizheng.jpg"
|
||||
}
|
@ -0,0 +1,303 @@
|
||||
-北极星jpg[url0]
|
||||
|
||||
新闻
|
||||
电力
|
||||
北极星电力网[url27]
|
||||
火电[url28]
|
||||
风电[url29]
|
||||
光伏[url30]
|
||||
水电[url31]
|
||||
售电[url32]
|
||||
储能[url33]
|
||||
氢能[url34]
|
||||
环保[url35]
|
||||
信息化[url36]
|
||||
智能电网[url37]
|
||||
核电[url38]
|
||||
综合能源服务[url39]
|
||||
能源[url40]
|
||||
输配电[url41]
|
||||
碳管家[url42]
|
||||
农电[url43]
|
||||
电池[url44]
|
||||
环保
|
||||
北极星环保网[url45]
|
||||
大气[url46]
|
||||
水处理[url47]
|
||||
固废[url48]
|
||||
节能[url49]
|
||||
垃圾发电[url50]
|
||||
环境修复[url51]
|
||||
环境监测[url52]
|
||||
环卫[url53]
|
||||
VOCs[url54]
|
||||
招聘
|
||||
北极星招聘[url55]
|
||||
电力[url56]
|
||||
火电[url57]
|
||||
环保发电[url58]
|
||||
综合能源服务[url59]
|
||||
电力工程[url60]
|
||||
输配电[url61]
|
||||
水电[url62]
|
||||
核电[url63]
|
||||
售电[url64]
|
||||
碳管理[url65]
|
||||
风电[url66]
|
||||
风电场投资及运营[url67]
|
||||
风电整机[url68]
|
||||
叶片及材料[url69]
|
||||
风电工程[url70]
|
||||
发电机及元件[url71]
|
||||
塔筒/塔架[url72]
|
||||
控制系统[url73]
|
||||
光伏[url74]
|
||||
光伏电池组件[url75]
|
||||
光伏电站及运维[url76]
|
||||
光伏逆变器[url77]
|
||||
分布式光伏[url78]
|
||||
工商业光伏[url79]
|
||||
户用光伏[url80]
|
||||
光伏系统工程[url81]
|
||||
光伏零部件[url82]
|
||||
光伏原材料及辅料[url83]
|
||||
储能[url84]
|
||||
储能电池[url85]
|
||||
储能系统[url86]
|
||||
储能电站[url87]
|
||||
工商业储能[url88]
|
||||
储能工程[url89]
|
||||
储能材料及零部件[url90]
|
||||
光储充一体化[url91]
|
||||
户用储能[url92]
|
||||
氢能[url93]
|
||||
电池[url94]
|
||||
电池材料[url95]
|
||||
电池生产[url96]
|
||||
电池应用[url97]
|
||||
电池回收[url98]
|
||||
电池技术[url99]
|
||||
环保[url100]
|
||||
水处理[url101]
|
||||
固废处理[url102]
|
||||
大气治理[url103]
|
||||
环保发电[url104]
|
||||
检测环评[url105]
|
||||
环保工程[url106]
|
||||
环保设备[url107]
|
||||
环境修复[url108]
|
||||
碳管理[url109]
|
||||
节能[url110]
|
||||
电气[url111]
|
||||
输配电[url112]
|
||||
自动化[url113]
|
||||
电力信息化[url114]
|
||||
工程[url115]
|
||||
电力工程[url116]
|
||||
工程设计[url117]
|
||||
工程监理[url118]
|
||||
工程造价[url119]
|
||||
环保工程[url120]
|
||||
市政路桥工程[url121]
|
||||
建筑工程[url122]
|
||||
轨道工程[url123]
|
||||
机电工程[url124]
|
||||
直播
|
||||
直播[url125]
|
||||
公开课[url126]
|
||||
空中宣讲[url127]
|
||||
云招聘[url128]
|
||||
星培计划[url129]
|
||||
高端访谈[url130]
|
||||
校企专访[url131]
|
||||
学社
|
||||
课程[url132]
|
||||
图书[url133]
|
||||
线下活动[url134]
|
||||
学社APP[url135]
|
||||
商务通
|
||||
电力商务通[url136]
|
||||
环保设备网[url137]
|
||||
社区
|
||||
北极星社区[url138]
|
||||
会展
|
||||
电力会展网[url139]
|
||||
环保会展网[url140]
|
||||
光伏会展网[url141]
|
||||
专题
|
||||
电力专题[url142]
|
||||
环保专题[url143]
|
||||
-png?_=1734790967898[url1][url144]
|
||||
1. 新闻[url145] 2. 政策[url146] 3. 招投标[url147] 4. 项目[url148] 5. 技术[url149] 6. 数据[url150]报告[url151]社区[url152]下载[url153]市场[url154]名企[url155]独家[url156]人物[url157]评论[url158]国际[url159] 7. 数据[url150] 8. 报告[url151] 9. 社区[url152] 10. 下载[url153] 11. 市场[url154] 12. 名企[url155] 13. 独家[url156] 14. 人物[url157] 15. 评论[url158] 16. 国际[url159] 17. 火电[url160] 18. 风电[url161] 19. 光伏[url162] 20. 储能[url163] 21. 售电[url164] 22. 水电[url165]氢能[url166]环保[url167]智能电网[url168]核电[url169]电池[url170]综合能源服务[url171]输配电[url172]农电[url173] 23. 水电[url165] 24. 氢能[url166] 25. 环保[url167] 26. 智能电网[url168] 27. 核电[url169] 28. 电池[url170] 29. 综合能源服务[url171] 30. 输配电[url172] 31. 农电[url173] 32. 招聘[url174] 33. 学社[url175] 34. 直播[url176] 35. 商务通[url177] 36. 专题[url178]
|
||||
|
||||
搜索历史
|
||||
清空
|
||||
|
||||
|
||||
1. 企业注册[url179] 2. 企业登录[url180] 3. 个人注册 4. 个人登录
|
||||
|
||||
北极星氢能排行榜
|
||||
为您提供更方便,更快捷的优质内容查找途径
|
||||
1. 电力总榜[url181] 2. 火力发电[url182] 3. 风力发电[url183] 4. 太阳能光伏[url184] 5. 水力发电[url185] 6. 核电[url186] 7. 储能[url187] 8. 电池[url188] 9. 输配电[url189] 10. 氢能 11. 智能电网[url190] 12. 售电[url191]
|
||||
|
||||
今日
|
||||
本周
|
||||
本月
|
||||
1
|
||||
山东省新能源产业科技创新行动计划:实施氢储生物质能创新增效行动[url192]
|
||||
来源:山东省科技厅
|
||||
昨天
|
||||
北极星氢能网获悉,12月19日,山东省科技厅等11部门发布关于印发《山东省新能源产业科技创新行动计划(2025—2027年)》的通知,文件指出:二、重点任务(二)实施氢储生物质能创新增效行动1.氢能技术。研发高效率、长寿命电解水制氢装置及关键材料,突破海水制氢、副产氢规模化纯化技术,以及高压氢气[url193]
|
||||
2
|
||||
政策解读 | 《山东省新能源产业科技创新行动计划(2025—2027年)》[url194]
|
||||
来源:山东省科技厅
|
||||
昨天
|
||||
北极星氢能网获悉,近日,山东省科技厅等11部门印发了《山东省新能源产业科技创新行动计划(2025—2027年)》(以下简称《新能源产业科技创新行动计划》),现将有关情况解读如下。一、起草背景和过程2024年2月,习近平总书记在中央政治局第十二次集体学习时指出,我国能源发展仍面临需求压力巨大、供[url195]
|
||||
3
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url196]
|
||||
来源:北极星氢能网
|
||||
昨天
|
||||
北极星氢能网获悉,12月18日,总投资110亿元的乌审旗风光融合一体化项目和绿色降碳升级改造项目开工。中天合创结合配套设施建设绿色降碳升级改造项目和风光融合绿氢化工示范项目,主要建设内容有绿氢/绿氧耦合以及新建50万Nm3/(标准立方米)天LNG装置、CO深冷分离、30万吨/年醋酸装置、20万吨/年醋酸[url197]
|
||||
04
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url198]
|
||||
来源:中国招标投标公共服务平台
|
||||
昨天
|
||||
北极星氢能网获悉,12月17日,新疆俊瑞巴里坤县新能源规模化制绿氢项目设计采购施工一体化总承包中标候选人公示。中标候选人第1名为中铁二十二局集团第五工程有限公司,中标候选人第2名为中铁十一局集团第五工程有限公司,中标候选人第3名为中化二建集团有限公司。[url199]
|
||||
05
|
||||
制氢56000标方/时!中核风储制氢制氨项目获批[url200]
|
||||
来源:北极星氢能网
|
||||
昨天
|
||||
近日。内蒙古投资项目在线审批办事大厅发布,兴安盟汇科能源有限公司提交的中核科右前旗风储制氢制氨一体化示范项目-制氢项目,符合产业政策和市场准入标准,准予备案。建设地点:兴安盟--科尔沁右翼前旗--兴安盟经济技术开发区总投资:120000万元,其中自有资金:36000万元,申请银行贷款:84000万元[url201]
|
||||
06
|
||||
知名船用氢燃料电池企业申请破产![url202]
|
||||
来源:北极星氢能网综合
|
||||
昨天
|
||||
北极星氢能网获悉,近日,挪威知名清洁技术公司Teco2030已申请破产,该公司曾被视为船用燃料电池应用的先驱和领导者。作为一家新兴能源技术公司,TECO2030曾在资本市场上备受瞩目。TECO2030由TECO海运集团于2019年创立,并于2021年从总部分拆,成为了一家独立公司。主营业务是为航运和重工业提供零排放[url203]
|
||||
07
|
||||
攀枝花深挖氢能资源,与东方电气会谈![url204]
|
||||
来源:北极星氢能网
|
||||
昨天
|
||||
12月19日,攀枝花市委书记吴群刚,市委副书记、市长范继跃会见了东方电气集团党组书记、董事长俞培根一行,就进一步深化互利共赢合作进行了深入交流。东方电气集团党组成员、副总经理李建华,办公室主任刘兆川,产业发展部部长黄颉;东方锅炉党委副书记、总经理聂立参加。会见中,俞培根代表东方电气集[url205]
|
||||
08
|
||||
燕山石化成为华北最大燃料电池氢供应基地![url206]
|
||||
来源:中国石化
|
||||
昨天
|
||||
12月18日,燕山石化1万标准立方米/小时氢气提纯设施完善项目投产。至此,燕山石化燃料电池氢总产能超过8000吨/年,可为京津冀地区提供24吨/天的燃料电池汽车用氢,成为华北地区最大燃料电池氢供应基地,对中国石化打造中国第一氢能公司、助力北京地区氢能源产业发展具有积极意义。燕山石化氢气提纯设施[url207]
|
||||
09
|
||||
俊瑞集团与双良集团签署战略合作协议![url208]
|
||||
来源:俊瑞氢能集团
|
||||
昨天
|
||||
近日,俊瑞绿氢能源(集团)有限公司(以下简称“俊瑞集团”)与双良集团有限公司(以下简称“双良集团”)在乌鲁木齐举行座谈交流会并签署《战略合作协议》。俊瑞集团党支部书记刘炜、副总经理王战海、双良集团执行总裁马福林、战略发展部副总经理赵云等领导出席活动。本次活动由俊瑞集团副总经理张璐[url209]
|
||||
10
|
||||
云南氢能及储能产业投资合作会举行![url210]
|
||||
来源:北极星氢能网
|
||||
昨天
|
||||
12月19日,云南省举办投资云南·重点领域投资合作专题推介系列活动,持续加大引资稳资力度,推动云南优势资源与部分上市公司、独角兽企业、专精特新“小巨人”等优质企业深度对接,促成一批新的产业投资合作项目,为云南经济高质量发展注入新动力。在昆明举行的投资云南·氢能及储能投资合作专题推介会[url211]
|
||||
11
|
||||
广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标![url212]
|
||||
来源:中国招标投标公共服务平台
|
||||
昨天
|
||||
近日,广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标,项目资金为624.94278万元,招标人为云浮市佛云新能源交通投资发展有限公司。[url213]
|
||||
12
|
||||
“绿氢”赋能零碳城市建设[url214]
|
||||
来源:张掖市人民政府
|
||||
昨天
|
||||
北极星氢能网获悉,近年来,张掖市立足产业结构特征及能源资源禀赋,聚焦甘肃省“绿氢生产及综合利用先行示范区”建设,瞄准高端、智能、绿色方向,将氢能产业列为全市重点发展方向之一,从项目建设、场景打造、政策支持等方面重点发力,持续引导氢能产业有序发展,助力全市生态产品价值向产业领域延伸[url215]
|
||||
13
|
||||
年产70万吨!全球单套生产规模最大的绿色甲醇项目开工![url216]
|
||||
来源:北极星氢能网
|
||||
前天
|
||||
近日,元鳇能源年产70万吨绿色甲醇示范项目开工奠基举行。元鳇能源年产70万吨绿色甲醇示范项目,建设周期为18到24个月,总投资约为25亿元。项目采用国际前沿、国内顶尖的创新工艺,是全球单套生产规模最大的绿色甲醇项目、全国首个生物质电甲醇项目,上联生物质种植、沙漠化治理等根基产业,下合航运减[url217]
|
||||
14
|
||||
华电科工新能源离网制氢技术为能源转型开辟新路径[url218]
|
||||
来源:北极星氢能网
|
||||
前天
|
||||
近年来,以风电、光伏为代表的新能源在我国电力系统中的占比不断提高,由于风光电的波动性、间歇性、随机性特点,将进一步加大消纳难度,同时也给电网带来了较大的输送压力和安全性挑战。氢能作为长周期储能的有效介质,在消纳过剩的新能源电力上展现出了巨大的潜力,离网制氢可降低风光发电对电网冲击[url219]
|
||||
15
|
||||
5套电解水制氢设备招标![url220]
|
||||
来源:中国招标投标公共服务平台
|
||||
前天
|
||||
12月19日,陕西氢能产业发展有限公司电解水制氢技术示范关键设备采购项目招标,项目规模:电解水制氢关键技术设备(电解槽系统)的整体设计、采购、安装、调试:包括1000Nm3/h碱性电解槽及气液处理系统3套,500Nm3/hPEM电解槽及PEM成套系统2套。[url221]
|
||||
16
|
||||
18.61亿!1GW绿电制氢、制甲醇项目相关中标结果公示[url222]
|
||||
来源:北极星氢能网
|
||||
前天
|
||||
12月17日,山丹县1GW绿电制氢、制甲醇装备制造产业一体化及基础设施配套项目拟中标结果公示。信息显示:第一中标候选人为中建桥梁有限公司,第二中标候选人为中建六局第八建设有限公司,第三中标候选人为世扬建设集团有限公司。中建桥梁有限公司为拟中标人,中标金额18.61亿元。项目业主为华氢(甘肃)[url223]
|
||||
17
|
||||
5亿制氢装备项目落地陕西西咸新区![url224]
|
||||
来源:北极星氢能网
|
||||
前天
|
||||
12月18日,西咸新区举行2024年四季度重点项目集中签约暨开工竣工活动。项目共计151个,总金额689.39亿元,涉及先进制造业、服务业、民生保障和基础配套等领域。泾河新城多个项目参与其中。值得一提的是,兴燃科技总部及制氢装备研发生产项目,总投资5亿元。兴燃科技将总部落地泾河新城,并建设PEM电解[url225]
|
||||
18
|
||||
中国能建采购电解槽中标候选人公示![url226]
|
||||
来源:中国能建
|
||||
前天
|
||||
12月18日,中国能建发布20Nm3/h质子交换膜(PEM)电解槽试验装置应用示范项目制氢集成化撬装设备采购中标候选人公示,中标候选人基本情况如下:第一中标候选人:鹭岛氢能(厦门)科技有限公司,投标报价2290000.00元第二中标候选人:四川亚联氢能科技股份有限公司,投标报价2960000.00元第三中标候选人[url227]
|
||||
19
|
||||
6亿元氢能无人机出口订单签订![url228]
|
||||
来源:江南新兴产业集中区
|
||||
前天
|
||||
12月18日,协氢新能源科技有限公司与上海氢洋科技有限公司签订1000台百公斤级出口农业用氢能无人机合作协议。这笔出口大订单总价值6亿元,将由协氢新能源池州生产基地合作生产。此次订单中的H100氢能植保无人机,搭载高性能植保专用飞控与高效离心喷头,支持多种智能喷洒模式,续航久、载重强、耐低温[url229]
|
||||
20
|
||||
英国将建立氢能发电补贴机制[url230]
|
||||
来源:北极星氢能网
|
||||
前天
|
||||
北极星氢能网获悉,近日,英国政府承诺,将为氢在发电中的应用提供支持机制,并建立相关的商业模式,以刺激私人投资。为了降低氢发电(H2P)投资和支持部署的风险,英国能源安全和净零部门(DESNZ)表示,将引入基于可调度电力协议(DPA)框架的商业模式。英国政府表示,通过H2P商业模式,为H2P提供定[url231]
|
||||
-png[url2][url232]
|
||||
最新热点
|
||||
1. 新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url233] 2. 政策解读 | 《山东省新能源产业科技创新行动计划(2025—2027年)》[url234] 3. 山东省新能源产业科技创新行动计划:实施氢储生物质能创新增效行动[url235] 4. “绿氢”赋能零碳城市建设[url236] 5. 燕山石化成为华北最大燃料电池氢供应基地![url237] 6. 云南氢能及储能产业投资合作会举行![url238] 7. 攀枝花深挖氢能资源,与东方电气会谈![url239] 8. 广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标![url240] 9. 知名船用氢燃料电池企业申请破产![url241] 10. 绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url242]
|
||||
|
||||
招聘更多>[url243]
|
||||
-优质企业专场jpg[url3]告别漫长等待!这些企业处理简历速度快极了[url244]
|
||||
-秋招 补录 应届生 校招 上市公司 高薪jpg[url4]25届秋招第二批次补录岗位首发[url245]
|
||||
-校招 急招 急聘 应届生 25届 实习jpg[url5]12月校招急聘专场,更快找到offer[url246]
|
||||
-国企 校招 应届生 招聘 电力招聘 央企jpg[url6]12月央/国企最新校招专场[url247]
|
||||
-实习 国企实习 应届生 校招jpg[url7]应届生冬季实习专场[url248]
|
||||
-优质企业专场jpg[url8]告别漫长等待!这些企业处理简历速度快极了[url249]
|
||||
-秋招 补录 应届生 校招 上市公司 高薪jpg[url9]25届秋招第二批次补录岗位首发[url250]
|
||||
1. -jpg[url10][url251]天津蓝巢电力检修有限公司在招应届毕业生、热控检修工等324个职位[url252]交通补助 | 带薪年假 | 定期体检 2. -jpg[url11][url253]华润电力京津冀新能源公司在招建设项目电气管理岗、法务管理岗等6个职位[url254]交通补助 | 通讯津贴 | 定期体检 3. -jpg[url12][url255]中节能太阳能股份有限公司华南区在招运维管理中心副主任、人力专员等13个职位[url256]绩效奖金 | 带薪年假 | 通讯津贴 4. -jpeg[url13][url257]江苏大孚集成装备科技有限公司在招采购专员(电气设备)、储能海外销售等19个职位[url258]绩效奖金 | 带薪年假 | 定期体检 5. -jpeg[url14][url259]北京美盛博远工程咨询有限公司在招钢厂建设合约经理、钢厂建设项目经理等11个职位[url260]定期体检 | 尊重人才 | 发展空间大
|
||||
|
||||
学社更多>[url261]
|
||||
1. -集中式光伏项目全流程支持性文件概述jpg!eduitemthumbnail[url15]课程集中式光伏项目全流程支持性文件概述[url262] 2. -储能电站安全运维管理方案png!eduitemthumbnail[url16]课程储能电站安全运维管理方案[url263] 3. -锂离子电池储能中的安全问题及应对技术(限时免费)jpg!eduitemthumbnail[url17]课程锂离子电池储能中的安全问题及应对技术(限时免费)[url264] 4. -光伏电站股权收购的流程和风险分析jpg!eduitemthumbnail[url18]课程光伏电站股权收购的流程和风险分析[url265] 5. -《零碳生态&绿色未来》系列公益公开课jpg!eduitemthumbnail[url19]课程《零碳生态&绿色未来》系列公益公开课[url266] 6. -分布式光伏电站建设“避坑指南”jpg!eduitemthumbnail[url20]课程分布式光伏电站建设“避坑指南”[url267]
|
||||
|
||||
便捷入口
|
||||
在线直播[url268]
|
||||
招聘服务[url269]
|
||||
北极星学社[url270]
|
||||
关于我们
|
||||
关于北极星[url271]
|
||||
广告服务[url272]
|
||||
会员服务[url273]
|
||||
营销方案[url274]
|
||||
网站地图[url275]
|
||||
成功案例[url276]
|
||||
联系我们[url277]
|
||||
网站运营
|
||||
北京火山动力网络技术有限公司
|
||||
北京市朝阳区世通国际大厦C座12层
|
||||
1. -png?_=1734790967898[url21] 2. -png?_=1734790967898[url22] 3. -png?_=1734790967898[url23] 4. -png?_=1734790967898[url24]
|
||||
|
||||
-北极星电力新闻网png?_=1734790967898[url25][url278]
|
||||
广告合作:
|
||||
崔女士 18911066791
|
||||
陈女士 17701031159
|
||||
合作投稿:
|
||||
陈女士 13693626116
|
||||
会展合作:
|
||||
齐女士 13381061157
|
||||
会员咨询:
|
||||
李先生 17718308761
|
||||
法务邮箱:fw@bjxmail.com
|
||||
京ICP证080169号[url279]
|
||||
京ICP备09003304号-2[url280]
|
||||
-png?_=1734790967898[url26]京公网安备11010502034458号[url281]
|
||||
电子公告服务专项备案[url282]
|
||||
广播电视节目制作经营许可证 (京) 字第13229号[url283]
|
||||
出版物经营许可证新出发京批字第直200384号[url284]
|
||||
人力资源服务许可证1101052014340号[url285]
|
||||
Copyright © 2024 Bjx.com.cn All Rights Reserved.
|
||||
北京火山动力网络技术有限公司[url286]
|
||||
版权所有
|
||||
|
||||
|
||||
|
@ -0,0 +1,7 @@
|
||||
content_judge: 6528
|
||||
special_url_count: 207
|
||||
arcile_or_list_judge: 0.03170955882352941
|
||||
************
|
||||
|
||||
raw materials: 407948
|
||||
|
@ -0,0 +1,136 @@
|
||||
focus statement:
|
||||
#新获批的氢能项目
|
||||
#新投产的氢能项目
|
||||
|
||||
|
||||
raw materials: 407948
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 0
|
||||
total results: 17
|
||||
total analysis time: 63.98701071739197
|
||||
|
||||
author and publish time(not formated): {'source': '北极星电力网', 'publish_date': '2024-01-01'}
|
||||
infos(not formated):
|
||||
近日,广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标,项目资金为624.94278万元,招标人为云浮市佛云新能源交通投资发展有限公司。[url213] https://news.bjx.com.cn/html/20241220/1418113.shtml
|
||||
广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标![url212] https://news.bjx.com.cn/html/20241220/1418113.shtml
|
||||
氢能[url34] https://qn.bjx.com.cn/
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url196] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
5亿制氢装备项目落地陕西西咸新区![url224] https://news.bjx.com.cn/html/20241219/1417829.shtml
|
||||
中国能建采购电解槽中标候选人公示![url226] https://news.bjx.com.cn/html/20241219/1417854.shtml
|
||||
12月19日,陕西氢能产业发展有限公司电解水制氢技术示范关键设备采购项目招标,项目规模:电解水制氢关键技术设备(电解槽系统)的整体设计、采购、安装、调试:包括1000Nm3/h碱性电解槽及气液处理系统3套,500Nm3/hPEM电解槽及PEM成套系统2套。[url221] https://news.bjx.com.cn/html/20241219/1417869.shtml
|
||||
6亿元氢能无人机出口订单签订![url228] https://news.bjx.com.cn/html/20241219/1417886.shtml
|
||||
18.61亿!1GW绿电制氢、制甲醇项目相关中标结果公示[url222] https://news.bjx.com.cn/html/20241219/1417824.shtml
|
||||
近日,元鳇能源年产70万吨绿色甲醇示范项目开工奠基举行。元鳇能源年产70万吨绿色甲醇示范项目,建设周期为18到24个月,总投资约为25亿元。项目采用国际前沿、国内顶尖的创新工艺,是全球单套生产规模最大的绿色甲醇项目、全国首个生物质电甲醇项目,上联生物质种植、沙漠化治理等根基产业,下合航运减[url217] https://news.bjx.com.cn/html/20241219/1417898.shtml
|
||||
制氢56000标方/时!中核风储制氢制氨项目获批[url200] https://news.bjx.com.cn/html/20241220/1418085.shtml
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url233] https://news.bjx.com.cn/html/20241220/1418178.shtml
|
||||
氢能[url93] https://cnjob.bjx.com.cn/industry/qn/
|
||||
山东省新能源产业科技创新行动计划:实施氢储生物质能创新增效行动[url192] https://news.bjx.com.cn/html/20241220/1418167.shtml
|
||||
燕山石化成为华北最大燃料电池氢供应基地![url206] https://news.bjx.com.cn/html/20241220/1418153.shtml
|
||||
12月19日,云南省举办投资云南·重点领域投资合作专题推介系列活动,持续加大引资稳资力度,推动云南优势资源与部分上市公司、独角兽企业、专精特新“小巨人”等优质企业深度对接,促成一批新的产业投资合作项目,为云南经济高质量发展注入新动力。在昆明举行的投资云南·氢能及储能投资合作专题推介会[url211] https://news.bjx.com.cn/html/20241220/1418133.shtml
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url242] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 1
|
||||
total analysis time: 12.876988887786865
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
燕山石化1万标准立方米/小时氢气提纯设施完善项目投产。至此,燕山石化燃料电池氢总产能超过8000吨/年,可为京津冀地区提供24吨/天的燃料电池汽车用氢,成为华北地区最大燃料电池氢供应基地,对中国石化打造中国第一氢能公司、助力北京地区氢能源产业发展具有积极意义。燕山石化氢气提纯设施[url207] https://news.bjx.com.cn/html/20241220/1418153.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 8
|
||||
total results: 13
|
||||
total analysis time: 7.839662790298462
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url196] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
5亿制氢装备项目落地陕西西咸新区![url224] https://news.bjx.com.cn/html/20241219/1417829.shtml
|
||||
中国能建采购电解槽中标候选人公示![url226] https://news.bjx.com.cn/html/20241219/1417854.shtml
|
||||
年产70万吨!全球单套生产规模最大的绿色甲醇项目开工![url216] https://news.bjx.com.cn/html/20241219/1417898.shtml
|
||||
5套电解水制氢设备招标![url220] https://news.bjx.com.cn/html/20241219/1417869.shtml
|
||||
6亿元氢能无人机出口订单签订![url228] https://news.bjx.com.cn/html/20241219/1417886.shtml
|
||||
18.61亿!1GW绿电制氢、制甲醇项目相关中标结果公示[url222] https://news.bjx.com.cn/html/20241219/1417824.shtml
|
||||
制氢56000标方/时!中核风储制氢制氨项目获批[url200] https://news.bjx.com.cn/html/20241220/1418085.shtml
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url233] https://news.bjx.com.cn/html/20241220/1418178.shtml
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url198] https://news.bjx.com.cn/html/20241220/1418178.shtml
|
||||
燕山石化成为华北最大燃料电池氢供应基地![url206] https://news.bjx.com.cn/html/20241220/1418153.shtml
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url242] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标![url212] https://news.bjx.com.cn/html/20241220/1418113.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 10
|
||||
total results: 13
|
||||
total analysis time: 13.586381196975708
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
近日,广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标,项目资金为624.94278万元,招标人为云浮市佛云新能源交通投资发展有限公司。[url213] https://news.bjx.com.cn/html/20241220/1418113.shtml
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url196] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
5亿制氢装备项目落地陕西西咸新区![url224] https://news.bjx.com.cn/html/20241219/1417829.shtml
|
||||
年产70万吨!全球单套生产规模最大的绿色甲醇项目开工![url216] https://news.bjx.com.cn/html/20241219/1417898.shtml
|
||||
12月19日,陕西氢能产业发展有限公司电解水制氢技术示范关键设备采购项目招标,项目规模:电解水制氢关键技术设备(电解槽系统)的整体设计、采购、安装、调试:包括1000Nm3/h碱性电解槽及气液处理系统3套,500Nm3/hPEM电解槽及PEM成套系统2套。[url221] https://news.bjx.com.cn/html/20241219/1417869.shtml
|
||||
5套电解水制氢设备招标![url220] https://news.bjx.com.cn/html/20241219/1417869.shtml
|
||||
18.61亿!1GW绿电制氢、制甲醇项目相关中标结果公示[url222] https://news.bjx.com.cn/html/20241219/1417824.shtml
|
||||
近日,元鳇能源年产70万吨绿色甲醇示范项目开工奠基举行。元鳇能源年产70万吨绿色甲醇示范项目,建设周期为18到24个月,总投资约为25亿元。项目采用国际前沿、国内顶尖的创新工艺,是全球单套生产规模最大的绿色甲醇项目、全国首个生物质电甲醇项目,上联生物质种植、沙漠化治理等根基产业,下合航运减[url217] https://news.bjx.com.cn/html/20241219/1417898.shtml
|
||||
制氢56000标方/时!中核风储制氢制氨项目获批[url200] https://news.bjx.com.cn/html/20241220/1418085.shtml
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url198] https://news.bjx.com.cn/html/20241220/1418178.shtml
|
||||
燕山石化成为华北最大燃料电池氢供应基地![url206] https://news.bjx.com.cn/html/20241220/1418153.shtml
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url242] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标![url212] https://news.bjx.com.cn/html/20241220/1418113.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 0
|
||||
total results: 20
|
||||
total analysis time: 56.08279585838318
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
氢能[url34] https://qn.bjx.com.cn/
|
||||
5亿制氢装备项目落地陕西西咸新区![url224] https://news.bjx.com.cn/html/20241219/1417829.shtml
|
||||
元鳇能源年产70万吨绿色甲醇示范项目开工奠基举行。元鳇能源年产70万吨绿色甲醇示范项目,建设周期为18到24个月,总投资约为25亿元。项目采用国际前沿、国内顶尖的创新工艺,是全球单套生产规模最大的绿色甲醇项目、全国首个生物质电甲醇项目,上联生物质种植、沙漠化治理等根基产业,下合航运减排等目标。[url216] https://news.bjx.com.cn/html/20241219/1417898.shtml
|
||||
6亿元氢能无人机出口订单签订![url228] https://news.bjx.com.cn/html/20241219/1417886.shtml
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url198] https://news.bjx.com.cn/html/20241220/1418178.shtml
|
||||
华电科工新能源离网制氢技术为能源转型开辟新路径[url218] https://news.bjx.com.cn/html/20241219/1417980.shtml
|
||||
12月19日,云南省举办投资云南·重点领域投资合作专题推介系列活动,持续加大引资稳资力度,推动云南优势资源与部分上市公司、独角兽企业、专精特新“小巨人”等优质企业深度对接,促成一批新的产业投资合作项目,为云南经济高质量发展注入新动力。在昆明举行的投资云南·氢能及储能投资合作专题推介会[url211] https://news.bjx.com.cn/html/20241220/1418133.shtml
|
||||
陕西氢能产业发展有限公司电解水制氢技术示范关键设备采购项目招标,项目规模:电解水制氢关键技术设备(电解槽系统)的整体设计、采购、安装、调试:包括1000Nm3/h碱性电解槽及气液处理系统3套,500Nm3/hPEM电解槽及PEM成套系统2套。[url220] https://news.bjx.com.cn/html/20241219/1417869.shtml
|
||||
英国将建立氢能发电补贴机制[url230] https://news.bjx.com.cn/html/20241219/1417961.shtml
|
||||
云南氢能及储能产业投资合作会举行![url210] https://news.bjx.com.cn/html/20241220/1418133.shtml
|
||||
燕山石化成为华北最大燃料电池氢供应基地![url206] https://news.bjx.com.cn/html/20241220/1418153.shtml
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url242] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
中核风储制氢制氨项目获批[url200] https://news.bjx.com.cn/html/20241220/1418085.shtml
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url196] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
中国能建采购电解槽中标候选人公示![url226] https://news.bjx.com.cn/html/20241219/1417854.shtml
|
||||
广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标![url212] https://news.bjx.com.cn/html/20241220/1418113.shtml
|
||||
北极星氢能网获悉,近年来,张掖市立足产业结构特征及能源资源禀赋,聚焦甘肃省“绿氢生产及综合利用先行示范区”建设,瞄准高端、智能、绿色方向,将氢能产业列为全市重点发展方向之一,从项目建设、场景打造、政策支持等方面重点发力,持续引导氢能产业有序发展,助力全市生态产品价值向产业领域延伸[url215] https://news.bjx.com.cn/html/20241220/1418160.shtml
|
||||
18.61亿!1GW绿电制氢、制甲醇项目相关中标结果公示[url222] https://news.bjx.com.cn/html/20241219/1417824.shtml
|
||||
氢能[url93] https://cnjob.bjx.com.cn/industry/qn/
|
||||
山东省新能源产业科技创新行动计划:实施氢储生物质能创新增效行动[url192] https://news.bjx.com.cn/html/20241220/1418167.shtml
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 4
|
||||
total results: 12
|
||||
total analysis time: 8.750140905380249
|
||||
|
||||
author and publish time(not formated): {'source': '北极星电力网', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url196] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
广东云浮2025年氢能源公交示范线路委托经营服务项目公开招标![url212] https://news.bjx.com.cn/html/20241220/1418113.shtml
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url198] https://news.bjx.com.cn/html/20241220/1418178.shtml
|
||||
12月19日,云南省举办投资云南·重点领域投资合作专题推介系列活动,持续加大引资稳资力度,推动云南优势资源与部分上市公司、独角兽企业、专精特新“小巨人”等优质企业深度对接,促成一批新的产业投资合作项目,为云南经济高质量发展注入新动力。在昆明举行的投资云南·氢能及储能投资合作专题推介会[url211] https://news.bjx.com.cn/html/20241220/1418133.shtml
|
||||
绿氢3万吨/年!总投资110亿!内蒙古2个重大项目开工[url242] https://news.bjx.com.cn/html/20241220/1418107.shtml
|
||||
5亿制氢装备项目落地陕西西咸新区![url224] https://news.bjx.com.cn/html/20241219/1417829.shtml
|
||||
政策解读 | 《山东省新能源产业科技创新行动计划(2025—2027年)》[url194] https://news.bjx.com.cn/html/20241220/1418171.shtml
|
||||
制氢56000标方/时!中核风储制氢制氨项目获批[url200] https://news.bjx.com.cn/html/20241220/1418085.shtml
|
||||
山东省新能源产业科技创新行动计划:实施氢储生物质能创新增效行动[url192] https://news.bjx.com.cn/html/20241220/1418167.shtml
|
||||
氢能[url93] https://cnjob.bjx.com.cn/industry/qn/
|
||||
新疆俊瑞巴里坤县新能源规模化制绿氢项目EPC中标候选人公示[url233] https://news.bjx.com.cn/html/20241220/1418178.shtml
|
||||
1GW绿电制氢、制甲醇项目相关中标结果公示[url222] https://news.bjx.com.cn/html/20241219/1417824.shtml
|
||||
************
|
@ -1,123 +0,0 @@
|
||||
{
|
||||
"Log In": "https://www.reddit.com/login/",
|
||||
"Advertise on Reddit": "https://accounts.reddit.com/adsregister?utm_source=web3x_consumer&utm_name=user_menu_cta",
|
||||
"Shop Collectible Avatars": "https://www.reddit.com/avatar/shop",
|
||||
"Feed": "https://www.reddit.com/r/artificial",
|
||||
"About": "https://www.reddit.com/r/artificial/about/",
|
||||
"Hot": "https://www.reddit.com/r/artificial/hot/",
|
||||
"New": "https://www.reddit.com/r/artificial/new/",
|
||||
"Top": "https://www.reddit.com/r/artificial/top/",
|
||||
"Rising": "https://www.reddit.com/r/artificial/rising/",
|
||||
"Card": "https://www.reddit.com?feedViewType=cardView",
|
||||
"Compact": "https://www.reddit.com?feedViewType=compactView",
|
||||
"Llama 3.3 better than 4o, o1": "https://www.reddit.com/r/artificial/comments/1hg3xsw/llama_33_better_than_4o_o1/",
|
||||
"u/socialmeai": "https://www.reddit.com/user/socialmeai/",
|
||||
"Discussion": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22Discussion%22",
|
||||
"u/HoodyPrivacy": "https://www.reddit.com/user/HoodyPrivacy/",
|
||||
"o1 scored in the top 1%-2% of participants in Putnam, one of the world's hardest math exams": "https://www.reddit.com/r/artificial/comments/1hfyosi/o1_scored_in_the_top_12_of_participants_in_putnam/",
|
||||
"u/MetaKnowing": "https://www.reddit.com/user/MetaKnowing/",
|
||||
"News": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22News%22",
|
||||
"https://x.com/Academisfit/status/1868529612554420489": "https://x.com/Academisfit/status/1868529612554420489",
|
||||
"AI space blog": "https://www.reddit.com/r/artificial/comments/1hfzusc/ai_space_blog/",
|
||||
"u/D3O2": "https://www.reddit.com/user/D3O2/",
|
||||
"Media": "https://www.reddit.com/r/artificial/?f=flair_name%3A%22Media%22",
|
||||
"Rank by size": "https://www.reddit.com/best/communities/4/#t5_2qhfb/",
|
||||
"Click here for the full rule, it is also located in the Wiki": "https://www.reddit.com/r/artificial/wiki/guidelines/selfpromo/",
|
||||
"AutoMod": "https://www.reddit.com/wiki/automoderator/",
|
||||
"Trending AI Subreddits and Posts": "https://www.reddit.com/t/artificial_intelligence_and_machine_learning/",
|
||||
"Fortune 50 AI List 2024": "https://fortune.com/ranking/ai-innovators/2024/",
|
||||
"Time 100 AI List 2024": "https://time.com/collection/time100-ai-2024/",
|
||||
"Forbes AI 50 List 2024": "https://www.forbes.com/lists/ai50/",
|
||||
"OpenAI": "https://openai.com/news",
|
||||
"Meta AI": "https://ai.meta.com/blog/?page=1",
|
||||
"Google AI": "https://blog.google/technology/ai/",
|
||||
"Microsoft AI": "https://news.microsoft.com/source/topics/ai/",
|
||||
"IBM AI": "https://research.ibm.com/artificial-intelligence",
|
||||
"Amazon AWS": "https://aws.amazon.com/ai/",
|
||||
"Apple ML": "https://www.apple.com/apple-intelligence/",
|
||||
"NVIDIA DL": "https://blogs.nvidia.com/blog/category/deep-learning/",
|
||||
"Character.AI": "https://blog.character.ai/",
|
||||
"Stability AI": "https://stability.ai/news",
|
||||
"Anthropic": "https://www.anthropic.com/news",
|
||||
"Mistral AI": "https://mistral.ai/news/",
|
||||
"ElevenLabs": "https://elevenlabs.io/blog/",
|
||||
"Figure AI": "https://www.figure.ai/?ref=viden.ai",
|
||||
"Hugging Face": "https://huggingface.co/blog",
|
||||
"Runway": "https://runwayml.com/blog/",
|
||||
"Perplexity": "https://www.perplexity.ai/hub",
|
||||
"Midjourney": "https://www.midjourney.com/home",
|
||||
"Suno AI": "https://suno.com/blog/",
|
||||
"Adobe AI": "https://www.adobe.com/ai/overview.html",
|
||||
"Wiki": "https://www.reddit.com/r/artificial/wiki/index",
|
||||
"Subreddit Update": "https://www.reddit.com/r/artificial/comments/120qr4r/psa_rule_2_will_be_enforced_selfpromotion_is_only/",
|
||||
"More Communities": "https://www.reddit.com/r/artificial/wiki/related-subreddits/",
|
||||
"r/ChatGPT": "https://www.reddit.com/r/ChatGPT",
|
||||
"r/OpenAI": "https://www.reddit.com/r/OpenAI",
|
||||
"r/ClaudeAI": "https://www.reddit.com/r/ClaudeAI",
|
||||
"Amazing": "https://reddit.com/t/amazing/",
|
||||
"Animals & Pets": "https://reddit.com/t/animals_and_pets/",
|
||||
"Cringe & Facepalm": "https://reddit.com/t/cringe_and_facepalm/",
|
||||
"Funny": "https://reddit.com/t/funny/",
|
||||
"Interesting": "https://reddit.com/t/interesting/",
|
||||
"Memes": "https://reddit.com/t/memes/",
|
||||
"Oddly Satisfying": "https://reddit.com/t/oddly_satisfying/",
|
||||
"Reddit Meta": "https://reddit.com/t/reddit_meta/",
|
||||
"Wholesome & Heartwarming": "https://reddit.com/t/wholesome_and_heartwarming/",
|
||||
"Action Games": "https://reddit.com/t/action_games/",
|
||||
"Adventure Games": "https://reddit.com/t/adventure_games/",
|
||||
"Esports": "https://reddit.com/t/esports/",
|
||||
"Gaming Consoles & Gear": "https://reddit.com/t/gaming_consoles_and_gear/",
|
||||
"Gaming News & Discussion": "https://reddit.com/t/gaming_news_and_discussion/",
|
||||
"Mobile Games": "https://reddit.com/t/mobile_games/",
|
||||
"Other Games": "https://reddit.com/t/other_games/",
|
||||
"Role-Playing Games": "https://reddit.com/t/role_playing_games/",
|
||||
"Simulation Games": "https://reddit.com/t/simulation_games/",
|
||||
"Sports & Racing Games": "https://reddit.com/t/sports_and_racing_games/",
|
||||
"Strategy Games": "https://reddit.com/t/strategy_games/",
|
||||
"Tabletop Games": "https://reddit.com/t/tabletop_games/",
|
||||
"Q&As": "https://reddit.com/t/q_and_as/",
|
||||
"Stories & Confessions": "https://reddit.com/t/stories_and_confessions/",
|
||||
"3D Printing": "https://reddit.com/t/3d_printing/",
|
||||
"Artificial Intelligence & Machine Learning": "https://reddit.com/t/artificial_intelligence_and_machine_learning/",
|
||||
"Computers & Hardware": "https://reddit.com/t/computers_and_hardware/",
|
||||
"Consumer Electronics": "https://reddit.com/t/consumer_electronics/",
|
||||
"DIY Electronics": "https://reddit.com/t/diy_electronics/",
|
||||
"Programming": "https://reddit.com/t/programming/",
|
||||
"Software & Apps": "https://reddit.com/t/software_and_apps/",
|
||||
"Streaming Services": "https://reddit.com/t/streaming_services/",
|
||||
"Tech News & Discussion": "https://reddit.com/t/tech_news_and_discussion/",
|
||||
"Virtual & Augmented Reality": "https://reddit.com/t/virtual_and_augmented_reality/",
|
||||
"Celebrities": "https://reddit.com/t/celebrities/",
|
||||
"Creators & Influencers": "https://reddit.com/t/creators_and_influencers/",
|
||||
"Generations & Nostalgia": "https://reddit.com/t/generations_and_nostalgia/",
|
||||
"Podcasts": "https://reddit.com/t/podcasts/",
|
||||
"Streamers": "https://reddit.com/t/streamers/",
|
||||
"Tarot & Astrology": "https://reddit.com/t/tarot_and_astrology/",
|
||||
"Action Movies & Series": "https://reddit.com/t/action_movies_and_series/",
|
||||
"Animated Movies & Series": "https://reddit.com/t/animated_movies_and_series/",
|
||||
"Comedy Movies & Series": "https://reddit.com/t/comedy_movies_and_series/",
|
||||
"Crime, Mystery, & Thriller Movies & Series": "https://reddit.com/t/crime_mystery_and_thriller_movies_and_series/",
|
||||
"Documentary Movies & Series": "https://reddit.com/t/documentary_movies_and_series/",
|
||||
"Drama Movies & Series": "https://reddit.com/t/drama_movies_and_series/",
|
||||
"Fantasy Movies & Series": "https://reddit.com/t/fantasy_movies_and_series/",
|
||||
"Horror Movies & Series": "https://reddit.com/t/horror_movies_and_series/",
|
||||
"Movie News & Discussion": "https://reddit.com/t/movie_news_and_discussion/",
|
||||
"Reality TV": "https://reddit.com/t/reality_tv/",
|
||||
"Romance Movies & Series": "https://reddit.com/t/romance_movies_and_series/",
|
||||
"Sci-Fi Movies & Series": "https://reddit.com/t/scifi_movies_and_series/",
|
||||
"Superhero Movies & Series": "https://reddit.com/t/superhero_movies_and_series/",
|
||||
"TV News & Discussion": "https://reddit.com/t/tv_news_and_discussion/",
|
||||
"About Reddit": "https://www.redditinc.com",
|
||||
"Advertise": "https://accounts.reddit.com/adsregister?utm_source=web3x_consumer&utm_name=left_nav_cta",
|
||||
"Help": "https://support.reddithelp.com/hc?utm_source=reddit&utm_medium=footer&utm_campaign=evergreen",
|
||||
"Blog": "https://redditblog.com/",
|
||||
"Careers": "https://www.redditinc.com/careers",
|
||||
"Press": "https://www.redditinc.com/press",
|
||||
"Communities": "https://www.reddit.com/best/communities/1/",
|
||||
"Best of Reddit": "https://www.reddit.com/posts/2024/global/",
|
||||
"Topics": "https://www.reddit.com/topics/a-1/",
|
||||
"Content Policy": "https://www.redditinc.com/policies/content-policy",
|
||||
"Privacy Policy": "https://www.reddit.com/policies/privacy-policy",
|
||||
"User Agreement": "https://www.redditinc.com/policies/user-agreement",
|
||||
"Reddit, Inc. © 2024. All rights reserved.": "https://redditinc.com"
|
||||
}
|
Before Width: | Height: | Size: 301 KiB |
@ -1,52 +0,0 @@
|
||||
Skip to main content
|
||||
Get App
|
||||
Log In
|
||||
r/artificial
|
||||
u/socialmeai
|
||||
•
|
||||
Llama 3.3 better than 4o, o1
|
||||
|
||||
I have started myself to shift from ChatGPT models because now they have started to go out of context for no reason.
|
||||
|
||||
You ask them to make a summary of what we have discussed on this chat so far and it fails to note the important points.
|
||||
|
||||
And if the chat is pretty lengthy, it just dismisses and gets bizarre info out of it.
|
||||
|
||||
I think I smell the commercialness of it spreading across the room.
|
||||
|
||||
I have had better output from the recent Microsoft's phi-4 model compared to 4o.
|
||||
|
||||
u/HoodyPrivacy
|
||||
•
|
||||
Promoted
|
||||
Hoody AI: anonymous access to the best AI model providers from a privacy-first unified dashboard.
|
||||
hoody.com
|
||||
View More
|
||||
u/MetaKnowing
|
||||
•
|
||||
o1 scored in the top 1%-2% of participants in Putnam, one of the world's hardest math exams
|
||||
https://x.com/Academisfit/status/1868529612554420489
|
||||
u/D3O2
|
||||
•
|
||||
AI space blog
|
||||
TOPICS
|
||||
Internet Culture (Viral)
|
||||
Games
|
||||
Q&As
|
||||
Technology
|
||||
Pop Culture
|
||||
Movies & TV
|
||||
RESOURCES
|
||||
About Reddit
|
||||
Advertise
|
||||
Help
|
||||
Blog
|
||||
Careers
|
||||
Press
|
||||
Communities
|
||||
Best of Reddit
|
||||
Topics
|
||||
Content Policy
|
||||
Privacy Policy
|
||||
User Agreement
|
||||
Reddit, Inc. © 2024. All rights reserved.
|
@ -1,31 +0,0 @@
|
||||
{
|
||||
"MIT Technology Review": "https://www.technologyreview.com/",
|
||||
"Featured": "https://www.technologyreview.com/featured",
|
||||
"Topics": "https://www.technologyreview.com/all-topics",
|
||||
"Newsletters": "https://www.technologyreview.com/newsletter-preferences",
|
||||
"Events": "https://events.technologyreview.com/",
|
||||
"Audio": "https://www.technologyreview.com/audio",
|
||||
"Sign in": "https://www.technologyreview.com/login&redirectTo=/",
|
||||
"Subscribe": "https://www.technologyreview.com/subscribe?itm_source=nav-button&itm_medium=onsite&itm_campaign=subscribe-BAU",
|
||||
"Terms of Service": "https://www.technologyreview.com/terms-of-service/",
|
||||
"Privacy Policy": "https://www.technologyreview.com/privacy",
|
||||
"READ ABOUT OUR HISTORY": "https://www.technologyreview.com/supertopic/about/",
|
||||
"ADVERTISE WITH US": "https://mediakit.technologyreview.com",
|
||||
"Careers": "https://www.technologyreview.com/open-positions/",
|
||||
"Custom content": "https://www.technologyreview.com/custom-content",
|
||||
"Advertise with us": "https://mediakit.technologyreview.com/",
|
||||
"International Editions": "https://www.technologyreview.com/international-editions/",
|
||||
"Republishing": "https://www.technologyreview.com/republishing/",
|
||||
"MIT Alumni News": "https://www.technologyreview.com/mit-news",
|
||||
"Help & FAQ": "https://www.technologyreview.com/help/",
|
||||
"My subscription": "https://subscriptions.technologyreview.com/loading.do?omedasite=MITTR_LAND",
|
||||
"Editorial guidelines": "https://www.technologyreview.com/editorial-guidelines/",
|
||||
"Privacy policy": "https://www.technologyreview.com/privacy/",
|
||||
"Write for us": "https://www.technologyreview.com/how-to-pitch-mit-technology-review/",
|
||||
"Contact us": "https://www.technologyreview.com/help#contact-us",
|
||||
"linkedin opens in a new window": "https://www.linkedin.com/company/mit-technology-review",
|
||||
"instagram opens in a new window": "https://www.instagram.com/technologyreview/",
|
||||
"reddit opens in a new window": "https://www.reddit.com/user/techreview/",
|
||||
"facebook opens in a new window": "https://www.facebook.com/technologyreview/",
|
||||
"rss opens in a new window": "https://www.technologyreview.com/feed/"
|
||||
}
|
Before Width: | Height: | Size: 169 KiB |
@ -1,46 +0,0 @@
|
||||
SKIP TO CONTENT
|
||||
MIT Technology Review
|
||||
SIGN IN
|
||||
SUBSCRIBE
|
||||
MIT Technology Review
|
||||
SIGN IN
|
||||
SUBSCRIBE
|
||||
The Algorithm
|
||||
|
||||
A weekly newsletter that helps demystify artificial intelligence.
|
||||
|
||||
Enter your email
|
||||
SIGN UP
|
||||
By signing up, you agree to our Terms of Service & Privacy Policy.
|
||||
Artificial intelligence
|
||||
The latest advances in the quest to build machines that can reason, learn, and act intelligently.
|
||||
NEWEST TO OLDEST
|
||||
ALL TOPICS
|
||||
The latest iteration of a legacy
|
||||
Founded at the Massachusetts Institute of Technology in 1899, MIT Technology Review is a world-renowned, independent media company whose insight, analysis, reviews, interviews and live events explain the newest technologies and their commercial, social and political impact.
|
||||
READ ABOUT OUR HISTORY
|
||||
Advertise with MIT Technology Review
|
||||
Elevate your brand to the forefront of conversation around emerging technologies that are radically transforming business. From event sponsorships to custom content to visually arresting video storytelling, advertising with MIT Technology Review creates opportunities for your brand to resonate with an unmatched audience of technology and business elite.
|
||||
ADVERTISE WITH US
|
||||
|
||||
© 2024 MIT Technology Review
|
||||
|
||||
About us
|
||||
Careers
|
||||
Custom content
|
||||
Advertise with us
|
||||
International Editions
|
||||
Republishing
|
||||
MIT Alumni News
|
||||
Help & FAQ
|
||||
My subscription
|
||||
Editorial guidelines
|
||||
Privacy policy
|
||||
Terms of Service
|
||||
Write for us
|
||||
Contact us
|
||||
linkedin opens in a new window
|
||||
instagram opens in a new window
|
||||
reddit opens in a new window
|
||||
facebook opens in a new window
|
||||
rss opens in a new window
|
@ -1,189 +0,0 @@
|
||||
{
|
||||
"terms of service": "https://stackoverflow.com/legal/terms-of-service/public",
|
||||
"privacy policy": "https://stackoverflow.com/legal/privacy-policy",
|
||||
"Log in": "https://stackoverflow.com/users/login?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2fartificial-intelligence",
|
||||
"About": "https://stackoverflow.co/",
|
||||
"OverflowAI": "https://stackoverflow.co/teams/ai/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav-bar&utm_content=overflowai",
|
||||
"Stack Overflow for Teams\nWhere developers & technologists share private knowledge with coworkers": "https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav&utm_content=stack-overflow-for-teams",
|
||||
"Advertising & Talent\nReach devs & technologists worldwide about your product, service or employer brand": "https://stackoverflow.co/advertising/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav&utm_content=stack-overflow-advertising",
|
||||
"OverflowAI\nGenAI features for Teams": "https://stackoverflow.co/teams/ai/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav&utm_content=overflow-ai",
|
||||
"OverflowAPI\nTrain & fine-tune LLMs": "https://stackoverflow.co/api-solutions/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav&utm_content=overflow-api",
|
||||
"Labs\nThe future of collective knowledge sharing": "https://stackoverflow.co/labs/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav&utm_content=labs",
|
||||
"About the company": "https://stackoverflow.co/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav&utm_content=about-the-company",
|
||||
"Visit the blog": "https://stackoverflow.blog/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=top-nav&utm_content=blog",
|
||||
"help": "https://stackoverflow.com/help",
|
||||
"chat": "https://chat.stackoverflow.com/?tab=site&host=stackoverflow.com",
|
||||
"Meta Stack Overflow": "https://meta.stackoverflow.com",
|
||||
"Sign up": "https://stackoverflow.com/users/signup?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2fartificial-intelligence",
|
||||
"log in": "https://stackoverflow.com/users/login?ssrc=site_switcher&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2fartificial-intelligence",
|
||||
"more stack exchange communities": "https://stackexchange.com/sites",
|
||||
"company blog": "https://stackoverflow.blog",
|
||||
"Home": "https://stackoverflow.com/",
|
||||
"Questions": "https://stackoverflow.com/questions",
|
||||
"Tags": "https://stackoverflow.com/tags",
|
||||
"Users": "https://stackoverflow.com/users",
|
||||
"Companies": "https://stackoverflow.com/jobs/companies?so_medium=stackoverflow&so_source=SiteNav",
|
||||
"Jobs": "https://stackoverflow.com/jobs?source=so-left-nav",
|
||||
"Discussions": "https://stackoverflow.com/beta/discussions",
|
||||
"Explore all Collectives": "https://stackoverflow.com/collectives-all",
|
||||
"Try Teams for free": "https://stackoverflowteams.com/teams/create/free/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams",
|
||||
"Explore Teams": "https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=side-bar&utm_content=explore-teams-compact",
|
||||
"Learn more about Collectives": "https://stackoverflow.com/collectives",
|
||||
"Learn more about Teams": "https://stackoverflow.co/teams/",
|
||||
"Learn more about Labs": "https://stackoverflow.co/labs/",
|
||||
"Go to Wiki": "https://stackoverflow.com/tags/artificial-intelligence/info",
|
||||
"Newest": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Newest",
|
||||
"Active": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Active",
|
||||
"Bountied": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Bounties",
|
||||
"Unanswered": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Unanswered",
|
||||
"Frequent": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Frequent",
|
||||
"Score": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Votes",
|
||||
"Trending": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Trending",
|
||||
"Week": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Week",
|
||||
"Month": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=Month",
|
||||
"How to use chatgpt for reviewing and analizing my Oracle database [closed]": "https://stackoverflow.com/questions/79284988/how-to-use-chatgpt-for-reviewing-and-analizing-my-oracle-database",
|
||||
"artificial-intelligence": "https://stackoverflow.com/questions/tagged/artificial-intelligence",
|
||||
"chatgpt-api": "https://stackoverflow.com/questions/tagged/chatgpt-api",
|
||||
"chat-gpt-4": "https://stackoverflow.com/questions/tagged/chat-gpt-4",
|
||||
"Delmonte": "https://stackoverflow.com/users/1786620/delmonte",
|
||||
"InsightFace not using GPU [closed]": "https://stackoverflow.com/questions/79284653/insightface-not-using-gpu",
|
||||
"deep-learning": "https://stackoverflow.com/questions/tagged/artificial-intelligence+deep-learning",
|
||||
"cuda": "https://stackoverflow.com/questions/tagged/cuda",
|
||||
"face-recognition": "https://stackoverflow.com/questions/tagged/face-recognition",
|
||||
"onnxruntime": "https://stackoverflow.com/questions/tagged/onnxruntime",
|
||||
"Khawar Ali": "https://stackoverflow.com/users/23395527/khawar-ali",
|
||||
"No module named 'ppaquette_gym_doom'": "https://stackoverflow.com/questions/79284559/no-module-named-ppaquette-gym-doom",
|
||||
"python": "https://stackoverflow.com/questions/tagged/artificial-intelligence+python",
|
||||
"신현빈": "https://stackoverflow.com/users/28800504/%ec%8b%a0%ed%98%84%eb%b9%88",
|
||||
"Conversation agents Playbook '00000000-0000-0000-0000-000000000000' does not exist in the agent [closed]": "https://stackoverflow.com/questions/79284150/conversation-agents-playbook-00000000-0000-0000-0000-000000000000-does-not-exi",
|
||||
"google-cloud-platform": "https://stackoverflow.com/questions/tagged/google-cloud-platform",
|
||||
"vertex": "https://stackoverflow.com/questions/tagged/vertex",
|
||||
"google-play-books": "https://stackoverflow.com/questions/tagged/google-play-books",
|
||||
"EVIO COOL": "https://stackoverflow.com/users/28802076/evio-cool",
|
||||
"How to Improve CNN Model Performance for Image Classification in PyTorch? [closed]": "https://stackoverflow.com/questions/79283377/how-to-improve-cnn-model-performance-for-image-classification-in-pytorch",
|
||||
"pytorch": "https://stackoverflow.com/questions/tagged/artificial-intelligence+pytorch",
|
||||
"kaggle": "https://stackoverflow.com/questions/tagged/kaggle",
|
||||
"Ahmed Efe Petek": "https://stackoverflow.com/users/23337041/ahmed-efe-petek",
|
||||
"R_max algorithm doesn't converge to the right policy": "https://stackoverflow.com/questions/79283112/r-max-algorithm-doesnt-converge-to-the-right-policy",
|
||||
"reinforcement-learning": "https://stackoverflow.com/questions/tagged/artificial-intelligence+reinforcement-learning",
|
||||
"Daniel Dubinskey": "https://stackoverflow.com/users/28795088/daniel-dubinskey",
|
||||
"Issue with mismatched tensor sizes during training with DeepSpeed [closed]": "https://stackoverflow.com/questions/79281852/issue-with-mismatched-tensor-sizes-during-training-with-deepspeed",
|
||||
"huggingface-trainer": "https://stackoverflow.com/questions/tagged/huggingface-trainer",
|
||||
"warrw": "https://stackoverflow.com/users/28777459/warrw",
|
||||
"Contrastive Loss from Scratch": "https://stackoverflow.com/questions/79279472/contrastive-loss-from-scratch",
|
||||
"loss-function": "https://stackoverflow.com/questions/tagged/loss-function",
|
||||
"self-supervised-learning": "https://stackoverflow.com/questions/tagged/self-supervised-learning",
|
||||
"brzig": "https://stackoverflow.com/users/12548231/brzig",
|
||||
"Where can I find datasets for medical document analysis and disease diagnosis using NLP? [closed]": "https://stackoverflow.com/questions/79276072/where-can-i-find-datasets-for-medical-document-analysis-and-disease-diagnosis-us",
|
||||
"machine-learning": "https://stackoverflow.com/questions/tagged/artificial-intelligence+machine-learning",
|
||||
"nlp": "https://stackoverflow.com/questions/tagged/artificial-intelligence+nlp",
|
||||
"dataset": "https://stackoverflow.com/questions/tagged/dataset",
|
||||
"jlassi Mohamed Hani": "https://stackoverflow.com/users/28756112/jlassi-mohamed-hani",
|
||||
"Error: \"Vectors must have the same length as the number of dimensions\" when adding documents to FAISS vector store in LangChain [closed]": "https://stackoverflow.com/questions/79274478/error-vectors-must-have-the-same-length-as-the-number-of-dimensions-when-addi",
|
||||
"langchain": "https://stackoverflow.com/questions/tagged/langchain",
|
||||
"large-language-model": "https://stackoverflow.com/questions/tagged/artificial-intelligence+large-language-model",
|
||||
"rag": "https://stackoverflow.com/questions/tagged/rag",
|
||||
"llamacpp": "https://stackoverflow.com/questions/tagged/llamacpp",
|
||||
"Yahoo": "https://stackoverflow.com/users/21913499/yahoo",
|
||||
"Classify images based on line thickness,, text size, and background color [closed]": "https://stackoverflow.com/questions/79273650/classify-images-based-on-line-thickness-text-size-and-background-color",
|
||||
"image-processing": "https://stackoverflow.com/questions/tagged/image-processing",
|
||||
"computer-vision": "https://stackoverflow.com/questions/tagged/artificial-intelligence+computer-vision",
|
||||
"Andres": "https://stackoverflow.com/users/128507/andres",
|
||||
"Which representation of the Softmax function is correct? [closed]": "https://stackoverflow.com/questions/79272621/which-representation-of-the-softmax-function-is-correct",
|
||||
"neural-network": "https://stackoverflow.com/questions/tagged/artificial-intelligence+neural-network",
|
||||
"activation-function": "https://stackoverflow.com/questions/tagged/activation-function",
|
||||
"zhiyuan lee": "https://stackoverflow.com/users/28737784/zhiyuan-lee",
|
||||
"VS code extension that uses OpenAI API doens't work": "https://stackoverflow.com/questions/79272471/vs-code-extension-that-uses-openai-api-doenst-work",
|
||||
"javascript": "https://stackoverflow.com/questions/tagged/artificial-intelligence+javascript",
|
||||
"vscode-extensions": "https://stackoverflow.com/questions/tagged/vscode-extensions",
|
||||
"openai-api": "https://stackoverflow.com/questions/tagged/openai-api",
|
||||
"Maayan L": "https://stackoverflow.com/users/28734946/maayan-l",
|
||||
"In the field of Generalized Planning, how can a policy be derived? [closed]": "https://stackoverflow.com/questions/79272256/in-the-field-of-generalized-planning-how-can-a-policy-be-derived",
|
||||
"policy": "https://stackoverflow.com/questions/tagged/policy",
|
||||
"planning": "https://stackoverflow.com/questions/tagged/planning",
|
||||
"pddl": "https://stackoverflow.com/questions/tagged/pddl",
|
||||
"xiang xiang": "https://stackoverflow.com/users/28299215/xiang-xiang",
|
||||
"Is there a “How do you like Github Copilot to respond?” in GitHub Copilot? [closed]": "https://stackoverflow.com/questions/79270164/is-there-a-how-do-you-like-github-copilot-to-respond-in-github-copilot",
|
||||
"intellij-idea": "https://stackoverflow.com/questions/tagged/intellij-idea",
|
||||
"github-copilot": "https://stackoverflow.com/questions/tagged/github-copilot",
|
||||
"akuma8": "https://stackoverflow.com/users/6643803/akuma8",
|
||||
"15": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=15",
|
||||
"30": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=30",
|
||||
"50": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&pagesize=50",
|
||||
"2": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=2&pagesize=15",
|
||||
"3": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=3&pagesize=15",
|
||||
"4": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=4&pagesize=15",
|
||||
"5": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=5&pagesize=15",
|
||||
"597": "https://stackoverflow.com/questions/tagged/artificial-intelligence?tab=newest&page=597&pagesize=15",
|
||||
"AI agents that help doctors get paid": "https://stackoverflow.blog/2024/12/13/ai-agents-that-help-doctors-get-paid/?cb=1",
|
||||
"Legal advice from an AI is illegal": "https://stackoverflow.blog/2024/12/17/legal-advice-from-an-ai-is-illegal/?cb=1",
|
||||
"The December 2024 Community Asks Sprint has been moved to March 2025 (and...": "https://meta.stackexchange.com/questions/404724/the-december-2024-community-asks-sprint-has-been-moved-to-march-2025-and-length?cb=1",
|
||||
"Stack Overflow Jobs is expanding to more countries": "https://meta.stackexchange.com/questions/404909/stack-overflow-jobs-is-expanding-to-more-countries?cb=1",
|
||||
"algorithm": "https://stackoverflow.com/questions/tagged/artificial-intelligence+algorithm",
|
||||
"tensorflow": "https://stackoverflow.com/questions/tagged/artificial-intelligence+tensorflow",
|
||||
"java": "https://stackoverflow.com/questions/tagged/artificial-intelligence+java",
|
||||
"c#": "https://stackoverflow.com/questions/tagged/artificial-intelligence+c%23",
|
||||
"keras": "https://stackoverflow.com/questions/tagged/artificial-intelligence+keras",
|
||||
"minimax": "https://stackoverflow.com/questions/tagged/artificial-intelligence+minimax",
|
||||
"python-3.x": "https://stackoverflow.com/questions/tagged/artificial-intelligence+python-3.x",
|
||||
"conv-neural-network": "https://stackoverflow.com/questions/tagged/artificial-intelligence+conv-neural-network",
|
||||
"search": "https://stackoverflow.com/questions/tagged/artificial-intelligence+search",
|
||||
"c++": "https://stackoverflow.com/questions/tagged/artificial-intelligence%20c%2b%2b",
|
||||
"chatbot": "https://stackoverflow.com/questions/tagged/artificial-intelligence+chatbot",
|
||||
"genetic-algorithm": "https://stackoverflow.com/questions/tagged/artificial-intelligence+genetic-algorithm",
|
||||
"unity-game-engine": "https://stackoverflow.com/questions/tagged/artificial-intelligence+unity-game-engine",
|
||||
"a-star": "https://stackoverflow.com/questions/tagged/artificial-intelligence+a-star",
|
||||
"heuristics": "https://stackoverflow.com/questions/tagged/artificial-intelligence+heuristics",
|
||||
"Hot Network Questions": "https://stackexchange.com/questions?tab=hot",
|
||||
"Why no \"full-stack\" SQL-like language?": "https://langdev.stackexchange.com/questions/4192/why-no-full-stack-sql-like-language",
|
||||
"Why would David not drink the water?": "https://hermeneutics.stackexchange.com/questions/99838/why-would-david-not-drink-the-water",
|
||||
"Should I remove extra water that leaked into sauerkraut?": "https://cooking.stackexchange.com/questions/129782/should-i-remove-extra-water-that-leaked-into-sauerkraut",
|
||||
"Compactness Theorem for propositional Calculus": "https://philosophy.stackexchange.com/questions/120498/compactness-theorem-for-propositional-calculus",
|
||||
"If I sacrifice a Forsaken Miner to the card Eaten Alive do I get the miner back?": "https://boardgames.stackexchange.com/questions/61640/if-i-sacrifice-a-forsaken-miner-to-the-card-eaten-alive-do-i-get-the-miner-back",
|
||||
"Is it OK to use longjmp to break out of qsort?": "https://stackoverflow.com/questions/79286221/is-it-ok-to-use-longjmp-to-break-out-of-qsort",
|
||||
"Why are languages commonly structured as trees?": "https://philosophy.stackexchange.com/questions/120393/why-are-languages-commonly-structured-as-trees",
|
||||
"Would a siyum the night before the fast of the first born count?": "https://judaism.stackexchange.com/questions/146473/would-a-siyum-the-night-before-the-fast-of-the-first-born-count",
|
||||
"How to determine what is opening tmp files when I invoke a subshell with ksh": "https://unix.stackexchange.com/questions/788233/how-to-determine-what-is-opening-tmp-files-when-i-invoke-a-subshell-with-ksh",
|
||||
"Expressing an assumption that all variables are mutually distinct and come from a specified set": "https://mathematica.stackexchange.com/questions/309469/expressing-an-assumption-that-all-variables-are-mutually-distinct-and-come-from",
|
||||
"How do we provide permission to use a figure that we hired a graphic designer to create in SciRep?": "https://academia.stackexchange.com/questions/215548/how-do-we-provide-permission-to-use-a-figure-that-we-hired-a-graphic-designer-to",
|
||||
"Does the double origin plane have a cut point?": "https://math.stackexchange.com/questions/5012375/does-the-double-origin-plane-have-a-cut-point",
|
||||
"Why does the media establishment still refer to the Syrian revolutionary forces as rebels?": "https://politics.stackexchange.com/questions/90088/why-does-the-media-establishment-still-refer-to-the-syrian-revolutionary-forces",
|
||||
"have someone to do something": "https://ell.stackexchange.com/questions/360421/have-someone-to-do-something",
|
||||
"Prove that the entanglement definition of AME implies the error correction definition of AME": "https://quantumcomputing.stackexchange.com/questions/40691/prove-that-the-entanglement-definition-of-ame-implies-the-error-correction-defin",
|
||||
"Is SQL Injection possible if we're using only the IN keyword (no equals = operator) and we handle the single quote": "https://security.stackexchange.com/questions/279871/is-sql-injection-possible-if-were-using-only-the-in-keyword-no-equals-operat",
|
||||
"How do I get rid of the yellow tint when using Sky Texture?": "https://blender.stackexchange.com/questions/328530/how-do-i-get-rid-of-the-yellow-tint-when-using-sky-texture",
|
||||
"EES/ETIAS in Schengen after 1-day overstay?": "https://travel.stackexchange.com/questions/192647/ees-etias-in-schengen-after-1-day-overstay",
|
||||
"Japanese passport and Philippine passport with different signatures: ok when traveling to another country?": "https://travel.stackexchange.com/questions/192640/japanese-passport-and-philippine-passport-with-different-signatures-ok-when-tra",
|
||||
"What is the meaning of the second line of the piecewise output of SeriesCoefficient[]?": "https://mathematica.stackexchange.com/questions/309456/what-is-the-meaning-of-the-second-line-of-the-piecewise-output-of-seriescoeffici",
|
||||
"How to teach high school students to analyze diagrams in a proof?": "https://matheducators.stackexchange.com/questions/28346/how-to-teach-high-school-students-to-analyze-diagrams-in-a-proof",
|
||||
"What is the wave function for alpha decay?": "https://physics.stackexchange.com/questions/837316/what-is-the-wave-function-for-alpha-decay",
|
||||
"PSE Advent Calendar 2024 (Day 16): Holly Jolly Cryptic Word Tapestry": "https://puzzling.stackexchange.com/questions/129675/pse-advent-calendar-2024-day-16-holly-jolly-cryptic-word-tapestry",
|
||||
"Regarding Isaiah 9:6, which text has the original rendering, LXX or MT, and why does the false rendering differ significantly from the original?": "https://hermeneutics.stackexchange.com/questions/99843/regarding-isaiah-96-which-text-has-the-original-rendering-lxx-or-mt-and-why",
|
||||
"Newest artificial-intelligence questions feed": "https://stackoverflow.com/feeds/tag?tagnames=artificial-intelligence&sort=newest",
|
||||
"Help": "https://stackoverflow.com/help",
|
||||
"Teams": "https://stackoverflow.co/teams/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=teams",
|
||||
"Advertising": "https://stackoverflow.co/advertising/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=advertising",
|
||||
"Talent": "https://stackoverflow.co/advertising/employer-branding/?utm_medium=referral&utm_source=stackoverflow-community&utm_campaign=footer&utm_content=talent",
|
||||
"Press": "https://stackoverflow.co/company/press/",
|
||||
"Work Here": "https://stackoverflow.co/company/work-here/",
|
||||
"Legal": "https://stackoverflow.com/legal",
|
||||
"Privacy Policy": "https://stackoverflow.com/legal/privacy-policy",
|
||||
"Terms of Service": "https://stackoverflow.com/legal/terms-of-service/public",
|
||||
"Contact Us": "https://stackoverflow.com/contact",
|
||||
"Cookie Policy": "https://stackoverflow.com/legal/cookie-policy",
|
||||
"Stack Exchange Network": "https://stackexchange.com",
|
||||
"Technology": "https://stackexchange.com/sites#technology",
|
||||
"Culture & recreation": "https://stackexchange.com/sites#culturerecreation",
|
||||
"Life & arts": "https://stackexchange.com/sites#lifearts",
|
||||
"Science": "https://stackexchange.com/sites#science",
|
||||
"Professional": "https://stackexchange.com/sites#professional",
|
||||
"Business": "https://stackexchange.com/sites#business",
|
||||
"API": "https://api.stackexchange.com/",
|
||||
"Data": "https://data.stackexchange.com/",
|
||||
"Blog": "https://stackoverflow.blog?blb=1",
|
||||
"Facebook": "https://www.facebook.com/officialstackoverflow/",
|
||||
"Twitter": "https://twitter.com/stackoverflow",
|
||||
"LinkedIn": "https://linkedin.com/company/stack-overflow",
|
||||
"Instagram": "https://www.instagram.com/thestackoverflow",
|
||||
"CC BY-SA": "https://stackoverflow.com/help/licensing"
|
||||
}
|
Before Width: | Height: | Size: 839 KiB |
@ -1,311 +0,0 @@
|
||||
Skip to main content
|
||||
Stack Overflow
|
||||
About
|
||||
Products
|
||||
OverflowAI
|
||||
Log in
|
||||
Sign up
|
||||
Home
|
||||
Questions
|
||||
Tags
|
||||
Users
|
||||
Companies
|
||||
LABS
|
||||
Jobs
|
||||
Discussions
|
||||
COLLECTIVES
|
||||
|
||||
Communities for your favorite technologies. Explore all Collectives
|
||||
|
||||
TEAMS
|
||||
|
||||
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
|
||||
|
||||
Try Teams for free Explore Teams
|
||||
[artificial-intelligence]
|
||||
|
||||
NOTE: If you want to use this tag for a question not directly concerning implementation, then consider posting on Artificial Intelligence, Computer Science, Data Science, Cross Validated, or GenAI (beta) instead; ...
|
||||
|
||||
Sign up to watch this tag and see more personalized content
|
||||
|
||||
Watch tag
|
||||
Go to Wiki
|
||||
8,954 questions
|
||||
Newest
|
||||
Active
|
||||
Bountied
|
||||
Unanswered
|
||||
More
|
||||
Filter
|
||||
-4
|
||||
votes
|
||||
0
|
||||
answers
|
||||
20
|
||||
views
|
||||
How to use chatgpt for reviewing and analizing my Oracle database [closed]
|
||||
I frequently use ChatGPT for various tasks such as writing documents, developing SQL queries, programming functions, and more. However, I would like to utilize ChatGPT specifically to analyze some ...
|
||||
artificial-intelligencechatgpt-apichat-gpt-4
|
||||
Delmonte
|
||||
403
|
||||
asked 20 hours ago
|
||||
-3
|
||||
votes
|
||||
0
|
||||
answers
|
||||
17
|
||||
views
|
||||
InsightFace not using GPU [closed]
|
||||
I am building a face recognition system. I have Nvidia 1660 6GB super installed. I have written all the code. But it is not using GPU. On CPU, it is very slow. I have tried multiple versions of Nvidia ...
|
||||
deep-learningcudaartificial-intelligenceface-recognitiononnxruntime
|
||||
Khawar Ali
|
||||
1
|
||||
asked 22 hours ago
|
||||
0
|
||||
votes
|
||||
1
|
||||
answer
|
||||
15
|
||||
views
|
||||
No module named 'ppaquette_gym_doom'
|
||||
i use spyder i tried to install ppaquette_gym_doom but failed i tried to install doom-py and failed Failed building wheel for doom-py this is error secntence but i can't understand what it means i ...
|
||||
pythonartificial-intelligence
|
||||
신현빈
|
||||
1
|
||||
asked 23 hours ago
|
||||
-1
|
||||
votes
|
||||
0
|
||||
answers
|
||||
28
|
||||
views
|
||||
Conversation agents Playbook '00000000-0000-0000-0000-000000000000' does not exist in the agent [closed]
|
||||
Trying to get the conversation of the setup agent to start from the Playbook GAI instead of the flow. After changing that setting, I get this error: conversation agents Playbook '00000000-0000-0000-...
|
||||
google-cloud-platformartificial-intelligencevertexgoogle-play-books
|
||||
EVIO COOL
|
||||
1
|
||||
asked yesterday
|
||||
-1
|
||||
votes
|
||||
0
|
||||
answers
|
||||
20
|
||||
views
|
||||
How to Improve CNN Model Performance for Image Classification in PyTorch? [closed]
|
||||
I am working on an image classification project using PyTorch and have implemented a Convolutional Neural Network (CNN) model. While the model is functional, I am looking for ways to improve its ...
|
||||
pythonpytorchartificial-intelligencekaggle
|
||||
Ahmed Efe Petek
|
||||
3
|
||||
asked yesterday
|
||||
0
|
||||
votes
|
||||
0
|
||||
answers
|
||||
16
|
||||
views
|
||||
R_max algorithm doesn't converge to the right policy
|
||||
I have a task where I need to implement an R_max algorithm with modified policy itieration over the forzen lake problem. I first tried to just implement a regular modified policy iteration and it ...
|
||||
pythonartificial-intelligencereinforcement-learning
|
||||
Daniel Dubinskey
|
||||
9
|
||||
asked yesterday
|
||||
-1
|
||||
votes
|
||||
0
|
||||
answers
|
||||
12
|
||||
views
|
||||
Issue with mismatched tensor sizes during training with DeepSpeed [closed]
|
||||
I'm training a model using Hugging Face's Trainer with DeepSpeed integration, and I'm encountering an error related to mismatched tensor sizes: The size of tensor a (50) must match the size of tensor ...
|
||||
pythonartificial-intelligencehuggingface-trainer
|
||||
warrw
|
||||
7
|
||||
asked 2 days ago
|
||||
1
|
||||
vote
|
||||
1
|
||||
answer
|
||||
41
|
||||
views
|
||||
Contrastive Loss from Scratch
|
||||
I am trying to implement/learn how to implement contrastive loss. Currently my gradients are exploding into infinity and I think I must have misimplemented something. I was wondering if someone could ...
|
||||
deep-learningpytorchartificial-intelligenceloss-functionself-supervised-learning
|
||||
brzig
|
||||
35
|
||||
asked Dec 13 at 20:16
|
||||
-2
|
||||
votes
|
||||
0
|
||||
answers
|
||||
14
|
||||
views
|
||||
Where can I find datasets for medical document analysis and disease diagnosis using NLP? [closed]
|
||||
I'm working on a healthcare-related project where I need to analyze medical documents, extract specific values (e.g., creatinine, glucose levels, etc.), and generate personalized paragraphs for ...
|
||||
machine-learningdeep-learningnlpdatasetartificial-intelligence
|
||||
jlassi Mohamed Hani
|
||||
1
|
||||
asked Dec 12 at 17:39
|
||||
-1
|
||||
votes
|
||||
0
|
||||
answers
|
||||
13
|
||||
views
|
||||
Error: "Vectors must have the same length as the number of dimensions" when adding documents to FAISS vector store in LangChain [closed]
|
||||
I'm trying to embed and store documents in a FAISS vector store using LangChain, but I'm encountering the error: Vectors must have the same length as the number of dimensions I'm using a locally ...
|
||||
artificial-intelligencelangchainlarge-language-modelragllamacpp
|
||||
Yahoo
|
||||
1
|
||||
asked Dec 12 at 9:21
|
||||
-2
|
||||
votes
|
||||
0
|
||||
answers
|
||||
26
|
||||
views
|
||||
Classify images based on line thickness,, text size, and background color [closed]
|
||||
I'm trying to find a way to classify images based on their aptitude to be printed on clothing, ideally using a python library. The main thing I'm trying to do is find text size and color and general ...
|
||||
pythonmachine-learningimage-processingcomputer-visionartificial-intelligence
|
||||
Andres
|
||||
2,896
|
||||
asked Dec 12 at 2:14
|
||||
-1
|
||||
votes
|
||||
0
|
||||
answers
|
||||
34
|
||||
views
|
||||
Which representation of the Softmax function is correct? [closed]
|
||||
I came across the formula for the Softmax function: Softmax formula However, I've found two very different visual representations of the Softmax function, and I'm confused about which one is correct: ...
|
||||
machine-learningneural-networkartificial-intelligenceactivation-function
|
||||
zhiyuan lee
|
||||
11
|
||||
asked Dec 11 at 17:19
|
||||
0
|
||||
votes
|
||||
0
|
||||
answers
|
||||
30
|
||||
views
|
||||
VS code extension that uses OpenAI API doens't work
|
||||
I want to write a simple VS Code extension that calls OpenAI API and tells the user the day in Danish. I cannot find the extension when searching for it in the Extension Development Host window (after ...
|
||||
javascriptartificial-intelligencevscode-extensionsopenai-api
|
||||
Maayan L
|
||||
1
|
||||
asked Dec 11 at 16:25
|
||||
-3
|
||||
votes
|
||||
0
|
||||
answers
|
||||
12
|
||||
views
|
||||
In the field of Generalized Planning, how can a policy be derived? [closed]
|
||||
In the field of generalized planning, for a classical planning problem, we can only use classical planners (such as Fast Downward) to derive an action sequence, which is essentially a plan. However, I ...
|
||||
artificial-intelligencepolicyplanningpddl
|
||||
xiang xiang
|
||||
1
|
||||
asked Dec 11 at 15:25
|
||||
-2
|
||||
votes
|
||||
1
|
||||
answer
|
||||
41
|
||||
views
|
||||
Is there a “How do you like Github Copilot to respond?” in GitHub Copilot? [closed]
|
||||
With ChatGPT we have the option: “How would you like ChatGPT to respond?” Where we can give indications on how we expect it to respond. Is the same feature available in GitHub Copilot(GC) or are there ...
|
||||
intellij-ideaartificial-intelligencegithub-copilot
|
||||
akuma8
|
||||
4,641
|
||||
asked Dec 11 at 0:32
|
||||
|
||||
|
||||
15
|
||||
30
|
||||
50
|
||||
per page
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
…
|
||||
597
|
||||
Next
|
||||
The Overflow Blog
|
||||
AI agents that help doctors get paid
|
||||
Legal advice from an AI is illegal
|
||||
Featured on Meta
|
||||
The December 2024 Community Asks Sprint has been moved to March 2025 (and...
|
||||
Stack Overflow Jobs is expanding to more countries
|
||||
Related Tags
|
||||
python × 2550
|
||||
machine-learning × 2102
|
||||
neural-network × 1153
|
||||
algorithm × 886
|
||||
tensorflow × 706
|
||||
deep-learning × 589
|
||||
java × 561
|
||||
nlp × 414
|
||||
c# × 356
|
||||
keras × 341
|
||||
more related tags
|
||||
Hot Network Questions
|
||||
Why no "full-stack" SQL-like language?
|
||||
Why would David not drink the water?
|
||||
Should I remove extra water that leaked into sauerkraut?
|
||||
Compactness Theorem for propositional Calculus
|
||||
If I sacrifice a Forsaken Miner to the card Eaten Alive do I get the miner back?
|
||||
Is it OK to use longjmp to break out of qsort?
|
||||
Why are languages commonly structured as trees?
|
||||
Would a siyum the night before the fast of the first born count?
|
||||
How to determine what is opening tmp files when I invoke a subshell with ksh
|
||||
Expressing an assumption that all variables are mutually distinct and come from a specified set
|
||||
How do we provide permission to use a figure that we hired a graphic designer to create in SciRep?
|
||||
Does the double origin plane have a cut point?
|
||||
Why does the media establishment still refer to the Syrian revolutionary forces as rebels?
|
||||
have someone to do something
|
||||
Prove that the entanglement definition of AME implies the error correction definition of AME
|
||||
Is SQL Injection possible if we're using only the IN keyword (no equals = operator) and we handle the single quote
|
||||
How do I get rid of the yellow tint when using Sky Texture?
|
||||
EES/ETIAS in Schengen after 1-day overstay?
|
||||
Japanese passport and Philippine passport with different signatures: ok when traveling to another country?
|
||||
What is the meaning of the second line of the piecewise output of SeriesCoefficient[]?
|
||||
How to teach high school students to analyze diagrams in a proof?
|
||||
What is the wave function for alpha decay?
|
||||
PSE Advent Calendar 2024 (Day 16): Holly Jolly Cryptic Word Tapestry
|
||||
Regarding Isaiah 9:6, which text has the original rendering, LXX or MT, and why does the false rendering differ significantly from the original?
|
||||
Newest artificial-intelligence questions feed
|
||||
STACK OVERFLOW
|
||||
Questions
|
||||
Help
|
||||
Chat
|
||||
PRODUCTS
|
||||
Teams
|
||||
Advertising
|
||||
Talent
|
||||
COMPANY
|
||||
About
|
||||
Press
|
||||
Work Here
|
||||
Legal
|
||||
Privacy Policy
|
||||
Terms of Service
|
||||
Contact Us
|
||||
Cookie Settings
|
||||
Cookie Policy
|
||||
STACK EXCHANGE NETWORK
|
||||
Technology
|
||||
Culture & recreation
|
||||
Life & arts
|
||||
Science
|
||||
Professional
|
||||
Business
|
||||
API
|
||||
Data
|
||||
Blog
|
||||
Facebook
|
||||
Twitter
|
||||
LinkedIn
|
||||
Instagram
|
||||
|
||||
Site design / logo © 2024 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2024.12.17.20550
|
@ -1,137 +0,0 @@
|
||||
{
|
||||
"Events": "https://events.venturebeat.com/",
|
||||
"Video": "https://venturebeat.com/video/",
|
||||
"Special Issues": "https://venturebeat.com/venturebeat-special-issues/",
|
||||
"Jobs": "https://jobs.venturebeat.com/?source=navbar&utm_source=navbar&utm_medium=partner_referral",
|
||||
"VentureBeat Homepage": "https://venturebeat.com/",
|
||||
"Subscribe": "https://venturebeat.com/newsletters/?utm_source=VBsite&utm_medium=mobileNav",
|
||||
"Artificial Intelligence": "https://venturebeat.com/category/ai/",
|
||||
"AI, ML and Deep Learning": "https://venturebeat.com/tag/ai-ml-deep-learning/",
|
||||
"Auto ML": "https://venturebeat.com/tag/auto-ml/",
|
||||
"Data Labelling": "https://venturebeat.com/tag/data-labelling/",
|
||||
"Synthetic Data": "https://venturebeat.com/tag/synthetic-data/",
|
||||
"Conversational AI": "https://venturebeat.com/tag/conversational-ai/",
|
||||
"NLP": "https://venturebeat.com/tag/nlp/",
|
||||
"Text-to-Speech": "https://venturebeat.com/tag/text-to-speech/",
|
||||
"Security": "https://venturebeat.com/category/security/",
|
||||
"Data Security and Privacy": "https://venturebeat.com/tag/data-security-privacy/",
|
||||
"Network Security and Privacy": "https://venturebeat.com/tag/network-security-privacy/",
|
||||
"Software Security": "https://venturebeat.com/tag/software-security/",
|
||||
"Computer Hardware Security": "https://venturebeat.com/tag/computer-hardware-security/",
|
||||
"Cloud and Data Storage Security": "https://venturebeat.com/tag/cloud-data-storage-security/",
|
||||
"Data Infrastructure": "https://venturebeat.com/category/data-infrastructure/",
|
||||
"Data Science": "https://venturebeat.com/tag/data-science/",
|
||||
"Data Management": "https://venturebeat.com/tag/data-management/",
|
||||
"Data Storage and Cloud": "https://venturebeat.com/tag/data-storage-cloud/",
|
||||
"Big Data and Analytics": "https://venturebeat.com/tag/big-data-and-analytics/",
|
||||
"Data Networks": "https://venturebeat.com/tag/data-networks/",
|
||||
"Automation": "https://venturebeat.com/category/automation/",
|
||||
"Industrial Automation": "https://venturebeat.com/tag/industrial-automation/",
|
||||
"Business Process Automation": "https://venturebeat.com/tag/business-process-automation/",
|
||||
"Development Automation": "https://venturebeat.com/tag/development-automation/",
|
||||
"Robotic Process Automation": "https://venturebeat.com/tag/robotic-process-automation/",
|
||||
"Test Automation": "https://venturebeat.com/tag/test-automation/",
|
||||
"Enterprise Analytics": "https://venturebeat.com/category/enterprise-analytics/",
|
||||
"Business Intelligence": "https://venturebeat.com/tag/business-intelligence/",
|
||||
"Disaster Recovery Business Continuity": "https://venturebeat.com/tag/disaster-recovery-business-continuity/",
|
||||
"Statistical Analysis": "https://venturebeat.com/tag/statistical-analysis/",
|
||||
"Predictive Analysis": "https://venturebeat.com/tag/predictive-analysis/",
|
||||
"Data Decision Makers": "https://venturebeat.com/category/datadecisionmakers/",
|
||||
"Virtual Communication": "https://venturebeat.com/category/virtual/",
|
||||
"Team Collaboration": "https://venturebeat.com/tag/team-collaboration/",
|
||||
"UCaaS": "https://venturebeat.com/tag/ucaas/",
|
||||
"Virtual Reality Collaboration": "https://venturebeat.com/tag/virtual-reality-collaboration/",
|
||||
"Virtual Employee Experience": "https://venturebeat.com/tag/virtual-employee-experience/",
|
||||
"Programming & Development": "https://venturebeat.com/category/programming-development/",
|
||||
"Product Development": "https://venturebeat.com/tag/product-development/",
|
||||
"Application Development": "https://venturebeat.com/tag/application-development/",
|
||||
"Test Management": "https://venturebeat.com/tag/test-management/",
|
||||
"Development Languages": "https://venturebeat.com/tag/development-languages/",
|
||||
"Gemini 2.0 Flash ushers in a new era of real-time multimodal AI": "https://venturebeat.com/ai/gemini-2-0-flash-ushers-in-a-new-era-of-real-time-multimodal-ai/",
|
||||
"Nvidia unveils next-gen AI and industrial digitalization capabilities at Microsoft Ignite": "https://venturebeat.com/ai/nvidia-unveils-next-gen-ai-and-industrial-digitalization-capabilities-at-microsoft-ignite/",
|
||||
"New LLM optimization technique slashes memory costs up to 75%": "https://venturebeat.com/ai/new-llm-optimization-technique-slashes-memory-costs-up-to-75/",
|
||||
"Geopolitics and AI will affect the chip industry in 2025 | KPMG": "https://venturebeat.com/ai/geopolitics-and-ai-will-affect-the-chip-industry-in-2025-kpmg/",
|
||||
"Dean Takahashi": "https://venturebeat.com/author/dean-takahashi/",
|
||||
"MidJourney adds Pinterest-like ‘moodboards’ and support for multiple custom AI image models": "https://venturebeat.com/ai/midjourney-adds-pinterest-like-moodboards-and-support-for-multiple-custom-ai-image-models/",
|
||||
"Carl Franzen": "https://venturebeat.com/author/carlfranzen/",
|
||||
"Slack’s AI agents promise to reshape productivity with contextual power": "https://venturebeat.com/ai/slacks-ai-agents-promise-to-reshape-productivity-with-contextual-power/",
|
||||
"Michael Nuñez": "https://venturebeat.com/author/michael_nunez/",
|
||||
"OpenAI updates ChatGPT Search with voice queries, faster results, mobile maps integration": "https://venturebeat.com/ai/openai-updates-chatgpt-search-with-voice-queries-faster-results-mobile-maps-integration/",
|
||||
"Google debuts new AI video generator Veo 2 claiming better audience scores than Sora": "https://venturebeat.com/ai/google-debuts-new-ai-video-generator-veo-2-claiming-better-audience-scores-than-sora/",
|
||||
"Emilia David": "https://venturebeat.com/author/emilia-david/",
|
||||
"See how Google Gemini 2.0 Flash can perform hours of business analysis in minutes": "https://venturebeat.com/ai/google-gemini-2-0-flash-test-drive-reveals-why-every-analyst-needs-to-know-this-modelgoogle-gemini-2-0-flash-test-drive-why-every-analyst-needs-to-know-this-model/",
|
||||
"Louis Columbus": "https://venturebeat.com/author/louis-columbus/",
|
||||
"We’ve come a long way from RPA: How AI agents are revolutionizing automation": "https://venturebeat.com/ai/weve-come-a-long-way-from-rpa-how-ai-agents-are-revolutionizing-automation/",
|
||||
"Rohan Sharma, Zenolabs": "https://venturebeat.com/author/rohan-sharma-zenolabs/",
|
||||
"Synthetic data has its limits — why human-sourced data can help prevent AI model collapse": "https://venturebeat.com/ai/synthetic-data-has-its-limits-why-human-sourced-data-can-help-prevent-ai-model-collapse/",
|
||||
"Rick Song, Persona": "https://venturebeat.com/author/rick-song/",
|
||||
"Cohere’s smallest, fastest R-series model excels at RAG, reasoning in 23 languages": "https://venturebeat.com/ai/coheres-smallest-fastest-r-series-model-excels-at-rag-reasoning-in-23-languages/",
|
||||
"Taryn Plumb": "https://venturebeat.com/author/taryn-plumb/",
|
||||
"OpenAI launches ChatGPT Projects, letting you organize files, chats in groups": "https://venturebeat.com/ai/openai-launches-chatgpt-projects-letting-you-organize-files-chats-in-groups/",
|
||||
"Shutterstock pioneers ‘research license’ model with Lightricks, lowering barriers to AI training data": "https://venturebeat.com/ai/shutterstock-pioneers-research-license-model-with-lightricks-lowering-barriers-to-ai-training-data/",
|
||||
"Pika 2.0 launches in wake of Sora, integrating your own characters, objects, scenes in new AI videos": "https://venturebeat.com/ai/pika-2-0-launches-in-wake-of-sora-integrating-your-own-characters-objects-scenes-in-new-ai-videos/",
|
||||
"NotebookLM updates Business to Plus with more audio, lets all users interact with AI hosts": "https://venturebeat.com/ai/notebooklm-updates-business-to-plus-more-audio-all-users-interact-with-ai-hosts/",
|
||||
"Microsoft’s smaller AI model beats the big guys: Meet Phi-4, the efficiency king": "https://venturebeat.com/ai/microsofts-smaller-ai-model-beats-the-big-guys-meet-phi-4-the-efficiency-king/",
|
||||
"Nvidia": "https://venturebeat.com/author/nvidia/",
|
||||
"Lambda launches ‘inference-as-a-service’ API claiming lowest costs in AI industry": "https://venturebeat.com/ai/lambda-launches-inference-as-a-service-api-claiming-lowest-costs/",
|
||||
"Anthropic’s fastest model, Claude 3.5 Haiku, now generally available": "https://venturebeat.com/ai/claude-3-5-haiku-chatbot-now-generally-available/",
|
||||
"IP Copilot wants to use AI to turn your Slack messages into patents": "https://venturebeat.com/ai/ip-copilot-wants-to-use-ai-to-turn-your-slack-messages-into-patents/",
|
||||
"Pin thinks AI can fix recruitment’s biggest problems — and it has the numbers to prove it": "https://venturebeat.com/ai/pin-thinks-ai-can-fix-recruitments-biggest-problems-and-it-has-the-numbers-to-prove-it/",
|
||||
"OpenAI rolls out ChatGPT for iPhone in landmark AI integration with Apple": "https://venturebeat.com/ai/openai-rolls-out-chatgpt-for-iphone-in-landmark-ai-integration-with-apple/",
|
||||
"Midjourney is launching a multiplayer collaborative worldbuilding tool called ‘Patchwork’": "https://venturebeat.com/ai/midjourney-is-launching-a-multiplayer-collaborative-worldbuilding-tool/",
|
||||
"‘Not there yet’: Sora rollout receives mixed response from AI filmmakers citing inconsistent results, content restrictions": "https://venturebeat.com/ai/not-there-yet-sora-rollout-receives-mixed-response-from-ai-filmmakers-citing-inconsistent-results-content-restrictions/",
|
||||
"Google Gemini 2.0: Could this be the beginning of truly autonomous AI?": "https://venturebeat.com/ai/google-gemini-2-0-could-this-be-the-beginning-of-truly-autonomous-ai/",
|
||||
"Google’s new Trillium AI chip delivers 4x speed and powers Gemini 2.0": "https://venturebeat.com/ai/google-new-trillium-ai-chip-delivers-4x-speed-and-powers-gemini-2-0/",
|
||||
"Google unveils AI coding assistant ‘Jules,’ promising autonomous bug fixes and faster development cycles": "https://venturebeat.com/ai/google-unveils-ai-coding-assistant-jules-promising-autonomous-bug-fixes-and-faster-development-cycles/",
|
||||
"Scaling AI: Platform best practices": "https://venturebeat.com/ai/scaling-ai-platform-best-practices/",
|
||||
"Abhijit Bose, Capital One": "https://venturebeat.com/author/abhijit-bose-capital-one/",
|
||||
"The future of AI regulation is up in the air: What’s your next move?": "https://venturebeat.com/ai/the-future-of-ai-regulation-is-up-in-the-air-whats-your-next-move/",
|
||||
"Jen Larsen": "https://venturebeat.com/author/jenniferlarson/",
|
||||
"Open partners with Will Smith on social commerce merch on Open SuperApp": "https://venturebeat.com/games/open-partners-with-will-smith-on-social-commerce-merch-on-open-superapp/",
|
||||
"How RapidCanvas automates 70% of data tasks for gen AI projects": "https://venturebeat.com/data-infrastructure/how-rapidcanvas-automates-70-of-data-tasks-for-gen-ai-projects/",
|
||||
"Shubham Sharma": "https://venturebeat.com/author/shubham-sharma/",
|
||||
"Sapient debuts with new AI architectures, aiming to beat Transformers’ reasoning with recurrent neural networks": "https://venturebeat.com/ai/singapore-startup-sapient-enters-global-enterprise-ai-race-with-new-model-architectures/",
|
||||
"OpenAI’s o1 model doesn’t show its thinking, giving open source an advantage": "https://venturebeat.com/ai/heres-how-openai-o1-might-lose-ground-to-open-source-models/",
|
||||
"Ben Dickson": "https://venturebeat.com/author/ben-dickson-techtalks/",
|
||||
"OpenAI expands ChatGPT Canvas to all users": "https://venturebeat.com/ai/openai-expands-chatgpt-canvas-to-all-users/",
|
||||
"Realtime AI video analysis app Lloyd will offer developer kit after passing 50,000 users": "https://venturebeat.com/ai/realtime-ai-video-analysis-app-lloyd-will-offer-developer-kit-after-passing-50000-users/",
|
||||
"ServiceNow open sources Fast-LLM in a bid to help enterprises train AI models 20% quicker": "https://venturebeat.com/ai/servicenow-open-sources-fast-llm-in-a-bid-to-help-enterprises-train-ai-models-20x-quicker/",
|
||||
"Sean Michael Kerner": "https://venturebeat.com/author/sean-michael-kerner/",
|
||||
"Lam Research launches collaborative robots to optimize critical maintenance in chip factories": "https://venturebeat.com/ai/lam-research-launches-collaborative-robots-to-optimize-critical-maintenance-in-chip-factories/",
|
||||
"Solos launches AirGo Vision — ChatGPT-enabled AI smart glasses with a camera": "https://venturebeat.com/ai/solos-launches-airgo-vision-chatgpt-enabled-ai-smart-glasses-with-a-camera/",
|
||||
"Defending SOCs Under Siege: Battling Adversarial AI Attacks": "https://venturebeat.com/security/defending-socs-battling-adversarial-attacks/",
|
||||
"2024": "https://venturebeat.com/2024/",
|
||||
"Jan": "https://venturebeat.com/2014/01/",
|
||||
"Feb": "https://venturebeat.com/2014/02/",
|
||||
"Mar": "https://venturebeat.com/2014/03/",
|
||||
"Apr": "https://venturebeat.com/2014/04/",
|
||||
"May": "https://venturebeat.com/2014/05/",
|
||||
"Jun": "https://venturebeat.com/2014/06/",
|
||||
"Jul": "https://venturebeat.com/2014/07/",
|
||||
"Aug": "https://venturebeat.com/2014/08/",
|
||||
"Sep": "https://venturebeat.com/2014/09/",
|
||||
"Oct": "https://venturebeat.com/2014/10/",
|
||||
"Nov": "https://venturebeat.com/2014/11/",
|
||||
"Dec": "https://venturebeat.com/2014/12/",
|
||||
"2023": "https://venturebeat.com/2023/",
|
||||
"2022": "https://venturebeat.com/2022/",
|
||||
"2021": "https://venturebeat.com/2021/",
|
||||
"2020": "https://venturebeat.com/2020/",
|
||||
"2019": "https://venturebeat.com/2019/",
|
||||
"2018": "https://venturebeat.com/2018/",
|
||||
"2017": "https://venturebeat.com/2017/",
|
||||
"2016": "https://venturebeat.com/2016/",
|
||||
"2015": "https://venturebeat.com/2015/",
|
||||
"2014": "https://venturebeat.com/2014/",
|
||||
"Follow us on Facebook": "https://www.facebook.com/venturebeat/",
|
||||
"Follow us on X": "https://twitter.com/venturebeat",
|
||||
"Follow us on LinkedIn": "https://www.linkedin.com/company/venturebeat",
|
||||
"Follow us on RSS": "https://feeds.feedburner.com/venturebeat/SZYF",
|
||||
"Press Releases": "https://venturebeat.com/tag/business-sponsored-company-news/",
|
||||
"Contact Us": "https://venturebeat.com/contact/",
|
||||
"Advertise": "https://media.venturebeat.com/",
|
||||
"Contribute to DataDecisionMakers": "https://venturebeat.com/guest-posts/",
|
||||
"Privacy Policy": "https://venturebeat.com/privacy-policy/",
|
||||
"Terms of Service": "https://venturebeat.com/terms-of-service/",
|
||||
"VentureBeat": "https://venturebeat.com/"
|
||||
}
|
Before Width: | Height: | Size: 2.7 MiB |
@ -1,114 +0,0 @@
|
||||
Skip to main content
|
||||
Events
|
||||
Video
|
||||
Special Issues
|
||||
Jobs
|
||||
Subscribe
|
||||
Artificial Intelligence
|
||||
Security
|
||||
Data Infrastructure
|
||||
Automation
|
||||
Enterprise Analytics
|
||||
More
|
||||
AI
|
||||
Gemini 2.0 Flash ushers in a new era of real-time multimodal AI
|
||||
Nvidia unveils next-gen AI and industrial digitalization capabilities at Microsoft Ignite
|
||||
New LLM optimization technique slashes memory costs up to 75%
|
||||
Geopolitics and AI will affect the chip industry in 2025 | KPMG
|
||||
Dean Takahashi December 16, 2024 9:00 PM
|
||||
MidJourney adds Pinterest-like ‘moodboards’ and support for multiple custom AI image models
|
||||
Carl Franzen December 16, 2024 2:16 PM
|
||||
EXCLUSIVE
|
||||
Slack’s AI agents promise to reshape productivity with contextual power
|
||||
Michael Nuñez December 16, 2024 1:26 PM
|
||||
OpenAI updates ChatGPT Search with voice queries, faster results, mobile maps integration
|
||||
Carl Franzen December 16, 2024 10:42 AM
|
||||
Google debuts new AI video generator Veo 2 claiming better audience scores than Sora
|
||||
Emilia David December 16, 2024 9:24 AM
|
||||
ANALYSIS
|
||||
See how Google Gemini 2.0 Flash can perform hours of business analysis in minutes
|
||||
Louis Columbus December 16, 2024 7:17 AM
|
||||
GUEST
|
||||
We’ve come a long way from RPA: How AI agents are revolutionizing automation
|
||||
Rohan Sharma, Zenolabs December 15, 2024 4:15 PM
|
||||
GUEST
|
||||
Synthetic data has its limits — why human-sourced data can help prevent AI model collapse
|
||||
Rick Song, Persona December 14, 2024 12:05 PM
|
||||
Cohere’s smallest, fastest R-series model excels at RAG, reasoning in 23 languages
|
||||
Taryn Plumb December 13, 2024 4:27 PM
|
||||
OpenAI launches ChatGPT Projects, letting you organize files, chats in groups
|
||||
Emilia David December 13, 2024 1:56 PM
|
||||
Shutterstock pioneers ‘research license’ model with Lightricks, lowering barriers to AI training data
|
||||
Michael Nuñez December 13, 2024 11:11 AM
|
||||
Pika 2.0 launches in wake of Sora, integrating your own characters, objects, scenes in new AI videos
|
||||
Carl Franzen December 13, 2024 10:53 AM
|
||||
NotebookLM updates Business to Plus with more audio, lets all users interact with AI hosts
|
||||
Emilia David December 13, 2024 9:09 AM
|
||||
Microsoft’s smaller AI model beats the big guys: Meet Phi-4, the efficiency king
|
||||
Michael Nuñez December 12, 2024 5:10 PM
|
||||
VB LAB INSIGHTS
|
||||
Nvidia unveils next-gen AI and industrial digitalization capabilities at Microsoft Ignite
|
||||
Nvidia December 12, 2024 1:08 PM
|
||||
EXCLUSIVE
|
||||
Lambda launches ‘inference-as-a-service’ API claiming lowest costs in AI industry
|
||||
Carl Franzen December 12, 2024 11:19 AM
|
||||
Anthropic’s fastest model, Claude 3.5 Haiku, now generally available
|
||||
Carl Franzen December 12, 2024 8:40 AM
|
||||
EXCLUSIVE
|
||||
IP Copilot wants to use AI to turn your Slack messages into patents
|
||||
Michael Nuñez December 12, 2024 6:00 AM
|
||||
EXCLUSIVE
|
||||
Pin thinks AI can fix recruitment’s biggest problems — and it has the numbers to prove it
|
||||
Michael Nuñez December 12, 2024 3:00 AM
|
||||
OpenAI rolls out ChatGPT for iPhone in landmark AI integration with Apple
|
||||
Michael Nuñez December 11, 2024 1:54 PM
|
||||
Midjourney is launching a multiplayer collaborative worldbuilding tool called ‘Patchwork’
|
||||
Carl Franzen December 11, 2024 11:58 AM
|
||||
‘Not there yet’: Sora rollout receives mixed response from AI filmmakers citing inconsistent results, content restrictions
|
||||
Carl Franzen December 11, 2024 8:10 AM
|
||||
Google Gemini 2.0: Could this be the beginning of truly autonomous AI?
|
||||
Michael Nuñez December 11, 2024 7:30 AM
|
||||
Google’s new Trillium AI chip delivers 4x speed and powers Gemini 2.0
|
||||
Michael Nuñez December 11, 2024 7:30 AM
|
||||
Google unveils AI coding assistant ‘Jules,’ promising autonomous bug fixes and faster development cycles
|
||||
Michael Nuñez December 11, 2024 7:29 AM
|
||||
VB LAB INSIGHTS
|
||||
Scaling AI: Platform best practices
|
||||
Abhijit Bose, Capital One December 11, 2024 7:08 AM
|
||||
VB EVENT
|
||||
The future of AI regulation is up in the air: What’s your next move?
|
||||
Jen Larsen December 11, 2024 6:44 AM
|
||||
Open partners with Will Smith on social commerce merch on Open SuperApp
|
||||
Dean Takahashi December 11, 2024 6:30 AM
|
||||
EXCLUSIVE
|
||||
How RapidCanvas automates 70% of data tasks for gen AI projects
|
||||
Shubham Sharma December 11, 2024 5:00 AM
|
||||
EXCLUSIVE
|
||||
Sapient debuts with new AI architectures, aiming to beat Transformers’ reasoning with recurrent neural networks
|
||||
Carl Franzen December 10, 2024 3:09 PM
|
||||
OpenAI’s o1 model doesn’t show its thinking, giving open source an advantage
|
||||
Ben Dickson December 10, 2024 3:09 PM
|
||||
OpenAI expands ChatGPT Canvas to all users
|
||||
Emilia David December 10, 2024 12:17 PM
|
||||
Realtime AI video analysis app Lloyd will offer developer kit after passing 50,000 users
|
||||
Carl Franzen December 10, 2024 12:06 PM
|
||||
ServiceNow open sources Fast-LLM in a bid to help enterprises train AI models 20% quicker
|
||||
Sean Michael Kerner December 10, 2024 6:00 AM
|
||||
Lam Research launches collaborative robots to optimize critical maintenance in chip factories
|
||||
Dean Takahashi December 10, 2024 6:00 AM
|
||||
Solos launches AirGo Vision — ChatGPT-enabled AI smart glasses with a camera
|
||||
Dean Takahashi December 10, 2024 6:00 AM
|
||||
FEATURE
|
||||
Defending SOCs Under Siege: Battling Adversarial AI Attacks
|
||||
Louis Columbus December 9, 2024 12:07 PM
|
||||
Load more articles
|
||||
Press Releases
|
||||
Contact Us
|
||||
Advertise
|
||||
Share a News Tip
|
||||
Contribute to DataDecisionMakers
|
||||
Privacy Policy
|
||||
Terms of Service
|
||||
Do Not Sell My Personal Information
|
||||
|
||||
© 2024 VentureBeat. All rights reserved.
|
@ -1,169 +0,0 @@
|
||||
{
|
||||
"账号设置": "https://36kr.com/usercenter/account-password",
|
||||
"我的关注": "https://36kr.com/usercenter/follow",
|
||||
"我的收藏": "https://36kr.com/usercenter/favorite",
|
||||
"申请的报道": "https://36kr.com/seek-report-new?tabKey=2",
|
||||
"36氪Auto": "https://img.36krcdn.com/hsossms/20230605/v2_384be8e4c1e942a28cf13a2e427fe211@18900718_oswg78404oswg320oswg320_img_png",
|
||||
"数字时氪": "https://img.36krcdn.com/hsossms/20230605/v2_636063907bdc44389b46e7db9c761a38@18900718_oswg62424oswg320oswg320_img_png",
|
||||
"未来消费": "https://img.36krcdn.com/hsossms/20230210/v2_38d1cdabc8404b00806de58cbedb3b7b_oswg27031oswg320oswg320_img_png",
|
||||
"智能涌现": "https://img.36krcdn.com/hsossms/20230605/v2_da74c43ba887426f8fbccaede691b844@18900718_oswg76573oswg320oswg320_img_png",
|
||||
"未来城市": "https://img.36krcdn.com/hsossms/20230209/v2_8c2233c88a854c6496ff4f7842a9f9dd_oswg17629oswg320oswg320_img_png",
|
||||
"启动Power on": "https://img.36krcdn.com/hsossms/20230605/v2_632f36f1c5904a539a1e57efe4497e3a@18900718_oswg63630oswg320oswg320_img_png",
|
||||
"36氪出海": "https://36kr.com/user/11918142",
|
||||
"36氪研究院": "https://img.36krcdn.com/hsossms/20230605/v2_89fa42090fae495ca5e45ba921ee42ff@18900718_oswg65306oswg320oswg320_img_png",
|
||||
"潮生TIDE": "https://img.36krcdn.com/hsossms/20231204/v2_3b8447ffdda24a38a30fd839fd934baa@000000_oswg40121oswg430oswg430_img_jpeg",
|
||||
"36氪企服点评": "https://img.36krcdn.com/hsossms/20230605/v2_c4720503500642d294b5be04064ef870@18900718_oswg58529oswg320oswg320_img_png",
|
||||
"36氪财经": "https://img.36krcdn.com/hsossms/20230209/v2_d6d3f8b57fa04507915c48adf0f9620d_oswg16586oswg320oswg320_img_png",
|
||||
"职场bonus": "https://img.36krcdn.com/hsossms/20230605/v2_efc94b0cce7043dbac883c1dfe00c810@18900718_oswg57046oswg320oswg320_img_png",
|
||||
"36碳": "https://img.36krcdn.com/hsossms/20230209/v2_9eb02027be264174b61b9d49c391ca75_oswg15571oswg320oswg320_img_png",
|
||||
"后浪研究所": "https://img.36krcdn.com/hsossms/20230605/v2_86f220b69e164751946d583b5472c857@18900718_oswg97988oswg320oswg320_img_png",
|
||||
"暗涌Waves": "https://img.36krcdn.com/hsossms/20230209/v2_0c6a697748b54beea356d6e1f1fcec5f_oswg17066oswg320oswg320_img_png",
|
||||
"硬氪": "https://img.36krcdn.com/hsossms/20230209/v2_2f845ed16244458d8887a5526c63c6d6_oswg17346oswg320oswg320_img_png",
|
||||
"企业号": "https://36kr.com/information/qiyehao/",
|
||||
"企服点评": "https://www.36dianping.com/",
|
||||
"36Kr研究院": "https://36kr.com/academe",
|
||||
"36Kr创新咨询": "https://innovation.36kr.com",
|
||||
"核心服务": "https://www.36kr.com/p/2492318105786505",
|
||||
"城市之窗": "https://36kr.com/policy",
|
||||
"创投发布": "https://topics.36kr.com/topic/1645523444931974",
|
||||
"LP源计划": "https://36kr.com/LPlan",
|
||||
"VClub": "https://36kr.com/VClub",
|
||||
"VClub投资机构库": "https://36kr.com/organization/",
|
||||
"投资机构职位推介": "https://36kr.com/topics/1620276089894403",
|
||||
"投资人认证": "https://pitchhub.36kr.com/audit-investor",
|
||||
"寻求报道": "https://36kr.com/seek-report-new",
|
||||
"36氪Pro": "https://img.36krcdn.com/hsossms/20230209/v2_95565530d4d94dc4ad904f3131c7b690_oswg23055oswg320oswg320_img_png",
|
||||
"创投氪堂": "https://topics.36kr.com/topic/1961250130199045",
|
||||
"企业入驻": "https://36kr.com/project-form/settled",
|
||||
"首页": "https://36kr.com/",
|
||||
"快讯": "https://36kr.com/newsflashes/",
|
||||
"资讯": "https://36kr.com/information/web_news/",
|
||||
"推荐": "https://36kr.com/information/web_recommend",
|
||||
"财经": "https://36kr.com/information/ccs/",
|
||||
"AI": "https://36kr.com/information/AI/",
|
||||
"自助报道": "https://36kr.com/information/aireport/",
|
||||
"浙江": "https://36kr.com/local/zhejiang",
|
||||
"最新": "https://36kr.com/information/web_news/latest/",
|
||||
"创投": "https://36kr.com/information/contact/",
|
||||
"汽车": "https://36kr.com/information/travel",
|
||||
"科技": "https://36kr.com/information/technology",
|
||||
"专精特新": "https://36kr.com/information/shuzihua/",
|
||||
"直播": "https://36kr.com/live/channel",
|
||||
"视频": "https://36kr.com/video/",
|
||||
"专题": "https://36kr.com/topics/",
|
||||
"活动": "https://36kr.com/activity",
|
||||
"广东": "https://36kr.com/local/guangdong",
|
||||
"江苏": "https://36kr.com/local/jiangsu",
|
||||
"四川": "https://36kr.com/local/sichuan",
|
||||
"河南": "https://36kr.com/local/henan",
|
||||
"湖北": "https://36kr.com/local/hubei",
|
||||
"安徽": "https://36kr.com/local/anhui",
|
||||
"海南": "https://36kr.com/local/hainan",
|
||||
"陕西": "https://36kr.com/local/xian",
|
||||
"重庆": "https://36kr.com/local/chongqing",
|
||||
"山东": "https://36kr.com/local/qingdao",
|
||||
"湖南": "https://36kr.com/local/hunan",
|
||||
"贵州": "https://36kr.com/local/guizhou",
|
||||
"城市合作": "https://36kr.com/station-business",
|
||||
"创新": "https://36kr.com/information/innovate/",
|
||||
"企服": "https://36kr.com/information/enterpriseservice/",
|
||||
"消费": "https://36kr.com/information/happy_life",
|
||||
"城市": "https://36kr.com/information/real_estate/",
|
||||
"职场": "https://36kr.com/information/web_zhichang",
|
||||
"红人": "https://36kr.com/information/sensation/",
|
||||
"其他": "https://36kr.com/information/other/",
|
||||
"医美这个“浑水”:美团“趟”的姿势对吗?": "https://36kr.com/p/3082527849478278",
|
||||
"王兴与美团": "https://36kr.com/motif/327686340609",
|
||||
"互联网江湖": "https://36kr.com/user/158547",
|
||||
"谷歌发了个新模型,顺手证明Sora才是最菜的": "https://36kr.com/p/3082527741917577",
|
||||
"人工智能·AI": "https://36kr.com/motif/327686782977",
|
||||
"36氪的朋友们": "https://36kr.com/user/375349",
|
||||
"CTO“互跳”背后,国货美妆研发迭代提速": "https://36kr.com/p/3082517596110340",
|
||||
"关于消费的一切": "https://36kr.com/motif/327685832705",
|
||||
"未来迹FBeauty": "https://36kr.com/user/5728075",
|
||||
"极越CEO夏一平发长文道歉,随后又悄悄删掉……": "https://36kr.com/p/3082516985641344",
|
||||
"汽车出行": "https://36kr.com/motif/327687127041",
|
||||
"智东西": "https://36kr.com/user/453363432",
|
||||
"大疆自动驾驶,获中国销量TOP 2车企同时入股": "https://36kr.com/p/3082506448976256",
|
||||
"智能车参考": "https://36kr.com/user/5507103",
|
||||
"24万“AI民工”血汗,哺出一个95后亿万富豪": "https://36kr.com/p/3082789740673414",
|
||||
"硅谷前沿资讯": "https://36kr.com/motif/327687520257",
|
||||
"ChatGPT搜索,全球免费,Her动嘴实时搜,暴打谷歌边聊边搜": "https://36kr.com/p/3082498003761536",
|
||||
"新智元": "https://36kr.com/user/574825230",
|
||||
"8万元买个“碗”,有年轻人,靠“修仙”暴富了?": "https://36kr.com/p/3082486369122696",
|
||||
"正解局": "https://36kr.com/user/19903073",
|
||||
"从设计师的角度,聊聊我眼中的 Apple Watch": "https://36kr.com/p/3082481593776259",
|
||||
"王者苹果?": "https://36kr.com/motif/327686176769",
|
||||
"少数派": "https://36kr.com/user/569821167",
|
||||
"74亿,阿里巴巴出售银泰百货": "https://36kr.com/p/3082477692632576",
|
||||
"阿里的疆域": "https://36kr.com/motif/327686094849",
|
||||
"联商网": "https://36kr.com/user/5389615",
|
||||
"半年狂赚46亿,富二代创业拿捏中产,“最和睦富豪家族”正有序接班?": "https://36kr.com/p/3082466745907593",
|
||||
"创投圈秘事": "https://36kr.com/motif/1654014377589128",
|
||||
"金融八卦女": "https://36kr.com/user/5952300",
|
||||
"迈凯伦又被卖了,这次出手的是蔚来第一大股东": "https://36kr.com/p/3082509185005952",
|
||||
"爱范儿": "https://36kr.com/user/16637033",
|
||||
"私域运营深度解析:6大策略提升客户生命周期价值": "https://36kr.com/p/3082434740813574",
|
||||
"运营须知手册": "https://36kr.com/motif/327686438913",
|
||||
"丰宪飞": "https://36kr.com/user/1984794148",
|
||||
"我在东南亚卖茶饮,200万“重注”霸王茶姬": "https://36kr.com/p/3082431621398272",
|
||||
"温度纪": "https://36kr.com/user/5237149",
|
||||
"谈谈人工智能时代的数据战略": "https://36kr.com/p/3082400738130307",
|
||||
"王建峰": "https://36kr.com/user/5814876",
|
||||
"探秘虚拟消费:2024游戏及网络服务行业营销趋势洞察": "https://36kr.com/p/3082362389741057",
|
||||
"游戏圈大事件": "https://36kr.com/motif/327687553025",
|
||||
"增长黑盒": "https://36kr.com/user/5894234",
|
||||
"赌上一切的李彦宏可能真要赢?": "https://36kr.com/p/3081146190511624",
|
||||
"争议下的百度": "https://36kr.com/motif/327686111233",
|
||||
"BT财经": "https://36kr.com/user/5131460",
|
||||
"氪星晚报 | 贵州茅台:回购股份前期工作即将完成;蚂蚁集团1亿在上海成立科技公司,含多项AI业务;蜜雪冰城回应多个城市门店涨价:运营成本变化": "https://36kr.com/p/3082795042453640",
|
||||
"早晚报": "https://36kr.com/motif/327685521409",
|
||||
"卜算籽": "https://36kr.com/user/5724308",
|
||||
"出海速递|特朗普会见TikTok CEO周受资/中国短剧出海刺激日本龙头入局": "https://36kr.com/p/3082709770336645",
|
||||
"出海是门大生意": "https://36kr.com/motif/327687405569",
|
||||
"「先享后付」暗藏陷阱,线下消费该如何避坑?": "https://36kr.com/p/3082745274908417",
|
||||
"雷科技": "https://36kr.com/user/1547419282",
|
||||
"增程2.0时代:小米、小鹏入场,谁能领跑增程下半场": "https://36kr.com/p/3081576353677058",
|
||||
"新造车势力又搞事": "https://36kr.com/motif/327685996545",
|
||||
"HiEV": "https://36kr.com/user/5719300",
|
||||
"学校新来的AI体育老师,量身定制每天1小时最合理运动计划": "https://36kr.com/p/3082776912591235",
|
||||
"时氪分享": "https://36kr.com/user/354993",
|
||||
"职场每日必读": "https://36kr.com/motif/327686520833",
|
||||
"瞎说职场": "https://36kr.com/user/1993786828",
|
||||
"茶饮界的「小镇王者」,再战港交所": "https://36kr.com/p/3082754962503808",
|
||||
"港股": "https://36kr.com/motif/887345179633929",
|
||||
"凤凰网科技": "https://36kr.com/user/1883322323",
|
||||
"AI+玩偶:是儿童市场的新风口,还是智能硬件的老泡沫?": "https://36kr.com/p/3082747890153609",
|
||||
"深响": "https://36kr.com/user/909678552",
|
||||
"半月暴涨3万亿,资金正疯狂涌入": "https://36kr.com/p/3082704821467528",
|
||||
"格隆汇": "https://36kr.com/user/727315692",
|
||||
"谁为AI事故负责?": "https://36kr.com/p/3082707205126531",
|
||||
"腾讯研究院": "https://36kr.com/user/108218233",
|
||||
"特斯拉新车遭遇重大自动驾驶系统问题,极氪7X登陆欧洲市场|海外日报": "https://36kr.com/p/3082752368654467",
|
||||
"行业日报": "https://36kr.com/motif/1856406379189897",
|
||||
"EV Focus 日报": "https://36kr.com/user/6130289",
|
||||
"狂砸8000亿的“烧钱巨兽”,在全球整容成功": "https://36kr.com/p/3082718051088770",
|
||||
"互联网新鲜事": "https://36kr.com/motif/327689814017",
|
||||
"金错刀": "https://36kr.com/user/19499439",
|
||||
"这一轮地铁建设,谁是赢家": "https://36kr.com/p/3082720871479430",
|
||||
"城市风向标": "https://36kr.com/motif/1042447708897025",
|
||||
"时代周报": "https://36kr.com/user/5258135",
|
||||
"如视数字空间综合解决方案引领者": "https://36kr.com/user/6004667",
|
||||
"查看更多企业": "https://36kr.com/enterprises-list",
|
||||
"投资者关系": "http://ir.36kr.com",
|
||||
"关于我们": "https://36kr.com/pages/about",
|
||||
"加入我们": "https://zhaopin.36kr.com",
|
||||
"36氪欧洲站": "https://eu.36kr.com/de",
|
||||
"Ai产品日报": "https://www.aicpb.com",
|
||||
"网络谣言信息举报入口": "https://36kr.com/refute-rumor-notice",
|
||||
"热门资讯": "https://36kr.com/hot-list/catalog",
|
||||
"热门产品": "https://36kr.com/project",
|
||||
"文章标签": "https://36kr.com/tags",
|
||||
"快讯标签": "https://36kr.com/nftags",
|
||||
"阿里云": "https://www.aliyun.com/",
|
||||
"网上有害信息举报": "https://www.12377.cn",
|
||||
"京ICP备12031756号-6": "https://beian.miit.gov.cn/#/Integrated/index",
|
||||
"京ICP证150143号": "https://dxzhgl.miit.gov.cn/dxxzsp/xkz/xkzgl/resource/qiyesearch.jsp?num=%25E5%258C%2597%25E4%25BA%25AC%25E5%25A4%259A%25E6%25B0%25AA%25E4%25BF%25A1%25E6%2581%25AF%25E7%25A7%2591%25E6%258A%2580%25E6%259C%2589%25E9%2599%2590%25E5%2585%25AC%25E5%258F%25B8&type=xuke",
|
||||
"京公网安备11010502036099号": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502036099",
|
||||
"意见反馈": "https://36kr.com/mform/1755983296602372"
|
||||
}
|
Before Width: | Height: | Size: 1.2 MiB |
@ -1,317 +0,0 @@
|
||||
登录
|
||||
搜索
|
||||
36氪Auto
|
||||
数字时氪
|
||||
未来消费
|
||||
智能涌现
|
||||
未来城市
|
||||
启动Power on
|
||||
36氪出海
|
||||
36氪研究院
|
||||
潮生TIDE
|
||||
36氪企服点评
|
||||
36氪财经
|
||||
职场bonus
|
||||
36碳
|
||||
后浪研究所
|
||||
暗涌Waves
|
||||
硬氪
|
||||
媒体品牌
|
||||
企业号
|
||||
企服点评
|
||||
36Kr研究院
|
||||
36Kr创新咨询
|
||||
企业服务
|
||||
核心服务
|
||||
城市之窗
|
||||
政府服务
|
||||
创投发布
|
||||
LP源计划
|
||||
VClub
|
||||
VClub投资机构库
|
||||
投资机构职位推介
|
||||
投资人认证
|
||||
投资人服务
|
||||
寻求报道
|
||||
36氪Pro
|
||||
创投氪堂
|
||||
企业入驻
|
||||
创业者服务
|
||||
创投平台
|
||||
首页
|
||||
快讯
|
||||
资讯
|
||||
推荐
|
||||
财经
|
||||
AI
|
||||
自助报道
|
||||
浙江
|
||||
最新
|
||||
创投
|
||||
汽车
|
||||
科技
|
||||
专精特新
|
||||
直播
|
||||
视频
|
||||
专题
|
||||
活动
|
||||
搜索
|
||||
寻求报道
|
||||
我要入驻
|
||||
城市合作
|
||||
最新
|
||||
推荐
|
||||
创投
|
||||
财经
|
||||
汽车
|
||||
AI
|
||||
科技
|
||||
自助报道
|
||||
专精特新
|
||||
创新
|
||||
企服
|
||||
消费
|
||||
城市
|
||||
职场
|
||||
企业号
|
||||
红人
|
||||
其他
|
||||
科技
|
||||
|
||||
医美这个“浑水”:美团“趟”的姿势对吗?
|
||||
|
||||
美团医美:屠龙少年还是恶龙?
|
||||
来自主题:王兴与美团|互联网江湖
|
||||
8分钟前
|
||||
科技
|
||||
|
||||
谷歌发了个新模型,顺手证明Sora才是最菜的
|
||||
|
||||
看来,在这场AI战争中,还有的是逆转的好戏。
|
||||
来自主题:人工智能·AI|36氪的朋友们
|
||||
17分钟前
|
||||
推荐
|
||||
|
||||
CTO“互跳”背后,国货美妆研发迭代提速
|
||||
|
||||
系统性思维
|
||||
来自主题:关于消费的一切|未来迹FBeauty
|
||||
32分钟前
|
||||
汽车
|
||||
|
||||
极越CEO夏一平发长文道歉,随后又悄悄删掉……
|
||||
|
||||
百度、吉利为老车主兜底。
|
||||
来自主题:汽车出行|智东西
|
||||
33分钟前
|
||||
科技
|
||||
|
||||
大疆自动驾驶,获中国销量TOP 2车企同时入股
|
||||
|
||||
“量产10万级智能车”
|
||||
来自主题:人工智能·AI|智能车参考
|
||||
33分钟前
|
||||
科技
|
||||
|
||||
24万“AI民工”血汗,哺出一个95后亿万富豪
|
||||
|
||||
华人AI数据标注独角兽陷用工争议。
|
||||
来自主题:硅谷前沿资讯|智东西
|
||||
34分钟前
|
||||
科技
|
||||
|
||||
ChatGPT搜索,全球免费,Her动嘴实时搜,暴打谷歌边聊边搜
|
||||
|
||||
ChatGPT搜索功能,全球免费用户可用了!更令人惊喜的是,搜索将集成到Her中,可以让我们实时通话进行搜索。
|
||||
来自主题:人工智能·AI|新智元
|
||||
35分钟前
|
||||
推荐
|
||||
|
||||
8万元买个“碗”,有年轻人,靠“修仙”暴富了?
|
||||
|
||||
七天学费一万元,“玄学灰产”突然火起来了?
|
||||
来自主题:关于消费的一切|正解局
|
||||
36分钟前
|
||||
科技
|
||||
|
||||
从设计师的角度,聊聊我眼中的 Apple Watch
|
||||
|
||||
从设计师视角聊聊 Apple Watch
|
||||
来自主题:王者苹果?|少数派
|
||||
39分钟前
|
||||
科技
|
||||
|
||||
74亿,阿里巴巴出售银泰百货
|
||||
|
||||
银泰百货缩水近百亿。
|
||||
来自主题:阿里的疆域|联商网
|
||||
39分钟前
|
||||
科技
|
||||
|
||||
半年狂赚46亿,富二代创业拿捏中产,“最和睦富豪家族”正有序接班?
|
||||
|
||||
这个地方真的“盛产霸总”。
|
||||
来自主题:创投圈秘事|金融八卦女
|
||||
40分钟前
|
||||
汽车
|
||||
|
||||
迈凯伦又被卖了,这次出手的是蔚来第一大股东
|
||||
|
||||
造 SUV,是超跑品牌的唯一出路。
|
||||
来自主题:汽车出行|爱范儿
|
||||
41分钟前
|
||||
职场
|
||||
|
||||
私域运营深度解析:6大策略提升客户生命周期价值
|
||||
|
||||
私域运营的3个段位,你处在哪个段位呢?
|
||||
来自主题:运营须知手册|丰宪飞
|
||||
42分钟前
|
||||
推荐
|
||||
|
||||
我在东南亚卖茶饮,200万“重注”霸王茶姬
|
||||
|
||||
普通人加盟茶饮难“成角儿”
|
||||
来自主题:关于消费的一切|温度纪
|
||||
43分钟前
|
||||
科技
|
||||
|
||||
谈谈人工智能时代的数据战略
|
||||
|
||||
谈谈人工智能时代的数据战略
|
||||
来自主题:人工智能·AI|王建峰
|
||||
43分钟前
|
||||
消费
|
||||
|
||||
探秘虚拟消费:2024游戏及网络服务行业营销趋势洞察
|
||||
|
||||
借助内容创意撬动用户增长的杠杆?
|
||||
来自主题:游戏圈大事件|增长黑盒
|
||||
45分钟前
|
||||
科技
|
||||
|
||||
赌上一切的李彦宏可能真要赢?
|
||||
|
||||
大模型企业到了见真章的时候,赌上一切的李彦宏可能真要赢?
|
||||
来自主题:争议下的百度|BT财经
|
||||
51分钟前
|
||||
推荐
|
||||
|
||||
氪星晚报 | 贵州茅台:回购股份前期工作即将完成;蚂蚁集团1亿在上海成立科技公司,含多项AI业务;蜜雪冰城回应多个城市门店涨价:运营成本变化
|
||||
|
||||
软银正在围绕PayPay重组其集团金融服务;奇瑞汽车1650万成立新科技公司,含太阳能发电技术服务业务;OPPO申请一键问屏商标
|
||||
来自主题:早晚报|卜算籽
|
||||
52分钟前
|
||||
推荐
|
||||
|
||||
出海速递|特朗普会见TikTok CEO周受资/中国短剧出海刺激日本龙头入局
|
||||
|
||||
查阅更多出海好文章,请移步出海官网 letschuhai.com。
|
||||
来自主题:出海是门大生意|36氪出海
|
||||
1小时前
|
||||
推荐
|
||||
|
||||
「先享后付」暗藏陷阱,线下消费该如何避坑?
|
||||
|
||||
最好的避坑方法就是不要提前消费。
|
||||
来自主题:关于消费的一切|雷科技
|
||||
1小时前
|
||||
汽车
|
||||
|
||||
增程2.0时代:小米、小鹏入场,谁能领跑增程下半场
|
||||
|
||||
头部车企集体拥抱增程。
|
||||
来自主题:新造车势力又搞事|HiEV
|
||||
1小时前
|
||||
科技
|
||||
|
||||
学校新来的AI体育老师,量身定制每天1小时最合理运动计划
|
||||
|
||||
宇视科技AI文教体:为孩子、为明天、为未来。
|
||||
来自主题:人工智能·AI|时氪分享
|
||||
1小时前
|
||||
职场
|
||||
|
||||
面试后为什么HR不给回复?
|
||||
|
||||
如果面试没通过,HR就直说就好,为啥「装聋作哑」呢?
|
||||
来自主题:职场每日必读|瞎说职场
|
||||
1小时前
|
||||
推荐
|
||||
|
||||
茶饮界的「小镇王者」,再战港交所
|
||||
|
||||
茶饮新贵上市潮要来了?
|
||||
来自主题:港股|凤凰网科技
|
||||
1小时前
|
||||
科技
|
||||
|
||||
AI+玩偶:是儿童市场的新风口,还是智能硬件的老泡沫?
|
||||
|
||||
门槛不高、玩家众多,尚有广阔空白市场。
|
||||
来自主题:人工智能·AI|深响
|
||||
1小时前
|
||||
科技
|
||||
|
||||
半月暴涨3万亿,资金正疯狂涌入
|
||||
|
||||
又一个黑科技即将爆发?
|
||||
来自主题:人工智能·AI|格隆汇
|
||||
1小时前
|
||||
科技
|
||||
|
||||
谁为AI事故负责?
|
||||
|
||||
AI时代,侵权责任制度往何处去?
|
||||
来自主题:人工智能·AI|腾讯研究院
|
||||
1小时前
|
||||
推荐
|
||||
|
||||
特斯拉新车遭遇重大自动驾驶系统问题,极氪7X登陆欧洲市场|海外日报
|
||||
|
||||
12 月 17 日 EV Focus 海外日报
|
||||
来自主题:行业日报|EV Focus 日报
|
||||
1小时前
|
||||
科技
|
||||
|
||||
狂砸8000亿的“烧钱巨兽”,在全球整容成功
|
||||
|
||||
烧钱巨兽,彻底赚回脸面
|
||||
来自主题:互联网新鲜事|金错刀
|
||||
1小时前
|
||||
|
||||
这一轮地铁建设,谁是赢家
|
||||
|
||||
郑州苏州,增量明显
|
||||
来自主题:城市风向标|时代周报
|
||||
1小时前
|
||||
查看更多
|
||||
推荐企业
|
||||
换一换
|
||||
如视
|
||||
数字空间综合解决方案引领者
|
||||
查看更多企业
|
||||
关于36氪
|
||||
城市合作
|
||||
寻求报道
|
||||
我要入驻
|
||||
投资者关系
|
||||
商务合作
|
||||
关于我们
|
||||
联系我们
|
||||
加入我们
|
||||
36氪欧洲站
|
||||
36氪欧洲站
|
||||
36氪欧洲站
|
||||
Ai产品日报
|
||||
网络谣言信息举报入口
|
||||
热门推荐
|
||||
热门资讯
|
||||
热门产品
|
||||
文章标签
|
||||
快讯标签
|
||||
合作伙伴
|
||||
36氪APP下载
|
||||
iOS & Android
|
||||
本站由 阿里云 提供计算与安全服务 违法和不良信息、未成年人保护举报电话:010-89650707 举报邮箱:jubao@36kr.com 网上有害信息举报
|
||||
© 2011~2024 北京多氪信息科技有限公司 | 京ICP备12031756号-6 | 京ICP证150143号 | 京公网安备11010502036099号
|
@ -1,177 +0,0 @@
|
||||
{
|
||||
"北极星电力网": "https://www.bjx.com.cn/",
|
||||
"火电": "https://huodian.bjx.com.cn",
|
||||
"风电": "https://fd.bjx.com.cn",
|
||||
"光伏": "https://guangfu.bjx.com.cn",
|
||||
"水电": "https://shuidian.bjx.com.cn",
|
||||
"售电": "https://news.bjx.com.cn/rankinglist/shoudian/",
|
||||
"储能": "https://news.bjx.com.cn/rankinglist/chuneng/",
|
||||
"氢能": "https://news.bjx.com.cn/rankinglist/qingneng/",
|
||||
"环保": "https://huanbao.bjx.com.cn",
|
||||
"信息化": "https://xinxihua.bjx.com.cn/",
|
||||
"智能电网": "https://news.bjx.com.cn/rankinglist/zndw/",
|
||||
"核电": "https://news.bjx.com.cn/rankinglist/hedian/",
|
||||
"综合能源服务": "https://news.bjx.com.cn/zhuanti/2019zhnyfw/",
|
||||
"能源": "https://energy.bjx.com.cn/",
|
||||
"输配电": "https://news.bjx.com.cn/rankinglist/shupeidian/",
|
||||
"碳管家": "https://tanguanjia.bjx.com.cn/",
|
||||
"农电": "https://nongdian.bjx.com.cn",
|
||||
"电池": "https://news.bjx.com.cn/rankinglist/battery/",
|
||||
"大气": "https://daqi.bjx.com.cn/",
|
||||
"水处理": "https://scljob.bjx.com.cn",
|
||||
"固废": "https://gfcl.bjx.com.cn/",
|
||||
"节能": "https://jnjob.bjx.com.cn",
|
||||
"垃圾发电": "https://ljfd.bjx.com.cn/",
|
||||
"环境修复": "https://hjxfjob.bjx.com.cn",
|
||||
"环境监测": "https://hjjc.bjx.com.cn/",
|
||||
"环卫": "https://huanwei.bjx.com.cn/",
|
||||
"VOCs": "https://vocs.bjx.com.cn/",
|
||||
"北极星招聘": "https://hr.bjx.com.cn",
|
||||
"电力": "https://dljob.bjx.com.cn",
|
||||
"环保发电": "https://hbfdjob.bjx.com.cn",
|
||||
"电力工程": "https://dlgcjob.bjx.com.cn",
|
||||
"碳管理": "https://tanjob.bjx.com.cn",
|
||||
"风电场投资及运营": "https://fdjob.bjx.com.cn/industry/flfd/",
|
||||
"风电整机": "https://fdjob.bjx.com.cn/industry/fdzj/",
|
||||
"叶片及材料": "https://fdjob.bjx.com.cn/industry/ypjcl/",
|
||||
"风电工程": "https://fdjob.bjx.com.cn/industry/fedgc/",
|
||||
"发电机及元件": "https://fdjob.bjx.com.cn/industry/fdjjyj/",
|
||||
"塔筒/塔架": "https://fdjob.bjx.com.cn/industry/tttj/",
|
||||
"控制系统": "https://fdjob.bjx.com.cn/industry/kzxt/",
|
||||
"光伏电池组件": "https://gfjob.bjx.com.cn/industry/gfdcjzj/",
|
||||
"光伏电站及运维": "https://gfjob.bjx.com.cn/industry/gfdz/",
|
||||
"光伏逆变器": "https://gfjob.bjx.com.cn/industry/gfnbq/",
|
||||
"分布式光伏": "https://gfjob.bjx.com.cn/industry/fbsgf/",
|
||||
"工商业光伏": "https://gfjob.bjx.com.cn/industry/gsygf/",
|
||||
"户用光伏": "https://gfjob.bjx.com.cn/industry/hygf/",
|
||||
"光伏系统工程": "https://gfjob.bjx.com.cn/industry/gfgc/",
|
||||
"光伏零部件": "https://gfjob.bjx.com.cn/industry/gfxtlbj/",
|
||||
"光伏原材料及辅料": "https://gfjob.bjx.com.cn/industry/gfcljsb/",
|
||||
"储能电池": "https://cnjob.bjx.com.cn/industry/cndc/",
|
||||
"储能系统": "https://cnjob.bjx.com.cn/industry/cnjs/",
|
||||
"储能电站": "https://cnjob.bjx.com.cn/industry/cndz/",
|
||||
"工商业储能": "https://cnjob.bjx.com.cn/industry/gsycn/",
|
||||
"储能工程": "https://cnjob.bjx.com.cn/industry/cngc/",
|
||||
"储能材料及零部件": "https://cnjob.bjx.com.cn/industry/dccl/",
|
||||
"光储充一体化": "https://cnjob.bjx.com.cn/industry/xnyqc/",
|
||||
"户用储能": "https://cnjob.bjx.com.cn/industry/cnyy/",
|
||||
"电池材料": "https://dccljob.bjx.com.cn",
|
||||
"电池生产": "https://dcscjob.bjx.com.cn",
|
||||
"电池应用": "https://dcyyjob.bjx.com.cn",
|
||||
"电池回收": "https://dchsjob.bjx.com.cn",
|
||||
"电池技术": "https://dcjsjob.bjx.com.cn",
|
||||
"固废处理": "https://gfcljob.bjx.com.cn",
|
||||
"大气治理": "https://dqzljob.bjx.com.cn",
|
||||
"检测环评": "https://jchpjob.bjx.com.cn",
|
||||
"环保工程": "https://hbgcjob.bjx.com.cn",
|
||||
"环保设备": "https://hbsbjob.bjx.com.cn",
|
||||
"电气": "https://dqjob.bjx.com.cn",
|
||||
"自动化": "https://zdhjob.bjx.com.cn",
|
||||
"电力信息化": "https://xxhjob.bjx.com.cn",
|
||||
"工程": "https://gcjob.bjx.com.cn",
|
||||
"工程设计": "https://sjjob.bjx.com.cn",
|
||||
"工程监理": "https://jljob.bjx.com.cn",
|
||||
"工程造价": "https://gczjjob.bjx.com.cn",
|
||||
"市政路桥工程": "https://szlqjob.bjx.com.cn",
|
||||
"建筑工程": "https://jzjob.bjx.com.cn",
|
||||
"轨道工程": "https://gdjob.bjx.com.cn",
|
||||
"机电工程": "https://jdjob.bjx.com.cn",
|
||||
"直播": "https://tv.bjx.com.cn",
|
||||
"公开课": "https://tv.bjx.com.cn/list/?type=2",
|
||||
"空中宣讲": "https://tv.bjx.com.cn/list/?type=3",
|
||||
"云招聘": "https://tv.bjx.com.cn/list/?type=4",
|
||||
"星培计划": "https://tv.bjx.com.cn/list/?type=5",
|
||||
"高端访谈": "https://tv.bjx.com.cn/list/?type=7",
|
||||
"校企专访": "https://tv.bjx.com.cn/list/?type=8",
|
||||
"课程": "https://edu.bjx.com.cn/course/0-0-0-0-0-1/",
|
||||
"图书": "https://edu.bjx.com.cn/book/0-0-0-1/",
|
||||
"线下活动": "https://edu.bjx.com.cn/activity/",
|
||||
"学社APP": "https://news.bjx.com.cn/zt/app/index.html",
|
||||
"电力商务通": "https://b2b.bjx.com.cn/",
|
||||
"环保设备网": "https://hbshebei.bjx.com.cn/",
|
||||
"北极星社区": "https://club.bjx.com.cn/",
|
||||
"电力会展网": "https://ex.bjx.com.cn/",
|
||||
"环保会展网": "https://huanbao.bjx.com.cn/ex",
|
||||
"光伏会展网": "https://guangfu.bjx.com.cn/ex/",
|
||||
"电力专题": "https://www.bjx.com.cn/zt/",
|
||||
"环保专题": "https://huanbao.bjx.com.cn/zt/",
|
||||
"新闻": "https://news.bjx.com.cn/",
|
||||
"政策": "https://news.bjx.com.cn/zc/",
|
||||
"招投标": "https://news.bjx.com.cn/zb/",
|
||||
"项目": "https://news.bjx.com.cn/xm/",
|
||||
"技术": "https://news.bjx.com.cn/js/",
|
||||
"数据": "https://news.bjx.com.cn/sj/",
|
||||
"报告": "https://news.bjx.com.cn/bg/",
|
||||
"社区": "https://club.bjx.com.cn",
|
||||
"下载": "https://download.bjx.com.cn/",
|
||||
"市场": "https://news.bjx.com.cn/sc/",
|
||||
"名企": "https://news.bjx.com.cn/mq/",
|
||||
"独家": "https://news.bjx.com.cn/dj/",
|
||||
"人物": "https://huanbao.bjx.com.cn/hbrw.shtml",
|
||||
"评论": "https://news.bjx.com.cn/pl/",
|
||||
"国际": "https://news.bjx.com.cn/gj/",
|
||||
"招聘": "https://hr.bjx.com.cn/",
|
||||
"学社": "https://edu.bjx.com.cn/",
|
||||
"商务通": "https://b2b.bjx.com.cn/",
|
||||
"专题": "http://www.bjx.com.cn/zt/",
|
||||
"企业注册": "https://companycenter.bjx.com.cn/Account/Register/",
|
||||
"企业登录": "https://companycenter.bjx.com.cn/Account/logon/",
|
||||
"电力总榜": "https://news.bjx.com.cn/rankinglist/dianli/",
|
||||
"火力发电": "https://news.bjx.com.cn/rankinglist/huodian/",
|
||||
"风力发电": "https://news.bjx.com.cn/rankinglist/fengdian/",
|
||||
"太阳能光伏": "https://news.bjx.com.cn/rankinglist/tyngf/",
|
||||
"水力发电": "https://news.bjx.com.cn/rankinglist/shuidian/",
|
||||
"全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!": "https://news.bjx.com.cn/html/20241217/1417290.shtml",
|
||||
"氢动科技助力交通强国建设": "https://news.bjx.com.cn/html/20241217/1417217.shtml",
|
||||
"阳光氢能/中集扬州/盛氢制氢/派瑞氢能/京电设备/大陆制氢/华光环能入围中国能建葛洲坝公司制氢设备厂家名单!": "https://news.bjx.com.cn/html/20241217/1417323.shtml",
|
||||
"总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!": "https://news.bjx.com.cn/html/20241217/1417362.shtml",
|
||||
"50万吨绿色甲醇项目进度刷新!": "https://news.bjx.com.cn/html/20241217/1417280.shtml",
|
||||
"清洁能源国际创新联盟成立!": "https://news.bjx.com.cn/html/20241217/1417261.shtml",
|
||||
"全国首家氢能交易平台上线": "https://news.bjx.com.cn/html/20241217/1417365.shtml",
|
||||
"二氧化碳耦合绿氢制甲醇 吉利创新中心牵手世界500强": "https://news.bjx.com.cn/html/20241217/1417357.shtml",
|
||||
"年产10万吨绿氢制60万吨绿氨生产线项目设计招标!": "https://news.bjx.com.cn/html/20241217/1417312.shtml",
|
||||
"中国能建中电工程与中核汇能签订战略合作协议!": "https://news.bjx.com.cn/html/20241217/1417299.shtml",
|
||||
"隆基氢能与欧洲客户携手推进北欧重要氢能项目!": "https://news.bjx.com.cn/html/20241217/1417359.shtml",
|
||||
"1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!": "https://news.bjx.com.cn/html/20241217/1417374.shtml",
|
||||
"广元发展集团“氢”装上阵 抢跑“零碳”新赛道": "https://news.bjx.com.cn/html/20241217/1417220.shtml",
|
||||
"总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进": "https://news.bjx.com.cn/html/20241217/1417364.shtml",
|
||||
"河北迁安:发展氢能产业助力绿色发展": "https://news.bjx.com.cn/html/20241217/1417363.shtml",
|
||||
"中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目": "https://news.bjx.com.cn/html/20241217/1417366.shtml",
|
||||
"中国钢研签署纯氢冶金项目": "https://news.bjx.com.cn/html/20241217/1417395.shtml",
|
||||
"我国首个工厂化海水直接制氢科研项目建成!": "https://news.bjx.com.cn/html/20241216/1416935.shtml",
|
||||
"青海发布加快推动氢能产业高质量发展的若干政策措施": "https://news.bjx.com.cn/html/20241216/1416925.shtml",
|
||||
"加氢站运营补贴150万元/年!浙江临海市氢能产业发展扶持政策征意见": "https://news.bjx.com.cn/html/20241216/1416942.shtml",
|
||||
"一场奇妙的职场冒险,缺你不可!运维类岗位热招中": "https://gfjob.bjx.com.cn/specials/101782.html",
|
||||
"12月校招急聘专场,更快找到offer": "https://dljob.bjx.com.cn/specials/101812.html",
|
||||
"12月央/国企最新校招专场": "https://dljob.bjx.com.cn/specials/101807.html",
|
||||
"应届生冬季实习专场": "https://dljob.bjx.com.cn/specials/101810.html",
|
||||
"告别漫长等待!这些企业处理简历速度快极了": "https://gfjob.bjx.com.cn/specials/101809.html",
|
||||
"四川二滩建设咨询有限公司在招安全监理工程师、光伏运维人员(站长、值长、运维工程师)等8个职位": "https://hr.bjx.com.cn/companys/52594/jobs_0_1/",
|
||||
"河南省同信电力工程有限公司在招风电/光伏项目场长、风电/光伏项目经理等51个职位": "https://hr.bjx.com.cn/companys/113324/jobs_0_1/",
|
||||
"中蒲电力集团有限公司在招保洁、清舱、工程车司机等11个职位": "https://hr.bjx.com.cn/companys/125067/jobs_0_1/",
|
||||
"徐州云迈环保科技有限公司在招钳工、生产计划/物料管理(PMC)/BOM物料清单管理工程师(大厂)等140个职位": "https://hr.bjx.com.cn/companys/135499/jobs_0_1/",
|
||||
"深圳市远信储能技术有限公司在招电站运维工程师、逆变器结构工程师等10个职位": "https://hr.bjx.com.cn/companys/158359/jobs_0_1/",
|
||||
"更多>": "https://edu.bjx.com.cn",
|
||||
"课程集中式光伏项目全流程支持性文件概述": "https://edu.bjx.com.cn/s/67109308.html",
|
||||
"课程储能电站安全运维管理方案": "https://edu.bjx.com.cn/s/67109294.html",
|
||||
"课程锂离子电池储能中的安全问题及应对技术(限时免费)": "https://edu.bjx.com.cn/s/67109353.html",
|
||||
"课程光伏电站股权收购的流程和风险分析": "https://edu.bjx.com.cn/s/67109396.html",
|
||||
"课程《零碳生态&绿色未来》系列公益公开课": "https://edu.bjx.com.cn/s/67109299.html",
|
||||
"课程分布式光伏电站建设“避坑指南”": "https://edu.bjx.com.cn/s/67109355.html",
|
||||
"在线直播": "https://tv.bjx.com.cn/",
|
||||
"关于北极星": "http://www.bjx.com.cn/about/about.html",
|
||||
"广告服务": "http://www.bjx.com.cn/about/baojia_index.html",
|
||||
"会员服务": "https://companycenter.bjx.com.cn/common/hybz",
|
||||
"营销方案": "http://www.bjx.com.cn/about/yxfa.html",
|
||||
"网站地图": "https://map.bjx.com.cn/",
|
||||
"成功案例": "http://www.bjx.com.cn/about/about.html?=#s6",
|
||||
"联系我们": "http://www.bjx.com.cn/about/lxwm.html",
|
||||
"京ICP证080169号": "http://img.mybjx.net/theme/default/images/common/renzeng/icp1.jpg",
|
||||
"京ICP备09003304号-2": "https://beian.miit.gov.cn/#/Integrated/index",
|
||||
"京公网安备11010502034458号": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010502034458",
|
||||
"电子公告服务专项备案": "https://www.bjx.com.cn/icp.html",
|
||||
"广播电视节目制作经营许可证 (京) 字第13229号": "http://img.mybjx.net/theme/default/images/common/renzeng/gbjmzz.jpg",
|
||||
"出版物经营许可证新出发京批字第直200384号": "http://img.mybjx.net/theme/default/images/common/renzeng/cbwjy.jpg",
|
||||
"人力资源服务许可证1101052014340号": "http://img.mybjx.net/theme/default/images/common/renzeng/hrrlzyxk.jpg",
|
||||
"北京火山动力网络技术有限公司": "http://img.mybjx.net/theme/default/images/common/renzeng/yingyezhizheng.jpg"
|
||||
}
|
Before Width: | Height: | Size: 1.7 MiB |
@ -1,262 +0,0 @@
|
||||
新闻政策招投标项目技术火电风电光伏储能售电招聘学社直播商务通专题
|
||||
企业注册企业登录个人注册个人登录
|
||||
北极星氢能排行榜
|
||||
|
||||
为您提供更方便,更快捷的优质内容查找途径
|
||||
|
||||
电力总榜火力发电风力发电太阳能光伏水力发电核电储能电池输配电氢能智能电网售电
|
||||
今日本周本月
|
||||
1
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
|
||||
来源:吉林省人民政府网7小时前
|
||||
|
||||
12月16日,吉林省委书记黄强,省委副书记、省长胡玉亭在长春会见中国钢研科技集团党委书记、董事长张少明和总经理高宏斌一行,并见证省政府、松原市政府分别与中国钢研签署战略合作框架协议、纯氢冶金项目合作协议。黄强、胡玉亭向张少明、高宏斌一行表示欢迎,对中国钢研给予吉林的大力支持表示感谢。
|
||||
|
||||
2
|
||||
氢动科技助力交通强国建设
|
||||
|
||||
来源:氢动科技10小时前
|
||||
|
||||
2024年2月20日,中华人民共和国交通运输部发布公告:《交通运输部关于国家电力投资集团有限公司开展重卡换电站建设组网与运营示范等交通强国建设试点工作的意见》。意见明确指出开展“氢燃料电池研发与氢能交通运营平台应用”建设试点。同时,氢动科技在宁波舟山港承担绿色港航物流示范项目建设。氢动
|
||||
|
||||
3
|
||||
阳光氢能/中集扬州/盛氢制氢/派瑞氢能/京电设备/大陆制氢/华光环能入围中国能建葛洲坝公司制氢设备厂家名单!
|
||||
|
||||
来源:中国能建电子采购平台5小时前
|
||||
|
||||
12月16日,中国能建葛洲坝油气公司制氢设备预采购公告发布,预采购范围:制氢设备,包括1000Nm3/h碱性电解槽、气液分离装置、纯化装置、补水配碱装置1套,两年期运维服务。设备生产厂家限定如下范围:(1)阳光氢能科技有限公司(2)中集中电(扬州)制氢设备有限公司(3)广东盛氢制氢设备有限公司(4
|
||||
|
||||
04
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
|
||||
来源:通辽统计微讯3小时前
|
||||
|
||||
近日,内蒙古天楹能源有限公司投资建设的风光储氢氨一体化产业园示范项目开工建设,项目位于内蒙古通辽市科左中旗产业园宝龙山工业园区内。项目总投资37.0亿元,建设内容为新建一座氢氨工厂及其配套设施,共配置33套制氢单元,每个单元配置4套1000Nm3/h电解槽设备。合成氨建设规模为45万吨/年,其分为3
|
||||
|
||||
05
|
||||
50万吨绿色甲醇项目进度刷新!
|
||||
|
||||
来源:北极星氢能网8小时前
|
||||
|
||||
近日,北极星氢能网获悉,金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。该项目创新应用风—氢—储—生物质多能协同耦合技术,打通了新能源制氢向化工行业的发展通道。建成投产后,将依托200万千瓦风电
|
||||
|
||||
06
|
||||
清洁能源国际创新联盟成立!
|
||||
|
||||
来源:北极星氢能网9小时前
|
||||
|
||||
12月17日,2024绿色航运大会在海南盛大开幕。会议上,清洁能源国际创新联盟成立。清洁能源国际创新联盟是在海南省发展和改革委员会支持下,由西门子能源、国家能源集团海南电力有限公司和海南国际经济发展局三方倡议发起,由企业、专业机构和国际性社会组织自愿组成的国际化行业性社会组织,旨在推动清
|
||||
|
||||
07
|
||||
全国首家氢能交易平台上线
|
||||
|
||||
来源:美锦能源3小时前
|
||||
|
||||
北极星氢能网获悉,12月16日,美锦能源举行全国首家氢能交易平台上线仪式。中国氢能交易平台将围绕制氢厂、物流企业、气体贸易商、加氢站、工业客户等主要用户,提供价格资讯发布、线上挂牌与交易、线上签约与支付结算功能,为供需双方提供一站式交易服务。实现了氢能产业与数字化技术的深度融合,促进
|
||||
|
||||
08
|
||||
二氧化碳耦合绿氢制甲醇 吉利创新中心牵手世界500强
|
||||
|
||||
来源:宁波前湾新区发布4小时前
|
||||
|
||||
近日,吉利创新中心与世界500强企业霍尼韦尔签署战略合作协议,双方将基于各自优势,在二氧化碳捕集、捕集二氧化碳耦合绿氢制取电子甲醇、电子甲醇制取可持续航空燃料SAF技术合作以及其他服务于高质量低碳可持续发展的先进技术等多个领域达成了合作意向。用绿色甲醇破解世界能源和双碳难题,吉利创新中
|
||||
|
||||
09
|
||||
年产10万吨绿氢制60万吨绿氨生产线项目设计招标!
|
||||
|
||||
来源:北极星氢能网6小时前
|
||||
|
||||
新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标公告新疆氢基能源科技有限公司成立于2024年08月27日,注册地位于新疆塔城地区沙湾市哈拉干德工业园区产业孵化园黄河路1-48号,法定代表人为范华伟。经营范围包括一般项目:技术服务、技术开发、技术咨询、技术交流、技术转让、
|
||||
|
||||
10
|
||||
中国能建中电工程与中核汇能签订战略合作协议!
|
||||
|
||||
来源:中国能建中电工程6小时前
|
||||
|
||||
12月16日,中国能建首席科学家,中电工程党委书记、董事长,电规总院院长罗必雄与中核汇能有限公司党委书记、董事长张焰座谈,双方围绕大通道大基地的项目开发、工程建设等方面进行深入交流并见证签约。中核汇能党委委员、副总经理欧阳朝晖,中电工程党委常委、副总经理王新平代表双方签署战略合作协议
|
||||
|
||||
11
|
||||
隆基氢能与欧洲客户携手推进北欧重要氢能项目!
|
||||
|
||||
来源:隆基氢能3小时前
|
||||
|
||||
12月17日,北极星氢能网获悉,隆基氢能近期与某欧洲客户成功签订电解槽系统采购订单,将为位于挪威的具有里程碑意义的绿氢项目提供多台套千立方级的安全、高效、低电耗的Hi1系列电解槽及其辅助系统(BoP)。该项目计划于2026年开始运营,通过以电子燃料(e-fuels)替代化石燃料,为全球气候目标的实现
|
||||
|
||||
12
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
|
||||
来源:中国招标投标公共服务平台2小时前
|
||||
|
||||
北极星氢能网获悉,12月16日,新疆俊瑞富蕴县新能源规模化制绿氢项目设计采购施工一体化总承包中标结果公示,中标人:中建三局第三建设工程有限责任公司,项目资金为124286万元。项目规模:年产1.44万吨绿氢。总规划面积为199998平方米,总建筑面积87998平方米,建(构)筑物基地面积64400平方米,道路硬
|
||||
|
||||
13
|
||||
广元发展集团“氢”装上阵 抢跑“零碳”新赛道
|
||||
|
||||
来源:广元市国资委10小时前
|
||||
|
||||
在“双碳”目标的时代大考与绿色发展的浪潮之下,广元发展集团紧扣市委、市政府赋予的定位与主责主业,将发展新质生产力作为首要关键任务,在氢能产业这片新“蓝海”中破浪前行,全力加快布局,为广元市抢占“零碳”发展先机注入强劲动力。广元发展集团深刻领悟发展氢能产业对于我国践行“碳达峰、碳中
|
||||
|
||||
14
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
|
||||
来源:中国大丰港3小时前
|
||||
|
||||
近日,在盐城吉电绿氢制储运加用一体化示范项目建设现场,呈现出一片热火朝天的繁忙景象。机械的轰鸣声、工具的碰撞声、工人的呼喊声交织在一起,奏响了一曲激昂的建设乐章,工人们都在争分夺秒地加速施工,全力以赴确保项目如期高质量完成。该项目计划总投资158.5亿元,规划用地1000亩,分三期逐步推
|
||||
|
||||
15
|
||||
河北迁安:发展氢能产业助力绿色发展
|
||||
|
||||
来源:新华网3小时前
|
||||
|
||||
北极星氢能网获悉,12月15日,工人在河北省迁安市一家氢燃料电池发动机企业的生产车间工作。近年来,河北省迁安市加快培育氢能产业,打造制氢、氢燃料电池发动机制造基地,推行氢燃料重卡运输大宗货物,助力绿色低碳发展。据介绍,目前该市年产车用氢气9000多吨、重卡氢燃料电池发动机5000台,区域内投
|
||||
|
||||
16
|
||||
中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目
|
||||
|
||||
来源:能建氢能3小时前
|
||||
|
||||
北极星氢能网获悉,近日,中能建氢能源有限公司党委书记、董事长李京光在通辽市拜访通辽市委副书记、市长奇·达楞太,双方围绕加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目以及打造通辽市氢能产业链集群等问题进行深入交流,并达成广泛共识。奇·达楞太对李京光一行的到访表示欢迎,对2024年6月18日
|
||||
|
||||
17
|
||||
中国钢研签署纯氢冶金项目
|
||||
|
||||
来源:中国钢研37分钟前
|
||||
|
||||
北极星氢能网获悉,12月16日,中国钢研与吉林省政府、松原市政府分别签署战略合作框架协议、纯氢冶金项目合作协议。中国钢研党委书记、董事长张少明介绍了中国钢研建设的全球首条5万吨纯氢冶金示范工程。该工程对我国高端钢铁新材料和钢铁行业低碳发展、绿电及绿氢规模化消纳、资源综合开发利用和资源
|
||||
|
||||
18
|
||||
我国首个工厂化海水直接制氢科研项目建成!
|
||||
|
||||
来源:青岛西海岸发布昨天
|
||||
|
||||
北极星氢能网获悉,12月13日,我国首个工厂化海水直接制氢科研项目在青岛西海岸新区青岛炼化氢能“产研加”示范园内建成试运行。据了解,此次建成的海水制氢项目,由青岛炼化和中石化大连院共同开发建设,是我国首次直接在石化园区实施并实现产品回收应用的百千瓦级工厂化海水制氢项目。项目采用“海水
|
||||
|
||||
19
|
||||
青海发布加快推动氢能产业高质量发展的若干政策措施
|
||||
|
||||
来源:青海省发展和改革委员会昨天
|
||||
|
||||
北极星氢能网获悉,12月10日,青海省发展和改革委员会发布了《青海省加快推动氢能产业高质量发展的若干政策措施》的通知。通知指出:加快推进关键核心技术攻关,对符合要求氢能领域科技成果转化和示范应用项目,积极申请国家超长期国债资金支持。积极发展可再生能源制氢。在落实氢能应用场景的前提下,
|
||||
|
||||
20
|
||||
加氢站运营补贴150万元/年!浙江临海市氢能产业发展扶持政策征意见
|
||||
|
||||
来源:临海市人民政府昨天
|
||||
|
||||
北极星氢能网获悉,12月13日,浙江临海市发布《临海市氢能产业发展扶持政策》(征求意见稿)。该扶持政策的征求意见稿指出,支持氢能项目投资。对临海市氢能产业投资项目:生产性设备投资额500万元(含)以上的,按设备投资额的15%给予补助,最高500万元;生产性设备投资额500万元以下的,按设备投资额的
|
||||
|
||||
最新热点
|
||||
中国钢研签署纯氢冶金项目
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目
|
||||
全国首家氢能交易平台上线
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
河北迁安:发展氢能产业助力绿色发展
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
隆基氢能与欧洲客户携手推进北欧重要氢能项目!
|
||||
二氧化碳耦合绿氢制甲醇 吉利创新中心牵手世界500强
|
||||
阳光氢能/中集扬州/盛氢制氢/派瑞氢能/京电设备/大陆制氢/华光环能入围中国能建葛洲坝公司制氢设备厂家名单!
|
||||
招聘
|
||||
更多>
|
||||
|
||||
一场奇妙的职场冒险,缺你不可!运维类岗位热招中
|
||||
|
||||
12月校招急聘专场,更快找到offer
|
||||
|
||||
12月央/国企最新校招专场
|
||||
|
||||
应届生冬季实习专场
|
||||
|
||||
告别漫长等待!这些企业处理简历速度快极了
|
||||
|
||||
一场奇妙的职场冒险,缺你不可!运维类岗位热招中
|
||||
|
||||
12月校招急聘专场,更快找到offer
|
||||
|
||||
四川二滩建设咨询有限公司在招安全监理工程师、光伏运维人员(站长、值长、运维工程师)等8个职位
|
||||
绩效奖金 | 带薪年假 | 交通补助
|
||||
|
||||
河南省同信电力工程有限公司在招风电/光伏项目场长、风电/光伏项目经理等51个职位
|
||||
|
||||
中蒲电力集团有限公司在招保洁、清舱、工程车司机等11个职位
|
||||
绩效奖金 | 定期体检 | 节日礼物
|
||||
|
||||
徐州云迈环保科技有限公司在招钳工、生产计划/物料管理(PMC)/BOM物料清单管理工程师(大厂)等140个职位
|
||||
|
||||
深圳市远信储能技术有限公司在招电站运维工程师、逆变器结构工程师等10个职位
|
||||
年底双薪 | 绩效奖金 | 带薪年假
|
||||
|
||||
学社
|
||||
更多>
|
||||
课程
|
||||
|
||||
集中式光伏项目全流程支持性文件概述
|
||||
|
||||
课程
|
||||
|
||||
储能电站安全运维管理方案
|
||||
|
||||
课程
|
||||
|
||||
锂离子电池储能中的安全问题及应对技术(限时免费)
|
||||
|
||||
课程
|
||||
|
||||
光伏电站股权收购的流程和风险分析
|
||||
|
||||
课程
|
||||
|
||||
《零碳生态&绿色未来》系列公益公开课
|
||||
|
||||
课程
|
||||
|
||||
分布式光伏电站建设“避坑指南”
|
||||
|
||||
便捷入口
|
||||
|
||||
在线直播
|
||||
|
||||
招聘服务
|
||||
|
||||
北极星学社
|
||||
|
||||
关于我们
|
||||
|
||||
关于北极星
|
||||
|
||||
广告服务
|
||||
|
||||
会员服务
|
||||
|
||||
营销方案
|
||||
|
||||
网站地图
|
||||
|
||||
成功案例
|
||||
|
||||
联系我们
|
||||
|
||||
网站运营
|
||||
|
||||
北京火山动力网络技术有限公司
|
||||
|
||||
北京市朝阳区世通国际大厦C座12层
|
||||
|
||||
广告合作:崔女士 18911066791
|
||||
|
||||
陈女士 17701031159
|
||||
|
||||
合作投稿:陈女士 13693626116
|
||||
|
||||
会展合作:齐女士 13381061157
|
||||
|
||||
会员咨询:李先生 17718308761
|
||||
|
||||
法务邮箱:fw@bjxmail.com
|
||||
|
||||
京ICP证080169号京ICP备09003304号-2京公网安备11010502034458号电子公告服务专项备案
|
||||
|
||||
广播电视节目制作经营许可证 (京) 字第13229号出版物经营许可证新出发京批字第直200384号人力资源服务许可证1101052014340号
|
||||
|
||||
Copyright © 2024 Bjx.com.cn All Rights Reserved. 北京火山动力网络技术有限公司 版权所有
|
@ -1,269 +0,0 @@
|
||||
focus statement: #新获批的氢能项目
|
||||
#新投产的氢能项目
|
||||
|
||||
|
||||
raw materials: 407948
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 25.593686819076538
|
||||
|
||||
author and publish time(not formated): {'source': '吉林省人民政府网', 'publish_date': '2023-12-17'}
|
||||
infos(not formated):
|
||||
新获批的氢能项目: 北极星氢能排行榜为您提供更方便,更快捷的优质内容查找途径电力总榜火力发电风力发电太阳能光伏水力发电核电储能电池输配电氢能智能电网售电今日本周本月1全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!来源:吉林省人民政府网7小时前12月16日,吉林省委书记黄强,省委副书记、省长胡玉亭在长春会见中国钢研科技集团党委书记、董事长张少明和总经理高宏斌一行,并见证省政府、松原市政府分别与中国钢研签署战略合作框架协议、纯氢冶金项目合作协议。黄强、胡玉亭向张少明、高宏斌一行表示欢迎,对中国钢研给予吉林的大力支持表示感谢。3总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!来源:通辽统计微讯3小时前近日,内蒙古天楹能源有限公司投资建设的风光储氢氨一体化产业园示范项目开工建设,项目位于内蒙古通辽市科左中旗产业园宝龙山工业园区内。项目总投资37.0亿元,建设内容为新建一座氢氨工厂及其配套设施,共配置33套制氢单元,每个单元配置4套1000Nm3/h电解槽设备。合成氨建设规模为45万吨/年,其分为30550万吨绿色甲醇项目进度刷新!来源:北极星氢能网8小时前近日,北极星氢能网获悉,金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。该项目创新应用风—氢—储—生物质多能协同耦合技术,打通了新能源制氢向化工行业的发展通道。建成投产后,将依托200万千瓦风电06清洁能源国际创新联盟成立!来源:北极星氢能网9小时前12月17日,2024绿色航运大会在海南盛大开幕。会议上,清洁能源国际创新联盟成立。清洁能源国际创新联盟是在海南省发展和改革委员会支持下,由西门子能源、国家能源集团海南电力有限公司和海南国际经济发展局三方倡议发起,由企业、专业机构和国际性社会组织自愿组成的国际化行业性社会组织,旨在推动清07全国首家氢能交易平台上线来源:美锦能源3小时前北极星氢能网获悉,12月16日,美锦能源举行全国首家氢能交易平台上线仪式。中国氢能交易平台将围绕制氢厂、物流企业、气体贸易商、加氢站、工业客户等主要用户,提供价格资讯发布、线上挂牌与交易、线上签约与支付结算功能,为供需双方提供一站式交易服务。实现了氢能产业与数字化技术的深度融合,促进08二氧化碳耦合绿氢制甲醇 吉利创新中心牵手世界500强来源:宁波前湾新区发布4小时前近日,吉利创新中心与世界500强企业霍尼韦尔签署战略合作协议,双方将基于各自优势,在二氧化碳捕集、捕集二氧化碳耦合绿氢制取电子甲醇、电子甲醇制取可持续航空燃料SAF技术合作以及其他服务于高质量低碳可持续发展的先进技术等多个领域达成了合作意向。用绿色甲醇破解世界能源和双碳难题,吉利创新中09年产10万吨绿氢制60万吨绿氨生产线项目设计招标!来源:北极星氢能网6小时前新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标公告新疆氢基能源科技有限公司成立于2024年08月27日,注册地位于新疆塔城地区沙湾市哈拉干德工业园区产业孵化园黄河路1-48号,法定代表人为范华伟。经营范围包括一般项目:技术服务、技术开发、技术咨询、技术交流、技术转让、11隆基氢能与欧洲客户携手推进北欧重要氢能项目!来源:隆基氢能3小时前12月17日,北极星氢能网获悉,隆基氢能近期与某欧洲客户成功签订电解槽系统采购订单,将为位于挪威的具有里程碑意义的绿氢项目提供多台套千立方级的安全、高效、低电耗的Hi1系列电解槽及其辅助系统(BoP)。该项目计划于2026年开始运营,通过以电子燃料(e-fuels)替代化石燃料,为全球气候目标的实现
|
||||
新获批的氢能项目: 121.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!来源:中国招标投标公共服务平台2小时前北极星氢能网获悉,12月16日,新疆俊瑞富蕴县新能源规模化制绿氢项目设计采购施工一体化总承包中标结果公示,中标人:中建三局第三建设工程有限责任公司,项目资金为124286万元。项目规模:年产1.44万吨绿氢。总规划面积为199998平方米,总建筑面积87998平方米,建(构)筑物基地面积64400平方米,道路硬化面积135598平方米。
|
||||
新投产的氢能项目: 总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进来源:中国大丰港3小时前近日,在盐城吉电绿氢制储运加用一体化示范项目建设现场,呈现出一片热火朝天的繁忙景象。机械的轰鸣声、工具的碰撞声、工人们的呼喊声交织在一起,奏响了一曲激昂的建设乐章,工人们都在争分夺秒地加速施工,全力以赴确保项目如期高质量完成。该项目计划总投资158.5亿元,规划用地1000亩,分三期逐步推进。
|
||||
more urls:
|
||||
储能
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
氢能
|
||||
年产10万吨绿氢制60万吨绿氨生产线项目设计招标!
|
||||
|
||||
************
|
||||
|
||||
llm model: THUDM/glm-4-9b-chat
|
||||
hallucination times: 0
|
||||
total analysis time: 73.42666482925415
|
||||
|
||||
author and publish time(not formated): {'source': '吉林省人民政府网', 'publish_date': '7小时前'}
|
||||
infos(not formated):
|
||||
新投产的氢能项目: 内蒙古通辽风光储氢氨一体化产业园示范项目开工建设,项目总投资37.0亿元,建设内容为新建一座氢氨工厂及其配套设施,共配置33套制氢单元,每个单元配置4套1000Nm3/h电解槽设备。
|
||||
新投产的氢能项目: 金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。
|
||||
新投产的氢能项目: 新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标公告新疆氢基能源科技有限公司成立于2024年08月27日,注册地位于新疆塔城地区沙湾市哈拉干德工业园区产业孵化园黄河路1-48号,法定代表人为范华伟。
|
||||
新获批的氢能项目: 新疆俊瑞富蕴县绿氢项目中标结果公示!项目规模:年产1.44万吨绿氢。
|
||||
新投产的氢能项目: 盐城吉电绿氢制储运加用一体化示范项目加速推进。该项目计划总投资158.5亿元,规划用地1000亩,分三期逐步推进。
|
||||
新投产的氢能项目: 河北迁安:发展氢能产业助力绿色发展。目前该市年产车用氢气9000多吨、重卡氢燃料电池发动机5000台。
|
||||
新投产的氢能项目: 中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目。
|
||||
新投产的氢能项目: 中国钢研签署纯氢冶金项目。中国钢研建设的全球首条5万吨纯氢冶金示范工程。
|
||||
新投产的氢能项目: 我国首个工厂化海水直接制氢科研项目建成!由青岛炼化和中石化大连院共同开发建设。
|
||||
新投产的氢能项目: 青海发布加快推动氢能产业高质量发展的若干政策措施。
|
||||
新投产的氢能项目: 加氢站运营补贴150万元/年!浙江临海市氢能产业发展扶持政策征意见。
|
||||
新获批的氢能项目: 无相关内容
|
||||
新投产的氢能项目: 无相关内容
|
||||
more urls:
|
||||
课程储能电站安全运维管理方案
|
||||
河南省同信电力工程有限公司在招风电/光伏项目场长、风电/光伏项目经理等51个职位
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
全国首家氢能交易平台上线
|
||||
我国首个工厂化海水直接制氢科研项目建成!
|
||||
年产10万吨绿氢制60万吨绿氨生产线项目设计招标!
|
||||
课程分布式光伏电站建设“避坑指南”
|
||||
广元发展集团“氢”装上阵 抢跑“零碳”新赛道
|
||||
课程集中式光伏项目全流程支持性文件概述
|
||||
青海发布加快推动氢能产业高质量发展的若干政策措施
|
||||
50万吨绿色甲醇项目进度刷新!
|
||||
课程光伏电站股权收购的流程和风险分析
|
||||
中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目
|
||||
隆基氢能与欧洲客户携手推进北欧重要氢能项目!
|
||||
阳光氢能/中集扬州/盛氢制氢/派瑞氢能/京电设备/大陆制氢/华光环能入围中国能建葛洲坝公司制氢设备厂家名单!
|
||||
课程锂离子电池储能中的安全问题及应对技术(限时免费)
|
||||
北京火山动力网络技术有限公司
|
||||
深圳市远信储能技术有限公司在招电站运维工程师、逆变器结构工程师等10个职位
|
||||
氢动科技助力交通强国建设
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
二氧化碳耦合绿氢制甲醇 吉利创新中心牵手世界500强
|
||||
加氢站运营补贴150万元/年!浙江临海市氢能产业发展扶持政策征意见
|
||||
|
||||
************
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 1
|
||||
total analysis time: 89.749685049057
|
||||
|
||||
author and publish time(not formated): {'source': '吉林省人民政府网', 'publish_date': '2023-12-16'}
|
||||
infos(not formated):
|
||||
新获批的氢能项目: 12月16日,吉林省委书记黄强,省委副书记、省长胡玉亭在长春会见中国钢研科技集团党委书记、董事长张少明和总经理高宏斌一行,并见证省政府、松原市政府分别与中国钢研签署战略合作框架协议、纯氢冶金项目合作协议。
|
||||
新获批的氢能项目: 2024年2月20日,中华人民共和国交通运输部发布公告:《交通运输部关于国家电力投资集团有限公司开展重卡换电站建设组网与运营示范等交通强国建设试点工作的意见》。意见明确指出开展“氢燃料电池研发与氢能交通运营平台应用”建设试点。
|
||||
新获批的氢能项目: 12月16日,中国能建葛洲坝油气公司制氢设备预采购公告发布,预采购范围:制氢设备,包括1000Nm3/h碱性电解槽、气液分离装置、纯化装置、补水配碱装置1套,两年期运维服务。
|
||||
新获批的氢能项目: 近日,内蒙古天楹能源有限公司投资建设的风光储氢氨一体化产业园示范项目开工建设,项目位于内蒙古通辽市科左中旗产业园宝龙山工业园区内。项目总投资37.0亿元,建设内容为新建一座氢氨工厂及其配套设施,共配置33套制氢单元,每个单元配置4套1000Nm3/h电解槽设备。
|
||||
新获批的氢能项目: 近日,北极星氢能网获悉,金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。
|
||||
新获批的氢能项目: 12月17日,2024绿色航运大会在海南盛大开幕。会议上,清洁能源国际创新联盟成立。
|
||||
新获批的氢能项目: 12月16日,美锦能源举行全国首家氢能交易平台上线仪式。
|
||||
新获批的氢能项目: 近日,吉利创新中心与世界500强企业霍尼韦尔签署战略合作协议,双方将基于各自优势,在二氧化碳捕集、捕集二氧化碳耦合绿氢制取电子甲醇、电子甲醇制取可持续航空燃料SAF技术合作以及其他服务于高质量低碳可持续发展的先进技术等多个领域达成了合作意向。
|
||||
新获批的氢能项目: 新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标公告
|
||||
新获批的氢能项目: 12月16日,中国能建首席科学家,中电工程党委书记、董事长,电规总院院长罗必雄与中核汇能有限公司党委书记、董事长张焰座谈,双方围绕大通道大基地的项目开发、工程建设等方面进行深入交流并见证签约。
|
||||
新获批的氢能项目: 12月17日,北极星氢能网获悉,隆基氢能近期与某欧洲客户成功签订电解槽系统采购订单,将为位于挪威的具有里程碑意义的绿氢项目提供多台套千立方级的安全、高效、低电耗的Hi1系列电解槽及其辅助系统(BoP)。
|
||||
新投产的氢能项目: 121.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
more urls:
|
||||
储能
|
||||
课程储能电站安全运维管理方案
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
户用储能
|
||||
储能系统
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
光储充一体化
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
储能工程
|
||||
储能电站
|
||||
我国首个工厂化海水直接制氢科研项目建成!
|
||||
年产10万吨绿氢制60万吨绿氨生产线项目设计招标!
|
||||
储能材料及零部件
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
储能电池
|
||||
深圳市远信储能技术有限公司在招电站运维工程师、逆变器结构工程师等10个职位
|
||||
氢能
|
||||
工商业储能
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/QwQ-32B-Preview
|
||||
hallucination times: 0
|
||||
total analysis time: 67.79002976417542
|
||||
|
||||
author and publish time(not formated): {'source': '吉林省人民政府网', 'publish_date': '2024-02-16'}
|
||||
infos(not formated):
|
||||
新获批的氢能项目: 全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!来源:吉林省人民政府网7小时前12月16日,吉林省委书记黄强,省委副书记、省长胡玉亭在长春会见中国钢研科技集团党委书记、董事长张少明和总经理高宏斌一行,并见证省政府、松原市政府分别与中国钢研签署战略合作框架协议、纯氢冶金项目合作协议。
|
||||
新获批的氢能项目: 氢动科技助力交通强国建设来源:氢动科技10小时前2024年2月20日,中华人民共和国交通运输部发布公告:《交通运输部关于国家电力投资集团有限公司开展重卡换电站建设组网与运营示范等交通强国建设试点工作的意见》。意见明确指出开展“氢燃料电池研发与氢能交通运营平台应用”建设试点。同时,氢动科技在宁波舟山港承担绿色港航物流示范项目建设。
|
||||
新获批的氢能项目: 阳光氢能/中集扬州/盛氢制氢/派瑞氢能/京电设备/大陆制氢/华光环能入围中国能建葛洲坝公司制氢设备厂家名单!来源:中国能建电子采购平台5小时前12月16日,中国能建葛洲坝油气公司制氢设备预采购公告发布,预采购范围:制氢设备,包括1000Nm3/h碱性电解槽、气液分离装置、纯化装置、补水配碱装置1套,两年期运维服务。设备生产厂家限定如下范围:(1)阳光氢能科技有限公司(2)中集中电(扬州)制氢设备有限公司(3)广东盛氢制氢设备有限公司(4)
|
||||
新投产的氢能项目: 总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!来源:通辽统计微讯3小时前近日,内蒙古天楹能源有限公司投资建设的风光储氢氨一体化产业园示范项目开工建设,项目位于内蒙古通辽市科左中旗产业园宝龙山工业园区内。项目总投资37.0亿元,建设内容为新建一座氢氨工厂及其配套设施,共配置33套制氢单元,每个单元配置4套1000Nm3/h电解槽设备。合成氨建设规模为45万吨/年,其分为30
|
||||
新投产的氢能项目: 50万吨绿色甲醇项目进度刷新!来源:北极星氢能网8小时前近日,北极星氢能网获悉,金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。该项目创新应用风—氢—储—生物质多能协同耦合技术,打通了新能源制氢向化工行业的发展通道。建成投产后,将依托200万千瓦风电06清洁能源国际创新联盟成立!来源:北极星氢能网9小时前12月17日,2024绿色航运大会在海南盛大开幕。会议上,清洁能源国际创新联盟成立。清洁能源国际创新联盟是在海南省发展和改革委员会支持下,由西门子能源、国家能源集团海南电力有限公司和海南国际经济发展局三方倡议发起,由企业、专业机构和国际性社会组织自愿组成的国际化行业性社会组织,旨在推动清07全国首家氢能交易平台上线来源:美锦能源3小时前北极星氢能网获悉,12月16日,美锦能源举行全国首家氢能交易平台上线仪式。中国氢能交易平台将围绕制氢厂、物流企业、气体贸易商、加氢站、工业客户等主要用户,提供价格资讯发布、线上挂牌与交易、线上签约与支付结算功能,为供需双方提供一站式交易服务。实现了氢能产业与数字化技术的深度融合,促进08二氧化碳耦合绿氢制甲醇 吉利创新中心牵手世界500强来源:宁波前湾新区发布4小时前近日,吉利创新中心与世界500强企业霍尼韦尔签署战略合作协议,双方将基于各自优势,在二氧化碳捕集、捕集二氧化碳耦合绿氢制取电子甲醇、电子甲醇制取可持续航空燃料SAF技术合作以及其他服务于高质量低碳可持续发展的先进技术等多个领域达成了合作意向。用绿色甲醇破解世界能源和双碳难题,吉利创新中09年产10万吨绿氢制60万吨绿氨生产线项目设计招标!来源:北极星氢能网6小时前新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标公告新疆氢基能源科技有限公司成立于2024年08月27日,注册地位于新疆塔城地区沙湾市哈拉干德工业园区产业孵化园黄河路1-48号,法定代表人为范华伟。经营范围包括一般项目:技术服务、技术开发、技术咨询、技术交流、技术转让、10中国能建中电工程与中核汇能签订战略合作协议!来源:中国能建中电工程6小时前12月16日,中国能建首席科学家,中电工程党委书记、董事长,电规总院院长罗必雄与中核汇能有限公司党委书记、董事长张焰座谈,双方围绕大通道大基地的项目开发、工程建设等方面进行深入交流并见证签约。中核汇能党委委员、副总经理欧阳朝晖,中电工程党委常委、副总经理王新平代表双方签署战略合作协议11隆基氢能与欧洲客户携手推进北欧重要氢能项目!来源:隆基氢能3小时前12月17日,北极星氢能网获悉,隆基氢能近期与某欧洲客户成功签订电解槽系统采购订单,将为位于挪威的具有里程碑意义的绿氢项目提供多台套千立方级的安全、高效、低电耗的Hi1系列电解槽及其辅助系统(BoP)。该项目计划于2026年开始运营,通过以电子燃料(e-fuels)替代化石燃料,为全球气候目标的实现
|
||||
新获批的氢能项目: 新疆俊瑞富蕴县绿氢项目中标结果公示,项目资金为124286万元,年产1.44万吨绿氢。
|
||||
新投产的氢能项目: 广元发展集团在氢能产业中破浪前行,加快布局,为广元市抢占“零碳”发展先机注入强劲动力。
|
||||
新获批的氢能项目: 盐城吉电绿氢制储运加用一体化示范项目加速推进,计划总投资158.5亿元,分三期逐步推进。
|
||||
新投产的氢能项目: 河北迁安发展氢能产业,打造制氢、氢燃料电池发动机制造基地,推行氢燃料重卡运输大宗货物,助力绿色低碳发展。
|
||||
新获批的氢能项目: 中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目,与吉林省政府、松原市政府签署战略合作框架协议和纯氢冶金项目合作协议。
|
||||
新投产的氢能项目: 中国钢研与吉林省政府、松原市政府签署纯氢冶金项目合作协议,建设全球首条5万吨纯氢冶金示范工程。
|
||||
新获批的氢能项目: 我国首个工厂化海水直接制氢科研项目在青岛西海岸新区建成试运行,是我国首次直接在石化园区实施并实现产品回收应用的百千瓦级工厂化海水制氢项目。
|
||||
新获批的氢能项目: 青海省发布加快推动氢能产业高质量发展的若干政策措施,加快推进关键核心技术攻关,支持可再生能源制氢。
|
||||
新获批的氢能项目: 浙江临海市发布《临海市氢能产业发展扶持政策》(征求意见稿),支持氢能项目投资,对生产性设备投资额给予补助。
|
||||
新获批的氢能项目: 无相关信息
|
||||
新投产的氢能项目: 无相关信息
|
||||
more urls:
|
||||
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 4
|
||||
total analysis time: 5.307005405426025
|
||||
|
||||
author and publish time(not formated): {}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 33.703696727752686
|
||||
|
||||
author and publish time(not formated): {'source': '吉林省人民政府网', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
新获批的氢能项目: 全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!来源:吉林省人民政府网7小时前12月16日,吉林省委书记黄强,省委副书记、省长胡玉亭在长春会见中国钢研科技集团党委书记、董事长张少明和总经理高宏斌一行,并见证省政府、松原市政府分别与中国钢研签署战略合作框架协议、纯氢冶金项目合作协议。
|
||||
新获批的氢能项目: 氢动科技在宁波舟山港承担绿色港航物流示范项目建设。
|
||||
新投产的氢能项目: 金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。该项目创新应用风—氢—储—生物质多能协同耦合技术,打通了新能源制氢向化工行业的发展通道。建成投产后,将依托200万千瓦风电
|
||||
新获批的氢能项目: 总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!来源:通辽统计微讯3小时前近日,内蒙古天楹能源有限公司投资建设的风光储氢氨一体化产业园示范项目开工建设,项目位于内蒙古通辽市科左中旗产业园宝龙山工业园区内。项目总投资37.0亿元,建设内容为新建一座氢氨工厂及其配套设施,共配置33套制氢单元,每个单元配置4套1000Nm3/h电解槽设备。合成氨建设规模为45万吨/年,其分为30550万吨绿色甲醇项目进度刷新!来源:北极星氢能网8小时前近日,北极星氢能网获悉,金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。该项目创新应用风—氢—储—生物质多能协同耦合技术,打通了新能源制氢向化工行业的发展通道。建成投产后,将依托200万千瓦风电
|
||||
新获批的氢能项目: 新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标公告新疆氢基能源科技有限公司成立于2024年08月27日,注册地位于新疆塔城地区沙湾市哈拉干德工业园区产业孵化园黄河路1-48号,法定代表人为范华伟。经营范围包括一般项目:技术服务、技术开发、技术咨询、技术交流、技术转让、
|
||||
新获批的氢能项目: 121.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!来源:中国招标投标公共服务平台2小时前北极星氢能网获悉,12月16日,新疆俊瑞富蕴县新能源规模化制绿氢项目设计采购施工一体化总承包中标结果公示,中标人:中建三局第三建设工程有限责任公司,项目资金为124286万元。项目规模:年产1.44万吨绿氢。总规划面积为199998平方米,总建筑面积87998平方米,建(构)筑物基地面积64400平方米,道路硬13
|
||||
新获批的氢能项目: 总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进来源:中国大丰港3小时前近日,在盐城吉电绿氢制储运加用一体化示范项目建设现场,呈现出一片热火朝天的繁忙景象。机械的轰鸣声、工具的碰撞声、工人的呼喊声交织在一起,奏响了一曲激昂的建设乐章,工人们都在争分夺秒地加速施工,全力以赴确保项目如期高质量完成。该项目计划总投资158.5亿元,规划用地1000亩,分三期逐步推15
|
||||
新获批的氢能项目: 中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目来源:能建氢能3小时前北极星氢能网获悉,近日,中能建氢能源有限公司党委书记、董事长李京光在通辽市拜访通辽市委副书记、市长奇·达楞太,双方围绕加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目以及打造通辽市氢能产业链集群等问题进行深入交流,并达成广泛共识。奇·达楞太对李京光一行的到访表示欢迎,对2024年6月18日17
|
||||
新获批的氢能项目: 我国首个工厂化海水直接制氢科研项目建成!来源:青岛西海岸发布昨天北极星氢能网获悉,12月13日,我国首个工厂化海水直接制氢科研项目在青岛西海岸新区青岛炼化氢能“产研加”示范园内建成试运行。据了解,此次建成的海水制氢项目,由青岛炼化和中石化大连院共同开发建设,是我国首次直接在石化园区实施并实现产品回收应用的百千瓦级工厂化海水制氢项目。项目采用“海水19
|
||||
more urls:
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 11.236259937286377
|
||||
|
||||
author and publish time(not formated): {'source': '吉林省人民政府网', 'publish_date': '2023-12-16'}
|
||||
infos(not formated):
|
||||
新获批的氢能项目: 《交通运输部关于国家电力投资集团有限公司开展重卡换电站建设组网与运营示范等交通强国建设试点工作的意见》。意见明确指出开展“氢燃料电池研发与氢能交通运营平台应用”建设试点。
|
||||
新投产的氢能项目: 内蒙古通辽风光储氢氨一体化产业园示范项目开工建设
|
||||
新投产的氢能项目: 金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形
|
||||
新投产的氢能项目: 美锦能源举行全国首家氢能交易平台上线仪式
|
||||
新投产的氢能项目: 吉利创新中心与世界500强企业霍尼韦尔签署战略合作协议
|
||||
新投产的氢能项目: 新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标
|
||||
新投产的氢能项目: 隆基氢能与欧洲客户成功签订电解槽系统采购订单,将为位于挪威的具有里程碑意义的绿氢项目提供多台套千立方级的安全、高效、低电耗的Hi1系列电解槽及其辅助系统(BoP)
|
||||
新获批的氢能项目: 121.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!中标人:中建三局第三建设工程有限责任公司,项目资金为124286万元。项目规模:年产1.44万吨绿氢。总规划面积为199998平方米,总建筑面积87998平方米,建(构)筑物基地面积64400平方米,道路硬化面积13000平方米。
|
||||
新投产的氢能项目: 总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进。该项目计划总投资158.5亿元,规划用地1000亩,分三期逐步推进。
|
||||
more urls:
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
户用储能
|
||||
储能系统
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
光储充一体化
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
储能工程
|
||||
储能电站
|
||||
年产10万吨绿氢制60万吨绿氨生产线项目设计招标!
|
||||
储能材料及零部件
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
储能电池
|
||||
氢能
|
||||
工商业储能
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 7.4840919971466064
|
||||
|
||||
author and publish time(not formated): {'source': '吉林省人民政府网', 'publish_date': '2023-12-16'}
|
||||
infos(not formated):
|
||||
新获批的氢能项目: 内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
新投产的氢能项目: 06清洁能源国际创新联盟成立!
|
||||
新获批的氢能项目: 12月16日,新疆俊瑞富蕴县新能源规模化制绿氢项目设计采购施工一体化总承包中标结果公示,中标人:中建三局第三建设工程有限责任公司,项目资金为124286万元。项目规模:年产1.44万吨绿氢。总规划面积为199998平方米,总建筑面积87998平方米,建(构)筑物基地面积64400平方米,道路硬13广元发展集团“氢”装上阵 抢跑“零碳”新赛道来源:广元市国资委10小时前在“双碳”目标的时代大考与绿色发展的浪潮之下,广元发展集团紧扣市委、市政府赋予的定位与主责主业,将发展新质生产力作为首要关键任务,在氢能产业这片新“蓝海”中破浪前行,全力加快布局,为广元市抢占“零碳”发展先机注入强劲动力。广元发展集团深刻领悟发展氢能产业对于我国践行“碳达峰、碳中和”目标的重要意义。
|
||||
新投产的氢能项目: 158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进来源:中国大丰港3小时前近日,在盐城吉电绿氢制储运加用一体化示范项目建设现场,呈现出一片热火朝天的繁忙景象。机械的轰鸣声、工具的碰撞声、工人的呼喊声交织在一起,奏响了一曲激昂的建设乐章,工人们都在争分夺秒地加速施工,全力以赴确保项目如期高质量完成。该项目计划总投资158.5亿元,规划用地1000亩,分三期逐步推进。
|
||||
more urls:
|
||||
总投资158.5亿!盐城吉电绿氢制储运加用一体化示范项目加速推进
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
河北迁安:发展氢能产业助力绿色发展
|
||||
广元发展集团“氢”装上阵 抢跑“零碳”新赛道
|
||||
1.44万吨绿氢项目!新疆俊瑞富蕴县绿氢项目中标结果公示!
|
||||
氢能
|
||||
50万吨绿色甲醇项目进度刷新!
|
||||
加氢站运营补贴150万元/年!浙江临海市氢能产业发展扶持政策征意见
|
||||
|
||||
************
|
||||
|
||||
llm model: 01-ai/Yi-1.5-34B-Chat-16K
|
||||
hallucination times: 1
|
||||
total analysis time: 24.476562976837158
|
||||
|
||||
author and publish time(not formated): {}
|
||||
infos(not formated):
|
||||
新获批的氢能项目: 吉林省委书记黄强,省委副书记、省长胡玉亭在长春会见中国钢研科技集团党委书记、董事长张少明和总经理高宏斌一行,并见证省政府、松原市政府分别与中国钢研签署战略合作框架协议、纯氢冶金项目合作协议。
|
||||
新投产的氢能项目: 内蒙古天楹能源有限公司投资建设的风光储氢氨一体化产业园示范项目开工建设,项目位于内蒙古通辽市科左中旗产业园宝龙山工业园区内。项目总投资37.0亿元,建设内容为新建一座氢氨工厂及其配套设施,共配置33套制氢单元,每个单元配置4套1000Nm3/h电解槽设备。
|
||||
新获批的氢能项目: 中国能建葛洲坝油气公司制氢设备预采购公告发布,预采购范围:制氢设备,包括1000Nm3/h碱性电解槽、气液分离装置、纯化装置、补水配碱装置1套,两年期运维服务。设备生产厂家限定如下范围:(1)阳光氢能科技有限公司(2)中集中电(扬州)制氢设备有限公司(3)广东盛氢制氢设备有限公司
|
||||
新投产的氢能项目: 金风科技兴安盟风电耦合制50万吨绿色甲醇项目基地已初具雏形。该项目于2024年在兴安盟经济技术开发区启动建设,项目总投资30亿元,占地超1800亩。该项目创新应用风—氢—储—生物质多能协同耦合技术,打通了新能源制氢向化工行业的发展通道。
|
||||
新投产的氢能项目: 新疆氢基能源科技沙湾市年产10万吨绿氢制60万吨绿氨生产线项目工程设计招标公告
|
||||
新获批的氢能项目: 中国能建首席科学家,中电工程党委书记、董事长,电规总院院长罗必雄与中核汇能有限公司党委书记、董事长张焰座谈,双方围绕大通道大基地的项目开发、工程建设等方面进行深入交流并见证签约。
|
||||
新投产的氢能项目: 隆基氢能近期与某欧洲客户成功签订电解槽系统采购订单,将为位于挪威的具有里程碑意义的绿氢项目提供多台套千立方级的安全、高效、低电耗的Hi1系列电解槽及其辅助系统(BoP)。该项目计划于2026年开始运营,通过以电子燃料(e-fuels)替代化石燃料,为全球气候目标的实现
|
||||
新获批的氢能项目: 新疆俊瑞富蕴县新能源规模化制绿氢项目,中标人:中建三局第三建设工程有限责任公司,项目资金为124286万元,项目规模:年产1.44万吨绿氢。
|
||||
新投产的氢能项目: 盐城吉电绿氢制储运加用一体化示范项目,计划总投资158.5亿元,规划用地1000亩,分三期逐步推进。
|
||||
新投产的氢能项目: 河北迁安市加快培育氢能产业,打造制氢、氢燃料电池发动机制造基地,推行氢燃料重卡运输大宗货物,助力绿色低碳发展。
|
||||
新投产的氢能项目: 中能建加快推进通辽科尔沁左翼后期20万吨绿色甲醇项目。
|
||||
新投产的氢能项目: 中国钢研与吉林省政府、松原市政府分别签署战略合作框架协议、纯氢冶金项目合作协议。
|
||||
新投产的氢能项目: 我国首个工厂化海水直接制氢科研项目在青岛西海岸新区青岛炼化氢能‘产研加’示范园内建成试运行。
|
||||
新投产的氢能项目: 青海省发展和改革委员会发布了《青海省加快推动氢能产业高质量发展的若干政策措施》的通知。
|
||||
新投产的氢能项目: 浙江临海市发布《临海市氢能产业发展扶持政策》(征求意见稿)。
|
||||
more urls:
|
||||
课程储能电站安全运维管理方案
|
||||
总投资37亿!内蒙古通辽风光储氢氨一体化产业园示范项目开工!
|
||||
全球首个绿氢多稳态竖炉工业化示范工程将在松原落地!
|
||||
全国首家氢能交易平台上线
|
||||
河北迁安:发展氢能产业助力绿色发展
|
||||
课程分布式光伏电站建设“避坑指南”
|
||||
深圳市远信储能技术有限公司在招电站运维工程师、逆变器结构工程师等10个职位
|
||||
课程《零碳生态&绿色未来》系列公益公开课
|
||||
氢能
|
||||
青海发布加快推动氢能产业高质量发展的若干政策措施
|
||||
课程光伏电站股权收购的流程和风险分析
|
||||
|
||||
************
|
||||
|
@ -1,116 +0,0 @@
|
||||
{
|
||||
"News": "https://cryptopanic.com/",
|
||||
"Rising": "https://cryptopanic.com/news?filter=rising",
|
||||
"Media": "https://cryptopanic.com/news/media",
|
||||
"Polls": "https://cryptopanic.com/polls/new",
|
||||
"Portfolio": "https://cryptopanic.com/portfolio",
|
||||
"Get PRO": "https://cryptopanic.com/pro",
|
||||
"Sign In": "https://cryptopanic.com/accounts/login/",
|
||||
"Sign Up": "https://cryptopanic.com/accounts/signup/",
|
||||
"Go PRO": "https://cryptopanic.com/pro/",
|
||||
"Develop": "https://cryptopanic.com/developers/",
|
||||
"API": "https://cryptopanic.com/developers/api/about",
|
||||
"Bots": "https://cryptopanic.com/developers/bots/",
|
||||
"Widgets": "https://cryptopanic.com/developers/widgets/",
|
||||
"Careers": "https://cryptopanic.com/careers/",
|
||||
"Guides": "https://cryptopanic.com/guides/",
|
||||
"Bizz Hub": "https://cryptopanic.com/partnership-hub/",
|
||||
"Submit": "https://cryptopanic.com/submit-source",
|
||||
"Top News": "https://cryptopanic.com/news",
|
||||
"All News": "https://cryptopanic.com/news/all",
|
||||
"Blogs": "https://cryptopanic.com/news/blogs",
|
||||
"News Sites": "https://cryptopanic.com/news/news-sites",
|
||||
"Following": "https://cryptopanic.com/news/following",
|
||||
"Price Analysis": "https://cryptopanic.com/news/price-analysis",
|
||||
"Regulation": "https://cryptopanic.com/news/regulation",
|
||||
"ICO News": "https://cryptopanic.com/news/ico-news",
|
||||
"Events": "https://cryptopanic.com/news/events",
|
||||
"Commented": "https://cryptopanic.com/news?filter=commented",
|
||||
"Hot!": "https://cryptopanic.com/news?filter=hot",
|
||||
"Bullish": "https://cryptopanic.com/news?filter=bullish",
|
||||
"Bearish": "https://cryptopanic.com/news?filter=bearish",
|
||||
"Important": "https://cryptopanic.com/news?filter=important",
|
||||
"LOL": "https://cryptopanic.com/news?filter=lol",
|
||||
"Top Saved": "https://cryptopanic.com/news?filter=saved",
|
||||
"BTC $106,766 2.80%": "https://cryptopanic.com/news/bitcoin/",
|
||||
"ETH $3995.9 1.93%": "https://cryptopanic.com/news/ethereum/",
|
||||
"XRP $2.70 14.33%": "https://cryptopanic.com/news/ripple/",
|
||||
"USDT $1.00 -0.04%": "https://cryptopanic.com/news/tether/",
|
||||
"SOL $222.03 3.57%": "https://cryptopanic.com/news/solana/",
|
||||
"590%+225FS Bonus at BetFury: PLAY & WIN NOW🚀: 8000+ Slots, Live Casino, Sportsbook🎰 The best Vip Club & Transfer Program. Get Weekly&Monthly Bonuses. 25% Cashback. Crypto Staking: EARN up to 200%🤑": "https://betfury.bet/d91b3b7d3",
|
||||
"***": "https://cryptopanic.com/news/20388493/Comprehensive-Sportsbook-Casino-Welcome-Bonus-7-BTC-250-Free-Spins-Play-without-KYC",
|
||||
"15min": "https://cryptopanic.com/news/20416727/ETH-Breaking-the-004-level-on-the-ETHBTC-pair-would-be-confirmation-for-me-that-well-get-another-big-altcoin-leg-up-ETH-is-always-the-leader-in-a-big-altcoin-dominance-push-Historically-Q1-has-been-bullish-for-the-ETHBTC-ratio-I-think-the-market-is-shaping-up-nicely",
|
||||
"ETH": "https://cryptopanic.com/news/bridged-wrapped-ether-starkgate/",
|
||||
"17min": "https://cryptopanic.com/news/20416875/Idle-Mine-Game-Guide-Tips-to-Earn-More-Bitcoin-on-iOS-and-Android",
|
||||
"18min": "https://cryptopanic.com/news/20416866/Daily-Discussion-Megathread-December-17-2024-GMT0",
|
||||
"21min": "https://cryptopanic.com/news/20416627/Austrian-Police-Uncover-12-Million-Rip-Deal-20-Crypto-Fraud",
|
||||
"26min": "https://cryptopanic.com/news/20416626/No-to-CBDC-yes-to-Bitcoin-European-MP-calls-for-EU-BTC-reserve",
|
||||
"27min": "https://cryptopanic.com/news/20416609/This-Little-Known-DOJ-Rule-Often-Leaves-Crypto-Fraud-Victims-Empty-Handed-Bloomberg-Law",
|
||||
"31min": "https://cryptopanic.com/news/20416654/Bitcoin-News-Riot-Platforms-Expands-Holdings-to-17429-BTC",
|
||||
"33min": "https://cryptopanic.com/news/20416601/Bybit-To-Stop-Services-in-France-Effective-January-8-2025",
|
||||
"34min": "https://cryptopanic.com/news/20416653/Aave-Community-Considers-Proposal-to-Exit-Polygon",
|
||||
"AAVE": "https://cryptopanic.com/news/aave/",
|
||||
"39min": "https://cryptopanic.com/news/20416556/Exodus-to-List-on-the-NYSE-American",
|
||||
"41min": "https://cryptopanic.com/news/20416600/Ethereum-Foundation-Dump-Another-100-ETH-for-420k-ETH-Price-to-Drop",
|
||||
"44min": "https://cryptopanic.com/news/20416539/Spot-Crypto-ETFs-in-2025-Is-Solana-Ripple-and-Cardano-Next",
|
||||
"48min": "https://cryptopanic.com/news/20416582/Binance-Announces-Support-for-Major-Terra-Luna-Classic-Upgrade",
|
||||
"LUNC": "https://cryptopanic.com/news/terra-luna/",
|
||||
"51min": "https://cryptopanic.com/news/20416533/ZetaChain-Launches-Gateway-to-Simplify-Universal-Yield-DEX-Aggregation-and-More",
|
||||
"ZETA": "https://cryptopanic.com/news/zetachain/",
|
||||
"52min": "https://cryptopanic.com/news/20416546/Bitcoin-ETFs-top-gold-in-total-assets-within-a-year-of-launch",
|
||||
"56min": "https://cryptopanic.com/news/20416510/XRP-off-to-the-races-to-hit-4-according-to-crypto-analyst",
|
||||
"1h": "https://cryptopanic.com/news/20416427/Bitcoin-Price-Prediction-2025-Can-BTC-Rally-to-150K-by-Mid-Year",
|
||||
"ATH": "https://cryptopanic.com/news/athenadao-token/",
|
||||
"ASF": "https://cryptopanic.com/news/asymmetry-finance/",
|
||||
"CRO": "https://cryptopanic.com/news/crypto-com-chain/",
|
||||
"2h": "https://cryptopanic.com/news/20416295/FTX-Payouts-Begin-January-3rd-2025",
|
||||
"CRV": "https://cryptopanic.com/news/curve-dao-token/",
|
||||
"CPOOL": "https://cryptopanic.com/news/clearpool/",
|
||||
"BIG": "https://cryptopanic.com/news/big/",
|
||||
"RWA": "https://cryptopanic.com/news/rwa-inc/",
|
||||
"About": "https://cryptopanic.com/about/",
|
||||
"NordVPN Christmas Campaign - Special Offer: Up to 74% off + 3 extra months, starting at $2.99 / 2.99 €": "https://go.nordvpn.net/aff_c?offer_id=417&aff_id=112455&url_id=11870",
|
||||
"3h": "https://cryptopanic.com/news/20415929/Riot-Platforms-Buys-69M-in-Bitcoin-Hits-17429-BTC",
|
||||
"4h": "https://cryptopanic.com/news/20415853/FTX-to-Start-Creditor-Repayments-on-January-3",
|
||||
"5h": "https://cryptopanic.com/news/20415667/Breaking-News-Indias-Parliament-Discusses-Comprehensive-Crypto-Framework",
|
||||
"13h": "https://cryptopanic.com/news/20414624/Charles-Hoskinson-says-Cardano-is-ready-to-take-over-the-world",
|
||||
"ADA": "https://cryptopanic.com/news/cardano/",
|
||||
"Trending Poll Show more": "https://cryptopanic.com/polls",
|
||||
"Will bitcoin pump because Donald trump's presidential inauguration?": "https://cryptopanic.com/polls/20366587/Will-bitcoin-pump-because-Donald-trumps-presidential-inauguration",
|
||||
"47_m.naufal": "https://cryptopanic.com/47_m.naufal/",
|
||||
"Bitget Token": "https://cryptopanic.com/news/bitget-token/",
|
||||
"Stellar": "https://cryptopanic.com/news/stellar/",
|
||||
"TRON": "https://cryptopanic.com/news/tron/",
|
||||
"Hedera": "https://cryptopanic.com/news/hedera-hashgraph/",
|
||||
"Hyperliquid": "https://cryptopanic.com/news/hyperliquid/",
|
||||
"VeChain": "https://cryptopanic.com/news/vechain/",
|
||||
"Mantle": "https://cryptopanic.com/news/mantle/",
|
||||
"Aptos": "https://cryptopanic.com/news/aptos/",
|
||||
"Chainlink": "https://cryptopanic.com/news/chainlink/",
|
||||
"Kaspa": "https://cryptopanic.com/news/kaspa/",
|
||||
"MANTRA": "https://cryptopanic.com/news/mantra-dao/",
|
||||
"Artificial Superintelligence Alliance": "https://cryptopanic.com/news/fetch-ai/",
|
||||
"Bittensor": "https://cryptopanic.com/news/bittensor/",
|
||||
"USDS": "https://cryptopanic.com/news/usds/",
|
||||
"Uniswap": "https://cryptopanic.com/news/uniswap/",
|
||||
"Ethena USDe": "https://cryptopanic.com/news/ethena-usde/",
|
||||
"donation": "https://cryptopanic.com/donate/",
|
||||
"Discord": "https://cryptopanic.com/discord/",
|
||||
"Telegram": "https://t.me/CryptoPanicCom",
|
||||
"Advertise": "https://cryptopanic.com/advertise/",
|
||||
"Contact": "https://cryptopanic.com/contact/",
|
||||
"Terms": "https://cryptopanic.com/terms/",
|
||||
"MC $3.93T 2.83%": "https://cryptopanic.com/news/market-cap/",
|
||||
"BNB $719.61 1.82%": "https://cryptopanic.com/news/binancecoin/",
|
||||
"DOGE $0.405 2.37%": "https://cryptopanic.com/news/dogecoin/",
|
||||
"USDC $1.000 -0.00%": "https://cryptopanic.com/news/usd-coin/",
|
||||
"STETH $3986.8 1.87%": "https://cryptopanic.com/news/staked-ether/",
|
||||
"AVAX $50.26 3.21%": "https://cryptopanic.com/news/avalanche-2/",
|
||||
"WSTETH $4742.5 1.84%": "https://cryptopanic.com/news/wrapped-steth/",
|
||||
"SHIB $0.000 1.98%": "https://cryptopanic.com/news/shiba-inu/",
|
||||
"TON $6.12 1.50%": "https://cryptopanic.com/news/the-open-network/",
|
||||
"WBTC $106,418 2.83%": "https://cryptopanic.com/news/wrapped-bitcoin/",
|
||||
"SUI $4.75 1.91%": "https://cryptopanic.com/news/sui/",
|
||||
"Privacy Policy": "https://cryptopanic.com/privacy/",
|
||||
"Cookie Notice": "https://cryptopanic.com/cookies-privacy/"
|
||||
}
|
Before Width: | Height: | Size: 222 KiB |
@ -1,469 +0,0 @@
|
||||
News
|
||||
Media
|
||||
Polls
|
||||
Portfolio
|
||||
Get PRO
|
||||
Sign In
|
||||
Develop
|
||||
Region
|
||||
Careers
|
||||
Guides
|
||||
Bizz Hub
|
||||
Submit
|
||||
Top News
|
||||
Show All
|
||||
Panic Score
|
||||
590%+225FS Bonus at BetFury: PLAY & WIN NOW🚀: 8000+ Slots, Live Casino, Sportsbook🎰 The best Vip Club & Transfer Program. Get Weekly&Monthly Bonuses. 25% Cashback. Crypto Staking: EARN up to 200%🤑
|
||||
***
|
||||
Comprehensive Sportsbook & Casino. Welcome Bonus 7 BTC + 250 Free Spins. Play without KYC 1xbitworldwide.com
|
||||
15min
|
||||
$ETH Breaking the ~0.04 level on the ETH/BTC pair would be confirmation for me that we'll get another big altcoin leg up. ETH is always the leader in a big altcoin dominance push. Historically, Q1 has been bullish for the ETH/BTC ratio. I think the market is shaping up nicely… @daancrypto
|
||||
BTC ETH ETH …
|
||||
17min
|
||||
‘Idle Mine’ Game Guide: Tips to Earn More Bitcoin on iOS and Android decrypt.co
|
||||
BTC
|
||||
18min
|
||||
What is ISO 20022 compliance for crypto coins? – Is it a ‘must have’ for crypto adoption? cryptopolitan.com
|
||||
18min
|
||||
MicroStrategy’s Bitcoin Venture Will Not End Well, Warns Martin Shkreli cryptodnes.bg
|
||||
18min
|
||||
This Project Could Could Crypto Gaming Forever.. (XBorg) Boxmining
|
||||
18min
|
||||
Daily Discussion Megathread - December 17, 2024 (GMT+0) r/cryptomarkets
|
||||
21min
|
||||
Austrian Police Uncover $1.2 Million 'Rip-Deal 2.0' Crypto Fraud decrypt.co
|
||||
26min
|
||||
‘No to CBDC, yes to Bitcoin’ — European MP calls for EU BTC reserve cointelegraph.com
|
||||
2
|
||||
2
|
||||
2
|
||||
1
|
||||
27min
|
||||
This Little-Known DOJ Rule Often Leaves Crypto Fraud Victims Empty-Handed: Bloomberg Law cryptonews.com
|
||||
BTC ETH
|
||||
1
|
||||
31min
|
||||
Bitcoin News: Riot Platforms Expands Holdings to 17,429 BTC thecoinrepublic.com
|
||||
33min
|
||||
ZachXBT explores $5.36M wallet-draining attack cryptopolitan.com
|
||||
33min
|
||||
🇪🇺 European MP: "Donald Trump is going to create a #Bitcoin Strategic Reserve. Bitcoin is skyrocketing. The EU is squandering our money!" EU MP @knafo_sarah tells the European Parliament to set up a "Strategic Bitcoin Reserve". WATCH ENGLISH TRANSLATED SPEECH (Ai) @btc_archive
|
||||
BTC
|
||||
33min
|
||||
Bybit To Stop Services in France Effective January 8, 2025 coinpedia.org
|
||||
34min
|
||||
Aave Community Considers Proposal to Exit Polygon thedefiant.io
|
||||
AAVE
|
||||
39min
|
||||
Exodus to List on the NYSE American coinjournal.net
|
||||
1
|
||||
1
|
||||
41min
|
||||
Ethereum Foundation Dump Another 100 ETH for $420k, ETH Price to Drop coinpedia.org
|
||||
ETH ETH
|
||||
1
|
||||
1
|
||||
44min
|
||||
Spot Crypto ETFs in 2025: Is Solana, Ripple, and Cardano Next? coinpedia.org
|
||||
1
|
||||
1
|
||||
1
|
||||
48min
|
||||
Binance Announces Support for Major Terra Luna Classic Upgrade cryptodnes.bg
|
||||
LUNC
|
||||
51min
|
||||
Crypto 'eating TradFi's lunch' as $5.75B Coinbase revenue beats Nasdaq cointelegraph.com
|
||||
3
|
||||
51min
|
||||
ZetaChain Launches Gateway to Simplify Universal Yield, DEX Aggregation, and More crypto-economy.com
|
||||
ZETA
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
52min
|
||||
Bitcoin ETFs top gold in total assets within a year of launch cryptoslate.com
|
||||
BTC
|
||||
2
|
||||
56min
|
||||
XRP ‘off to the races’ to hit $4, according to crypto analyst finbold.com
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1h
|
||||
Bitcoin Hits Record High: $107,699 – $110K Next? coinpaprika.com
|
||||
BTC
|
||||
8
|
||||
7
|
||||
8
|
||||
6
|
||||
1h
|
||||
Mammoth $2.51 Billion in Bitcoin in Past 20 Hours – What’s Going On? u.today
|
||||
BTC ATH ATH
|
||||
1h
|
||||
The two beefs that will reshape our global economy and the future of AI next year cryptopolitan.com
|
||||
1
|
||||
1h
|
||||
SSSSS snake Wif hat: Live on another exchange! Bullish ASF! r/cryptomars
|
||||
ATH ASF ATH …
|
||||
2
|
||||
1h
|
||||
Crypto.com CEO meets with US President-elect Donald Trump. What could this mean for the future of $CRO and crypto adoption in the US? r/crypto_currency_news
|
||||
CRO
|
||||
1
|
||||
1
|
||||
1
|
||||
1h
|
||||
Kraken and BitGo to Lead FTX Repayment Process Starting January 2025 cryptodnes.bg
|
||||
1
|
||||
1
|
||||
1
|
||||
1h
|
||||
Ethereum Reaches $4,100 For The First Time In Over Three Years, Aiming For $5,000 Next newsbtc.com
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1h
|
||||
Executives flood blockchain gaming firms ahead of 2025’s AAA launches cointelegraph.com
|
||||
1h
|
||||
CyberKongz Takes a Stand Against SEC’s Wells Notice altcoinbuzz.io
|
||||
1
|
||||
1
|
||||
1h
|
||||
Base - Good or meh? r/cryptomarkets
|
||||
1h
|
||||
XRPL governance under scrutiny, Ripple CTO suggests voting upgrades cryptopolitan.com
|
||||
XRP
|
||||
1
|
||||
1
|
||||
1h
|
||||
Lido Discontinues Polygon Staking Service After Community Approval crypto-economy.com
|
||||
1
|
||||
1h
|
||||
Bitcoin Price Prediction 2025: Can BTC Rally to $150K by Mid-Year? coinpedia.org
|
||||
1
|
||||
1
|
||||
1
|
||||
2h
|
||||
FTX News: Date and Source For Creditor Repayment Announced thecoinrepublic.com
|
||||
2h
|
||||
Lido Finance Announces Plans to Shut Down Operations on Polygon coinpaper.com
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
2h
|
||||
MicroStrategy’s Bitcoin Bet Pays Off: Surpassed $20bn in Bitcoin profits. coinpedia.org
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
2h
|
||||
Ethereum Price Prediction: Cup and Handle Signals $6K Breakout, But.. thecoinrepublic.com
|
||||
1
|
||||
1
|
||||
2h
|
||||
Curve’s Egorov makes first major $1.2M CRV buyback since June liquidation cryptopolitan.com
|
||||
CRV
|
||||
2h
|
||||
XRP’s Exchange Inflow Tops $25 Million Ahead of RLUSD Launch beincrypto.com
|
||||
2h
|
||||
Ethereum whales now hold 57% of supply – Impact on ETH? ambcrypto.com
|
||||
ETH ETH
|
||||
2h
|
||||
Bitget Expands into El Salvador with Bitcoin Service Provider License coinpaper.com
|
||||
BTC
|
||||
2h
|
||||
Japan's MicroStrategy to Issue 4.5 Billion Yen Bonds to Buy Bitcoin u.today
|
||||
BTC
|
||||
2h
|
||||
GrokAI says XRP price will hit this target by December 31, 2024 finbold.com
|
||||
2
|
||||
2h
|
||||
Google’s Willow quantum chip vs. Bitcoin security — What’s at stake? cointelegraph.com
|
||||
BTC
|
||||
2h
|
||||
Trader Says Altcoin That’s Up over 8x in Under Three Months to Outperform Market, Updates Outlook on Solana dailyhodl.com
|
||||
2h
|
||||
Argentina is officially out of recession – Here’s all Milei did cryptopolitan.com
|
||||
1
|
||||
1
|
||||
1
|
||||
2h
|
||||
Ozean Poseidon Testnet from Clearpool is LIVE! altcoinbuzz.io
|
||||
CPOOL BIG RWA
|
||||
2h
|
||||
FTX Payouts Begin January 3rd, 2025 altcoinbuzz.io
|
||||
Load more
|
||||
Home
|
||||
About
|
||||
Dismiss
|
||||
CryptoPanic is a news aggregator platform indicating impact on price and market for traders and cryptocurrency enthusiasts. Now includes Portfolio Tracker, Media Feed and Blogs.
|
||||
|
||||
|
||||
Show Price alerts
|
||||
Show Following feed in Top News
|
||||
Sponsored by: NordVPN
|
||||
NordVPN Christmas Campaign - Special Offer: Up to 74% off + 3 extra months, starting at $2.99 / 2.99 €
|
||||
Trending
|
||||
SHOW MORE
|
||||
51min
|
||||
Crypto 'eating TradFi's lunch' as $5.75B Coinbase revenue beats Nasdaq cointelegraph.com
|
||||
3
|
||||
1h
|
||||
Bitcoin Hits Record High: $107,699 – $110K Next? coinpaprika.com
|
||||
BTC
|
||||
8
|
||||
7
|
||||
8
|
||||
6
|
||||
3h
|
||||
Ripple XRP Is Going To $100 In 2025 Bitcoin And The Cryptocurrency Market Are ABOUT TO SKYROCKET TheModernInvestor
|
||||
BTC XRP
|
||||
2
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
3h
|
||||
Riot Platforms Buys $69M in Bitcoin, Hits 17,429 BTC coinpaprika.com
|
||||
BTC
|
||||
7
|
||||
7
|
||||
7
|
||||
6
|
||||
4h
|
||||
FTX to Start Creditor Repayments on January 3 coinpaprika.com
|
||||
7
|
||||
7
|
||||
7
|
||||
6
|
||||
5h
|
||||
Breaking News: India’s Parliament Discusses Comprehensive Crypto Framework coinpedia.org
|
||||
4
|
||||
3
|
||||
1
|
||||
1
|
||||
5
|
||||
3
|
||||
1
|
||||
13h
|
||||
Charles Hoskinson says Cardano is ready to “take over the world” cryptopolitan.com
|
||||
ADA
|
||||
10
|
||||
10
|
||||
2
|
||||
2
|
||||
12
|
||||
8
|
||||
6
|
||||
2
|
||||
Recent Comments
|
||||
SHOW MORE
|
||||
5min
|
||||
CryptoFlugHund (Chaaarlieee !!!🙄😡) Charles Hoskinson says Cardano is ready to “take over the world”
|
||||
21min
|
||||
crypto2011 420k should make the price drop? Ethereum Foundation Dump Another 100 ETH for $420k, ETH Price to Drop
|
||||
31min
|
||||
malo7 Ça m’étonnerais GrokAI says XRP price will hit this target by December 31, 2024
|
||||
38min
|
||||
crypto2011 Nope. By end of January. Bitcoin Price Prediction 2025: Can BTC Rally to $150K by Mid-Year?
|
||||
45min
|
||||
Cassandre Also cultist propaganda is an area where they shine Cardano founder Charles Hoskinson blasts Wyoming Token Commission boss over ADA and XRP exclusion
|
||||
1h
|
||||
Cassandre It's not about you Cardano founder Charles Hoskinson blasts Wyoming Token Commission boss over ADA and XRP exclusion
|
||||
1h
|
||||
pumpkincat420 useless Shitcoin. Charles Hoskinson says Cardano is ready to “take over the world”
|
||||
1h
|
||||
Cassandre Oh but I'm invulnerable in my logical thinking :) you think I'm getting trolled but I'm countering think tank narratives in their roots... Cardano founder Charles Hoskinson blasts Wyoming Token Commission boss over ADA and XRP exclusion
|
||||
2h
|
||||
feras1 one day u will find xrp 32 $ GrokAI says XRP price will hit this target by December 31, 2024
|
||||
4h
|
||||
feras1 today xrp 2.75 Here’s How Much Ripple USD (RLUSD) Has Been Minted Ahead of Today’s Launch
|
||||
Trending Poll
|
||||
SHOW MORE
|
||||
Will bitcoin pump because Donald trump's presidential inauguration? 2w ago by 47_m.naufal
|
||||
Yes that will happen
|
||||
No,that wont happen
|
||||
Vote
|
||||
171 votes
|
||||
4
|
||||
Gainers & Losers (from top 50)
|
||||
Coin % 24h % 1h Price Volume 24hBitget Token
|
||||
BGB
|
||||
18.86% 1.38% $3.89 $250,834,731
|
||||
XRP
|
||||
XRP
|
||||
14.33% 2.37% $2.70 $19,544,042,267
|
||||
Stellar
|
||||
XLM
|
||||
13.31% 0.45% $0.464 $1,390,111,393
|
||||
Cronos
|
||||
CRO
|
||||
12.62% 1.82% $0.194 $171,766,985
|
||||
TRON
|
||||
TRX
|
||||
5.33% 1.01% $0.294 $3,174,699,996
|
||||
Hedera
|
||||
HBAR
|
||||
5.19% 0.75% $0.292 $954,671,912
|
||||
Hyperliquid
|
||||
HYPE
|
||||
4.98% -1.72% $27.46 $331,099,240
|
||||
VeChain
|
||||
VET
|
||||
4.90% 2.45% $0.057 $182,356,846
|
||||
Mantle
|
||||
MNT
|
||||
4.77% -0.84% $1.24 $149,556,620
|
||||
Aptos
|
||||
APT
|
||||
4.70% -0.76% $13.90 $742,590,965
|
||||
Chainlink
|
||||
LINK
|
||||
-4.88% -0.32% $28.39 $2,802,338,782
|
||||
Aave
|
||||
AAVE
|
||||
-3.13% -0.09% $371.59 $1,548,183,217
|
||||
Kaspa
|
||||
KAS
|
||||
-1.68% -0.24% $0.146 $200,087,654
|
||||
MANTRA
|
||||
OM
|
||||
-0.71% 0.37% $3.92 $118,024,518
|
||||
Artificial Superintelligence Alliance
|
||||
FET
|
||||
-0.10% 0.53% $1.69 $470,778,103
|
||||
Bittensor
|
||||
TAO
|
||||
-0.08% 0.22% $537.72 $259,986,324
|
||||
Tether
|
||||
USDT
|
||||
-0.04% 0.05% $1.00 $57,925,808,904
|
||||
USDS
|
||||
USDS
|
||||
-0.03% -0.02% $1.00 $10,823,600
|
||||
Uniswap
|
||||
UNI
|
||||
-0.03% 0.54% $16.33 $822,036,869
|
||||
Ethena USDe
|
||||
USDE
|
||||
-0.02% 0.02% $1.00 $101,645,983
|
||||
Advertise
|
||||
Developers
|
||||
About
|
||||
Contact
|
||||
Terms
|
||||
© CryptoPanic.com
|
||||
Region
|
||||
Become PRO
|
||||
Guides
|
||||
Bizz Hub
|
||||
Advertise
|
||||
Developers
|
||||
About
|
||||
Careers
|
||||
Contact
|
||||
Terms
|
||||
Log in
|
||||
Sign Up
|
||||
0
|
||||
1h
|
||||
24h
|
||||
7d
|
||||
$
|
||||
0.00
|
||||
%
|
||||
MC
|
||||
$
|
||||
3.93T
|
||||
2.83%
|
||||
BTC
|
||||
$
|
||||
106,766
|
||||
2.80%
|
||||
ETH
|
||||
$
|
||||
3995.9
|
||||
1.93%
|
||||
XRP
|
||||
$
|
||||
2.70
|
||||
14.33%
|
||||
USDT
|
||||
$
|
||||
1.00
|
||||
-0.04%
|
||||
SOL
|
||||
$
|
||||
222.03
|
||||
3.57%
|
||||
BNB
|
||||
$
|
||||
719.61
|
||||
1.82%
|
||||
DOGE
|
||||
$
|
||||
0.405
|
||||
2.37%
|
||||
USDC
|
||||
$
|
||||
1.000
|
||||
-0.00%
|
||||
ADA
|
||||
$
|
||||
1.10
|
||||
4.14%
|
||||
STETH
|
||||
$
|
||||
3986.8
|
||||
1.87%
|
||||
TRX
|
||||
$
|
||||
0.294
|
||||
5.33%
|
||||
AVAX
|
||||
$
|
||||
50.26
|
||||
3.21%
|
||||
LINK
|
||||
$
|
||||
28.39
|
||||
-4.88%
|
||||
WSTETH
|
||||
$
|
||||
4742.5
|
||||
1.84%
|
||||
SHIB
|
||||
$
|
||||
0.000
|
||||
1.98%
|
||||
TON
|
||||
$
|
||||
6.12
|
||||
1.50%
|
||||
WBTC
|
||||
$
|
||||
106,418
|
||||
2.83%
|
||||
XLM
|
||||
$
|
||||
0.464
|
||||
13.31%
|
||||
SUI
|
||||
$
|
||||
4.75
|
||||
1.91%
|
||||
Use search to follow more currencies
|
||||
We value your privacy
|
||||
|
||||
By clicking Accept, you consent to the use of all cookies. If you do not wish to accept all cookies, you may choose to manage your preferences by opting out optional cookies. For more information on how we use cookies and to view our Privacy Policy and our Cookie Notice.
|
||||
|
||||
CryptoPanic (required): Used for site functioning properly
|
||||
Analytics (optional): Used for CryptoPanic improvements
|
||||
Accept
|
@ -1,4 +0,0 @@
|
||||
[{"focuspoint": "BTC现价", "explanation": "价格+对应日期时间"},
|
||||
{"focuspoint": "ETH现价", "explanation": "价格+对应日期时间"},
|
||||
{"focuspoint": "XRP现价", "explanation": "价格+对应日期时间"}
|
||||
]
|
@ -1,239 +0,0 @@
|
||||
focus statement: #BTC现价
|
||||
解释:价格+对应日期时间
|
||||
#ETH现价
|
||||
解释:价格+对应日期时间
|
||||
#XRP现价
|
||||
解释:价格+对应日期时间
|
||||
|
||||
|
||||
raw materials: bd6dae
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 13.208484888076782
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
#BTC现价: Riot Platforms Expands Holdings to 17,429 BTC
|
||||
#ETH现价: The best Vip Club & Transfer Program. Get Weekly&Monthly Bonuses. 25% Cashback. Crypto Staking: EARN up to 200%
|
||||
#BTC现价: Bitcoin Hits Record High: $107,699 – $110K Next? coinpaprika.comBTC87861h
|
||||
#ETH现价: Ethereum Reaches $4,100 For The First Time In Over Three Years, Aiming For $5,000 Next newsbtc.com11111h
|
||||
#XRP现价: XRP ‘off to the races’ to hit $4, according to crypto analyst finbold.com111111h
|
||||
#BTC现价: Bitcoin Hits Record High: $107,699 – $110K Next? coinpaprika.com
|
||||
#ETH现价: Ethereum Price Prediction: Cup and Handle Signals $6K Breakout, But.. thecoinrepublic.com
|
||||
#XRP现价: Ripple XRP Is Going To $100 In 2025 Bitcoin And The Cryptocurrency Market Are ABOUT TO SKYROCKET TheModernInvestorBTC XRP
|
||||
#BTC现价: XRPXRP 14.33% 2.37% $2.70 $19,544,042,267
|
||||
#ETH现价: XRPXRP 14.33% 2.37% $2.70 $19,544,042,267
|
||||
#XRP现价: XRPXRP 14.33% 2.37% $2.70 $19,544,042,267
|
||||
#BTC现价: $106,7662.80%
|
||||
#ETH现价: $3995.91.93%
|
||||
#XRP现价: $2.7014.33%
|
||||
more urls:
|
||||
WBTC $106,418 2.83%
|
||||
ETH $3995.9 1.93%
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
|
||||
************
|
||||
|
||||
llm model: THUDM/glm-4-9b-chat
|
||||
hallucination times: 1
|
||||
total analysis time: 9.734665870666504
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
BTC现价: Welcome Bonus 7 BTC + 250 Free Spins
|
||||
ETH现价: 15min$ETH Breaking the ~0.04 level on the ETH/BTC pair would be confirmation for me that we'll get another big altcoin leg up.
|
||||
BTC现价: $107,699 – $110K
|
||||
ETH现价: $4,100 For The First Time In Over Three Years, Aiming For $5,000 Next
|
||||
XRP现价: XRP ‘off to the races’ to hit $4
|
||||
BTC现价: $107,699 – $110K
|
||||
ETH现价: Cup and Handle Signals $6K Breakout
|
||||
XRP现价: Ripple XRP Is Going To $100 In 2025 Bitcoin And The Cryptocurrency Market Are ABOUT TO SKYROCKET
|
||||
XRP现价: $2.70
|
||||
BTC现价: $106,766
|
||||
ETH现价: $3,995.91
|
||||
XRP现价: $2.70
|
||||
more urls:
|
||||
WBTC $106,418 2.83%
|
||||
Mantle
|
||||
Chainlink
|
||||
MANTRA
|
||||
Hedera
|
||||
Artificial Superintelligence Alliance
|
||||
NordVPN Christmas Campaign - Special Offer: Up to 74% off + 3 extra months, starting at $2.99 / 2.99 €
|
||||
Bitget Token
|
||||
Stellar
|
||||
VeChain
|
||||
Hyperliquid
|
||||
TRON
|
||||
Bittensor
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
Will bitcoin pump because Donald trump's presidential inauguration?
|
||||
Kaspa
|
||||
47_m.naufal
|
||||
Aptos
|
||||
|
||||
************
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 4
|
||||
total analysis time: 16.07617998123169
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
BTC现价: $106,766 2.80%
|
||||
ETH现价: $3995.9 1.93%
|
||||
XRP现价: $2.70 14.33%
|
||||
more urls:
|
||||
WBTC $106,418 2.83%
|
||||
STETH $3986.8 1.87%
|
||||
ETH $3995.9 1.93%
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
BNB $719.61 1.82%
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/QwQ-32B-Preview
|
||||
hallucination times: 0
|
||||
total analysis time: 55.54377293586731
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
#BTC现价: 价格+对应日期时间
|
||||
#ETH现价: 价格+对应日期时间
|
||||
#XRP现价: 价格+对应日期时间
|
||||
BTC现价: Bitcoin Hits Record High: $107,699 – $110K Next? coinpaprika.com BTC ATH ATH1h
|
||||
ETH现价: Ethereum Foundation Dump Another 100 ETH for $420k, ETH Price to Drop coinpedia.org ETH ETH1144min
|
||||
XRP现价: XRP ‘off to the races’ to hit $4, according to crypto analyst finbold.com 111111h
|
||||
#BTC现价: Bitcoin Hits Record High: $107,699 – $110K Next? coinpaprika.com
|
||||
#ETH现价: Ethereum Price Prediction: Cup and Handle Signals $6K Breakout, But.. thecoinrepublic.com
|
||||
#XRP现价: Ripple XRP Is Going To $100 In 2025 Bitcoin And The Cryptocurrency Market Are ABOUT TO SKYROCKET TheModernInvestorBTC XRP
|
||||
BTC现价: 比特币现价为$16,500,日期时间为2023年10月10日12:00
|
||||
ETH现价: 以太坊现价为$1,200,日期时间为2023年10月10日12:00
|
||||
XRP现价: 瑞波币现价为$0.30,日期时间为2023年10月10日12:00
|
||||
#BTC现价: $106,766
|
||||
#ETH现价: $3995.91
|
||||
#XRP现价: $2.70
|
||||
more urls:
|
||||
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 3
|
||||
total analysis time: 6.612479209899902
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
#BTC现价: Bitcoin Hits Record High: $107,699 – $110K Next?
|
||||
#ETH现价: Ethereum Reaches $4,100 For The First Time In Over Three Years, Aiming For $5,000 Next
|
||||
#XRP现价: XRP ‘off to the races’ to hit $4, according to crypto analyst
|
||||
#BTC现价: $106,7662.80%
|
||||
#ETH现价: $3995.91.93%
|
||||
#XRP现价: $2.7014.33%
|
||||
more urls:
|
||||
ETH $3995.9 1.93%
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 4
|
||||
total analysis time: 6.956144094467163
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
BTC现价: $106,766
|
||||
ETH现价: $3995.91
|
||||
XRP现价: $2.70
|
||||
more urls:
|
||||
ETH $3995.9 1.93%
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 3
|
||||
total analysis time: 6.254049062728882
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
BTC现价: Bitcoin Hits Record High: $107,699 – $110K Next?
|
||||
BTC现价: $107,699
|
||||
XRP现价: $2.70
|
||||
BTC现价: $106,766
|
||||
ETH现价: $3995.91
|
||||
XRP现价: $2.70
|
||||
more urls:
|
||||
ETH $3995.9 1.93%
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 2
|
||||
total analysis time: 5.391617059707642
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
BTC现价: Bitcoin Hits Record High: $107,699 – $110K Next?
|
||||
ETH现价: Ethereum Reaches $4,100 For The First Time In Over Three Years, Aiming For $5,000 Next
|
||||
XRP现价: XRP ‘off to the races’ to hit $4, according to crypto analyst
|
||||
BTC现价: 4hferas1 today xrp 2.75
|
||||
ETH现价: 4hferas1 today xrp 2.75
|
||||
XRP现价: 4hferas1 today xrp 2.75
|
||||
BTC现价: BTC$106,766
|
||||
ETH现价: ETH$3995.91
|
||||
XRP现价: XRP$2.70
|
||||
more urls:
|
||||
WBTC $106,418 2.83%
|
||||
ETH $3995.9 1.93%
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
|
||||
************
|
||||
|
||||
llm model: 01-ai/Yi-1.5-34B-Chat-16K
|
||||
hallucination times: 0
|
||||
total analysis time: 12.98062801361084
|
||||
|
||||
author and publish time(not formated): {'source': 'CryptoPanic', 'publish_date': 'NA'}
|
||||
infos(not formated):
|
||||
#BTC现价: BTC现价:$BTC
|
||||
#ETH现价: ETH现价:$ETH
|
||||
#XRP现价: XRP现价:$XRP
|
||||
#BTC现价: Bitcoin Price Prediction 2025: Can BTC Rally to $150K by Mid-Year?
|
||||
#ETH现价: Ethereum Reaches $4,100 For The First Time In Over Three Years, Aiming For $5,000 Next
|
||||
#XRP现价: XRPL governance under scrutiny, Ripple CTO suggests voting upgrades
|
||||
#BTC现价: Bitcoin价格:$107,699
|
||||
#ETH现价: Ethereum价格:$6,000(预测数据)
|
||||
#XRP现价: XRP价格:$100(预测数据)
|
||||
#BTC现价: Bitcoin (BTC) Price: $3.89
|
||||
#ETH现价: Ethereum (ETH) Price: $2.70
|
||||
#XRP现价: Ripple (XRP) Price: $0.294
|
||||
#BTC现价: $106,766
|
||||
#ETH现价: $399
|
||||
#XRP现价: $2.70
|
||||
more urls:
|
||||
DOGE $0.405 2.37%
|
||||
WSTETH $4742.5 1.84%
|
||||
WBTC $106,418 2.83%
|
||||
USDC $1.000 -0.00%
|
||||
SHIB $0.000 1.98%
|
||||
BTC $106,766 2.80%
|
||||
XRP $2.70 14.33%
|
||||
TON $6.12 1.50%
|
||||
SUI $4.75 1.91%
|
||||
BNB $719.61 1.82%
|
||||
ETH $3995.9 1.93%
|
||||
STETH $3986.8 1.87%
|
||||
AVAX $50.26 3.21%
|
||||
|
||||
************
|
||||
|
@ -1,19 +0,0 @@
|
||||
{
|
||||
"url": "https://cryptopanic.com/news/",
|
||||
"unique_key": "https://cryptopanic.com/news",
|
||||
"method": "GET",
|
||||
"headers": {},
|
||||
"payload": null,
|
||||
"user_data": {
|
||||
"__crawlee": {
|
||||
"state": 3
|
||||
}
|
||||
},
|
||||
"retry_count": 0,
|
||||
"no_retry": false,
|
||||
"loaded_url": "https://cryptopanic.com/",
|
||||
"handled_at": "2024-12-17 12:18:29.655660+00:00",
|
||||
"id": "7aypBtXvInG5cU9",
|
||||
"json_": "{\n \"url\": \"https://cryptopanic.com/news/\",\n \"unique_key\": \"https://cryptopanic.com/news\",\n \"method\": \"GET\",\n \"headers\": {},\n \"payload\": null,\n \"user_data\": {\n \"__crawlee\": {\n \"state\": 3\n }\n },\n \"retry_count\": 0,\n \"no_retry\": false,\n \"loaded_url\": \"https://cryptopanic.com/\",\n \"handled_at\": \"2024-12-17 12:18:29.655660+00:00\",\n \"id\": \"7aypBtXvInG5cU9\",\n \"order_no\": null\n}",
|
||||
"order_no": null
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"id": "default",
|
||||
"name": null,
|
||||
"accessed_at": "2024-12-17 12:18:29.657027+00:00",
|
||||
"created_at": "2024-12-17 12:17:52.625612+00:00",
|
||||
"modified_at": "2024-12-17 12:18:29.655992+00:00",
|
||||
"had_multiple_clients": false,
|
||||
"handled_request_count": 1,
|
||||
"pending_request_count": 0,
|
||||
"stats": {},
|
||||
"total_request_count": 1,
|
||||
"user_id": "1",
|
||||
"resource_directory": "test/webpage_samples/crawlee_storage/request_queues/default"
|
||||
}
|
Before Width: | Height: | Size: 47 KiB |
@ -1,7 +0,0 @@
|
||||
天冷脂肪多更保暖?真相来了!
|
||||
学习强国 2024年12月17日 17:30 北京
|
||||
都说冬天瘦子羡慕胖胖的人,因为觉得不怕冷,毕竟比别人多了一层“肉盾”抵御严寒。脂肪多就等于抗冻吗?戳视频赶快了解下。
|
||||
|
||||
来源:中国天气网
|
||||
责编:孙雪萌
|
||||
审校:郭圣群 张恒
|
@ -1,96 +0,0 @@
|
||||
{
|
||||
"首页": "https://www.gd121.cn/index.shtml",
|
||||
"预警": "https://www.gd121.cn/yj/index.shtml",
|
||||
"广州": "https://www.gd121.cn/yj/index.shtml?city=广州",
|
||||
"深圳": "https://www.gd121.cn/yj/index.shtml?city=深圳",
|
||||
"佛山": "https://www.gd121.cn/yj/index.shtml?city=佛山",
|
||||
"东莞": "https://www.gd121.cn/yj/index.shtml?city=东莞",
|
||||
"中山": "https://www.gd121.cn/yj/index.shtml?city=中山",
|
||||
"珠海": "https://www.gd121.cn/yj/index.shtml?city=珠海",
|
||||
"惠州": "https://www.gd121.cn/yj/index.shtml?city=惠州",
|
||||
"江门": "https://www.gd121.cn/yj/index.shtml?city=江门",
|
||||
"肇庆": "https://www.gd121.cn/yj/index.shtml?city=肇庆",
|
||||
"汕头": "https://www.gd121.cn/yj/index.shtml?city=汕头",
|
||||
"潮州": "https://www.gd121.cn/yj/index.shtml?city=潮州",
|
||||
"揭阳": "https://www.gd121.cn/yj/index.shtml?city=揭阳",
|
||||
"汕尾": "https://www.gd121.cn/yj/index.shtml?city=汕尾",
|
||||
"湛江": "https://www.gd121.cn/yj/index.shtml?city=湛江",
|
||||
"茂名": "https://www.gd121.cn/yj/index.shtml?city=茂名",
|
||||
"阳江": "https://www.gd121.cn/yj/index.shtml?city=阳江",
|
||||
"云浮": "https://www.gd121.cn/yj/index.shtml?city=云浮",
|
||||
"韶关": "https://www.gd121.cn/yj/index.shtml?city=韶关",
|
||||
"清远": "https://www.gd121.cn/yj/index.shtml?city=清远",
|
||||
"梅州": "https://www.gd121.cn/yj/index.shtml?city=梅州",
|
||||
"河源": "https://www.gd121.cn/yj/index.shtml?city=河源",
|
||||
"天气": "https://www.gd121.cn/tq/ld/list.shtml",
|
||||
"云图": "https://www.gd121.cn/tq/yt/list.shtml",
|
||||
"海洋": "https://www.gd121.cn/tq/hy/list.shtml",
|
||||
"台风": "https://www.gd121.cn/tq/tf/list.shtml",
|
||||
"旅游天气": "https://www.gd121.cn/tq/jdtq_list.shtml",
|
||||
"机场&车站": "https://www.gd121.cn/tq/jccz/list.shtml",
|
||||
"高清图集": "https://www.gd121.cn/tq/gqtj/index.shtml",
|
||||
"视频": "https://www.gd121.cn/tq/tqsp/list.shtml",
|
||||
"服务": "https://www.gd121.cn/fw/index.shtml",
|
||||
"科普": "https://www.gd121.cn/kp/index.shtml",
|
||||
"互动": "https://www.gd121.cn/hd/index.shtml",
|
||||
"用户反馈": "https://www.gd121.cn/hd/yhfk/list.shtml",
|
||||
"实景上传": "https://www.gd121.cn/hd/sjsc/index.shtml",
|
||||
"用户中心": "http://passport.gd121.cn/ucy_center/index",
|
||||
"共享": "https://www.gd121.cn/cos/index.shtml",
|
||||
"气象资讯": "https://www.gd121.cn/zx/qxzx/list.shtml",
|
||||
"冷空气持续补充,广东晴燥天气持续": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193d2f022fb3bbb.shtml",
|
||||
"广东维持干燥 早晚寒冷": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193cdc5262a3ba4.shtml",
|
||||
"冻感十足的广东,未来几天部分地区最低气温跌破零度": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c88781563b7c.shtml",
|
||||
"冷空气持续补充影响,我省维持干燥天气早晚寒冷": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193c33926013b52.shtml",
|
||||
"冷空气持续补充 广东今明气温继续下降": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193bec2d8183b24.shtml",
|
||||
"冷空气持续补充影响,广东气温逐日小幅下降": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b8ee572f3af6.shtml",
|
||||
"冷空气今日到达广东 未来几天气温逐日下降": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193b473fce73adb.shtml",
|
||||
"前方冷空气们在排队了,这次“冻”真格!": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aef0633d3ab4.shtml",
|
||||
"新一股冷空气11日起影响广东": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193aa2d54233aa0.shtml",
|
||||
"7-9日广东大部晴到多云早晚寒凉": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939f2fccbc3a6b.shtml",
|
||||
"周末广东气温继续下降": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939a607a933a59.shtml",
|
||||
"7-8日中等强度冷空气影响广东": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601939596d4903a41.shtml",
|
||||
"本周末中等强度冷空气入粤": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938fc87eee3a2a.shtml",
|
||||
"未来两天天气平稳,4-6日两股冷空气到访": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938af540583a14.shtml",
|
||||
"广东云量增多气温上升": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601938584f2273a00.shtml",
|
||||
"未来三天广东天气干燥,早晚寒冷": "https://www.gd121.cn/zx/qxzx/ff8080818a06a656019380b4f77d39e6.shtml",
|
||||
"未来几天广东天晴干燥,注意补水": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601937b4ea6d539d0.shtml",
|
||||
"未来三天广东天晴干燥 气温缓升": "https://www.gd121.cn/zx/qxzx/ff8080818a06a6560193769fe4f2399d.shtml",
|
||||
"未来几天广东昼暖夜冷,注意保暖": "https://www.gd121.cn/zx/qxzx/ff8080818a06a656019370da773c398b.shtml",
|
||||
"未来三天广东晴冷继续": "https://www.gd121.cn/zx/qxzx/ff8080818a06a65601936ba4bb3d396b.shtml",
|
||||
"下一页": "https://www.gd121.cn/list_2.shtml",
|
||||
"尾页": "https://www.gd121.cn/list_10.shtml",
|
||||
"更多>>": "https://www.gd121.cn/kp/yjkp/list.shtml",
|
||||
"[详情]": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edada382a17.shtml",
|
||||
"广东省气象局启动气象灾害(暴雨)Ⅳ级...": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadbb42a19.shtml",
|
||||
"广东省气象局结束气象灾害(暴雨)Ⅱ级...": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadd2e2a1b.shtml",
|
||||
"广东省气象局结束气象灾害(台风)Ⅲ级...": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edade922a1d.shtml",
|
||||
"广东省气象局启动气象灾害(暴雨)Ⅱ级...": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edadfff2a1f.shtml",
|
||||
"广东省气象局升级气象灾害(台风)应急...": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae2d42a23.shtml",
|
||||
"广东省气象局启动气象灾害(台风)Ⅳ级...": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae16f2a21.shtml",
|
||||
"广东省气象局结束气象灾害(寒冷)Ⅲ级...": "https://www.gd121.cn/zx/yjxy/8a14d310645ec72401645edae4362a25.shtml",
|
||||
"7-8日广东大部仍有强降水": "https://www.gd121.cn/zx/zhxx/ff8080818a06a656018a6dbc39560290.shtml",
|
||||
"7号台风“查帕卡&rdq...": "https://www.gd121.cn/zx/zhxx/ff8080817a75a9a2017abcdfd97f01bd.shtml",
|
||||
"18-20日广东多云有雾 21-24...": "https://www.gd121.cn/zx/zhxx/ff808081706d374701718b8ba69306c3.shtml",
|
||||
"12-15日广东大部天晴 早晚寒凉": "https://www.gd121.cn/zx/zhxx/ff808081706d374701716c94668c062a.shtml",
|
||||
"11日广东将有一次强对流天气过程": "https://www.gd121.cn/zx/zhxx/ff808081706d374701715cf0535405d5.shtml",
|
||||
"三天内广东大部降水频繁 粤北山区需防...": "https://www.gd121.cn/zx/zhxx/ff808081706d37470171438addf4052e.shtml",
|
||||
"自然灾害": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/list.shtml",
|
||||
"都市中遇到洪水怎么办": "https://www.gd121.cn/kp/yjkp/yjcs/zrzhsjcs/8a14d310645ec72401645ec9bdb20626.shtml",
|
||||
"公共卫生": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/list.shtml",
|
||||
"中国疾控中心提示:春节期间应做好传染病防御": "https://www.gd121.cn/kp/yjkp/yjcs/ggwssjcs/8a14d310645ec72401645ec9c64f065c.shtml",
|
||||
"社会安全": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/list.shtml",
|
||||
"购买、使用消防产品不容马虎": "https://www.gd121.cn/kp/yjkp/yjcs/shaqsjcs/8a14d310645ec72401645ec9c994066e.shtml",
|
||||
"预警信号": "https://www.gd121.cn/kp/yjkp/yjxh/list.shtml",
|
||||
"森林火险预警信号": "https://www.gd121.cn/kp/yjkp/yjxh/8a14d310645ec72401645ec9c9f70670.shtml",
|
||||
"天气插件": "https://www.gd121.cn/share/pluginWea.do",
|
||||
"数据接口": "https://www.gd121.cn/share/interface.do?id=1",
|
||||
"停课铃APP": "https://www.gd121.cn/fw/yjkhd/8a14d310645ec72401645ecbea730edb.shtml",
|
||||
"缤纷微天气": "https://www.gd121.cn/fw/wx/ff8080816f16da59016f176859fa0019.shtml",
|
||||
"政策法规": "https://www.gd121.cn/kp/zcfg/list.shtml",
|
||||
"数据共享": "https://www.gd121.cn/share/",
|
||||
"广东省气象局网站": "http://gd.cma.gov.cn/",
|
||||
"粤港澳大湾区天气网站": "https://www.gbaweather.net/tc/",
|
||||
"粤ICP备05011356号": "http://beian.miit.gov.cn",
|
||||
"粤公网安备 44010402001842号": "http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=44010402001842"
|
||||
}
|
Before Width: | Height: | Size: 622 KiB |
@ -1,107 +0,0 @@
|
||||
今天是2024年12月17日
|
||||
登录/注册
|
||||
|
||||
首页
|
||||
预警
|
||||
天气
|
||||
服务
|
||||
科普
|
||||
互动
|
||||
共享
|
||||
资讯
|
||||
>气象资讯
|
||||
冷空气持续补充,广东晴燥天气持续
|
||||
2024-12-17 12:46:13
|
||||
广东维持干燥 早晚寒冷
|
||||
2024-12-16 12:41:10
|
||||
冻感十足的广东,未来几天部分地区最低气温跌破零度
|
||||
2024-12-15 12:15:44
|
||||
冷空气持续补充影响,我省维持干燥天气早晚寒冷
|
||||
2024-12-14 11:55:15
|
||||
冷空气持续补充 广东今明气温继续下降
|
||||
2024-12-13 14:44:21
|
||||
冷空气持续补充影响,广东气温逐日小幅下降
|
||||
2024-12-12 11:34:08
|
||||
冷空气今日到达广东 未来几天气温逐日下降
|
||||
2024-12-11 14:42:01
|
||||
前方冷空气们在排队了,这次“冻”真格!
|
||||
2024-12-10 13:00:10
|
||||
新一股冷空气11日起影响广东
|
||||
2024-12-09 14:48:38
|
||||
7-9日广东大部晴到多云早晚寒凉
|
||||
2024-12-07 11:35:30
|
||||
周末广东气温继续下降
|
||||
2024-12-06 13:10:35
|
||||
7-8日中等强度冷空气影响广东
|
||||
2024-12-05 14:51:50
|
||||
本周末中等强度冷空气入粤
|
||||
2024-12-04 11:48:22
|
||||
未来两天天气平稳,4-6日两股冷空气到访
|
||||
2024-12-03 13:19:09
|
||||
广东云量增多气温上升
|
||||
2024-12-02 11:58:23
|
||||
未来三天广东天气干燥,早晚寒冷
|
||||
2024-12-01 13:32:44
|
||||
未来几天广东天晴干燥,注意补水
|
||||
2024-11-30 12:22:53
|
||||
未来三天广东天晴干燥 气温缓升
|
||||
2024-11-29 14:33:31
|
||||
未来几天广东昼暖夜冷,注意保暖
|
||||
2024-11-28 11:39:46
|
||||
未来三天广东晴冷继续
|
||||
2024-11-27 11:22:58
|
||||
共200条 下一页 尾页 每页20条,第1/10页 转到第页 跳转
|
||||
应急响应
|
||||
更多>>
|
||||
广东省气象局结束气象灾害(暴雨...
|
||||
|
||||
6月12日到14日,珠江三角洲市县、粤西大部分市县出现了暴雨到大暴雨局部特大暴雨。预计,15日...[详情]
|
||||
|
||||
广东省气象局启动气象灾害(暴雨)Ⅳ级...
|
||||
广东省气象局结束气象灾害(暴雨)Ⅱ级...
|
||||
广东省气象局结束气象灾害(台风)Ⅲ级...
|
||||
广东省气象局启动气象灾害(暴雨)Ⅱ级...
|
||||
广东省气象局升级气象灾害(台风)应急...
|
||||
广东省气象局启动气象灾害(台风)Ⅳ级...
|
||||
广东省气象局结束气象灾害(寒冷)Ⅲ级...
|
||||
热点专题
|
||||
更多>>
|
||||
1
|
||||
2
|
||||
综合消息
|
||||
更多>>
|
||||
7-8日广东大部仍有强降水
|
||||
7号台风“查帕卡&rdq...
|
||||
18-20日广东多云有雾 21-24...
|
||||
12-15日广东大部天晴 早晚寒凉
|
||||
11日广东将有一次强对流天气过程
|
||||
三天内广东大部降水频繁 粤北山区需防...
|
||||
应急科普
|
||||
更多>>
|
||||
|
||||
自然灾害
|
||||
都市中遇到洪水怎么办
|
||||
|
||||
公共卫生
|
||||
中国疾控中心提示:春节期间应做好传染病防御
|
||||
|
||||
社会安全
|
||||
购买、使用消防产品不容马虎
|
||||
|
||||
预警信号
|
||||
森林火险预警信号
|
||||
天气插件
|
||||
形式多样,强大的自定义功能,为您的网站量身定做个性化预警插件。
|
||||
数据接口
|
||||
我们会为您们提供最权威、最真实、最及时、最全面的数据服务与共享。
|
||||
停课铃APP
|
||||
广东省气象局官方客户端,提供全省停课信号、天气预警、天气查询等服务。
|
||||
缤纷微天气
|
||||
微信小程序,提供基于位置的天气预报、预警服务。
|
||||
预警信息 | 公众服务 | 应急科普 | 政策法规 | 数据共享 | 服务渠道
|
||||
|
||||
友情链接:广东省气象局网站 | 粤港澳大湾区天气网站
|
||||
|
||||
联系电话:020-87664716地址:广东省广州市天河区东莞庄路312号
|
||||
|
||||
粤ICP备05011356号 粤公网安备 44010402001842号 ©广东省气象公共服务中心版权所有 | 技术支持:数鹏通(LinkCM)科技
|
@ -1,384 +0,0 @@
|
||||
focus statement: #广州市的冷空气预警信息
|
||||
解释:仅限2024年12月及以后
|
||||
#深圳市的冷空气预警信息
|
||||
解释:仅限2024年12月及以后
|
||||
#广东全省的台风预警
|
||||
解释:仅限2024年的信息
|
||||
|
||||
|
||||
raw materials: ab9447
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 0
|
||||
total analysis time: 28.350039958953857
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
#广州市的冷空气预警信息: 冷空气持续补充,广东晴燥天气持续2024-12-17 12:46:13广东维持干燥 早晚寒冷2024-12-16 12:41:10冻感十足的广东,未来几天部分地区最低气温跌破零度2024-12-15 12:15:44冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21冷空气持续补充 广东气温逐日小幅下降2024-12-12 11:34:08冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01前方冷空气们在排队了,这次“冻”真格!2024-12-10 13:00:10新一股冷空气11日起影响广东2024-12-09 14:48:387-9日广东大部晴到多云早晚寒凉2024-12-07 11:35:30周末广东气温继续下降2024-12-06 13:10:357-8日中等强度冷空气影响广东2024-12-05 14:51:50本周末中等强度冷空气入粤2024-12-04 11:48:22未来两天天气平稳,4-6日两股冷空气到访2024-12-03 13:19:09广东云量增多气温上升2024-12-02 11:58:23未来三天广东天气干燥,早晚寒冷2024-12-01 13:32:44未来几天广东天晴干燥,注意补水2024-11-30 12:22:53未来三天广东天晴干燥 气温缓升2024-11-29 14:33:31未来几天广东昼暖夜冷,注意保暖2024-11-28 11:39:46未来三天广东晴冷继续2024-11-27 11:22:58
|
||||
more urls:
|
||||
台风
|
||||
冷空气持续补充,广东晴燥天气持续
|
||||
广东维持干燥 早晚寒冷
|
||||
冻感十足的广东,未来几天部分地区最低气温跌破零度
|
||||
冷空气持续补充影响,我省维持干燥天气早晚寒冷
|
||||
冷空气持续补充 广东今明气温继续下降
|
||||
冷空气持续补充影响,广东气温逐日小幅下降
|
||||
冷空气今日到达广东 未来几天气温逐日下降
|
||||
新一股冷空气11日起影响广东
|
||||
7-9日广东大部晴到多云早晚寒凉
|
||||
周末广东气温继续下降
|
||||
7-8日中等强度冷空气影响广东
|
||||
本周末中等强度冷空气入粤
|
||||
未来两天天气平稳,4-6日两股冷空气到访
|
||||
广东省气象局结束气象灾害(暴雨)Ⅱ级...
|
||||
广东省气象局结束气象灾害(台风)Ⅲ级...
|
||||
7号台风“查帕卡&rdq...
|
||||
预警信号
|
||||
广东省气象局网站
|
||||
|
||||
************
|
||||
|
||||
llm model: THUDM/glm-4-9b-chat
|
||||
hallucination times: 1
|
||||
total analysis time: 38.19417214393616
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
广州市的冷空气预警信息: 广东维持干燥 早晚寒冷2024-12-16 12:41:10冻感十足的广东,未来几天部分地区最低气温跌破零度2024-12-15 12:15:44冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01前方冷空气们在排队了,这次“冻”真格!2024-12-10 13:00:10新一股冷空气11日起影响广东2024-12-09 14:48:387-9日广东大部晴到多云早晚寒凉2024-12-07 11:35:30周末广东气温继续下降2024-12-06 13:10:357-8日中等强度冷空气影响广东2024-12-05 14:51:50本周末中等强度冷空气入粤2024-12-04 11:48:22未来两天天气平稳,4-6日两股冷空气到访2024-12-03 13:19:09广东云量增多气温上升2024-12-02 11:58:23未来三天广东天气干燥,早晚寒冷2024-12-01 13:32:44未来几天广东天晴干燥,注意补水2024-11-30 12:22:53未来三天广东天晴干燥 气温缓升2024-11-29 14:33:31未来几天广东昼暖夜冷,注意保暖2024-11-28 11:39:46未来三天广东晴冷继续2024-11-27 11:22:58共200条 下一页 尾页 每页20条,第1/10页 转到第页 跳转
|
||||
深圳市的冷空气预警信息: 广东维持干燥 早晚寒冷2024-12-16 12:41:10冻感十足的广东,未来几天部分地区最低气温跌破零度2024-12-15 12:15:44冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01前方冷空气们在排队了,这次“冻”真格!2024-12-10 13:00:10新一股冷空气11日起影响广东2024-12-09 14:48:387-9日广东大部晴到多云早晚寒凉2024-12-07 11:35:30周末广东气温继续下降2024-12-06 13:10:357-8日中等强度冷空气影响广东2024-12-05 14:51:50本周末中等强度冷空气入粤2024-12-04 11:48:22未来两天天气平稳,4-6日两股冷空气到访2024-12-03 13:19:09广东云量增多气温上升2024-12-02 11:58:23未来三天广东天气干燥,早晚寒冷2024-12-01 13:32:44未来几天广东天晴干燥,注意补水2024-11-30 12:22:53未来三天广东天晴干燥 气温缓升2024-11-29 14:33:31未来几天广东昼暖夜冷,注意保暖2024-11-28 11:39:46未来三天广东晴冷继续2024-11-27 11:22:58共200条 下一页 尾页 每页20条,第1/10页 转到第页 跳转
|
||||
more urls:
|
||||
预警
|
||||
天气
|
||||
台风
|
||||
冷空气持续补充,广东晴燥天气持续
|
||||
广东维持干燥 早晚寒冷
|
||||
冻感十足的广东,未来几天部分地区最低气温跌破零度
|
||||
冷空气持续补充影响,我省维持干燥天气早晚寒冷
|
||||
冷空气持续补充 广东今明气温继续下降
|
||||
冷空气持续补充影响,广东气温逐日小幅下降
|
||||
冷空气今日到达广东 未来几天气温逐日下降
|
||||
前方冷空气们在排队了,这次“冻”真格!
|
||||
新一股冷空气11日起影响广东
|
||||
周末广东气温继续下降
|
||||
7-8日中等强度冷空气影响广东
|
||||
本周末中等强度冷空气入粤
|
||||
未来两天天气平稳,4-6日两股冷空气到访
|
||||
未来三天广东天气干燥,早晚寒冷
|
||||
未来三天广东天晴干燥 气温缓升
|
||||
未来几天广东昼暖夜冷,注意保暖
|
||||
未来三天广东晴冷继续
|
||||
广东省气象局结束气象灾害(台风)Ⅲ级...
|
||||
广东省气象局升级气象灾害(台风)应急...
|
||||
广东省气象局启动气象灾害(台风)Ⅳ级...
|
||||
7-8日广东大部仍有强降水
|
||||
7号台风“查帕卡&rdq...
|
||||
18-20日广东多云有雾 21-24...
|
||||
12-15日广东大部天晴 早晚寒凉
|
||||
三天内广东大部降水频繁 粤北山区需防...
|
||||
自然灾害
|
||||
公共卫生
|
||||
社会安全
|
||||
预警信号
|
||||
森林火险预警信号
|
||||
广东省气象局网站
|
||||
粤港澳大湾区天气网站
|
||||
|
||||
-6
|
||||
************
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 1
|
||||
total analysis time: 1055.8521568775177
|
||||
|
||||
author and publish time(not formated): {'source': '广东省气象公共服务中心', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
广州市的冷空气预警信息: 冷空气持续补充,广东晴燥天气持续2024-12-17 12:46:13
|
||||
广州市的冷空气预警信息: 广东维持干燥 早晚寒冷2024-12-16 12:41:10
|
||||
广州市的冷空气预警信息: 冻感十足的广东,未来几天部分地区最低气温跌破零度2024-12-15 12:15:44
|
||||
广州市的冷空气预警信息: 冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15
|
||||
广州市的冷空气预警信息: 冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21
|
||||
广州市的冷空气预警信息: 冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08
|
||||
广州市的冷空气预警信息: 冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01
|
||||
广州市的冷空气预警信息: 新一股冷空气11日起影响广东2024-12-09 14:48:38
|
||||
广州市的冷空气预警信息: 7-8日中等强度冷空气影响广东2024-12-05 14:51:50
|
||||
广州市的冷空气预警信息: 本周末中等强度冷空气入粤2024-12-04 11:48:22
|
||||
广州市的冷空气预警信息: 未来两天天气平稳,4-6日两股冷空气到访2024-12-03 13:19:09
|
||||
广州市的冷空气预警信息: 未来三天广东天气干燥,早晚寒冷2024-12-01 13:32:44
|
||||
广州市的冷空气预警信息: 未来几天广东天晴干燥,注意补水2024-11-30 12:22:53
|
||||
广州市的冷空气预警信息: 未来三天广东天晴干燥 气温缓升2024-11-29 14:33:31
|
||||
广州市的冷空气预警信息: 未来几天广东昼暖夜冷,注意保暖2024-11-28 11:39:46
|
||||
广州市的冷空气预警信息: 未来三天广东晴冷继续2024-11-27 11:22:58
|
||||
深圳市的冷空气预警信息: 冷空气持续补充,广东晴燥天气持续2024-12-17 12:46:13
|
||||
深圳市的冷空气预警信息: 广东维持干燥 早晚寒冷2024-12-16 12:41:10
|
||||
深圳市的冷空气预警信息: 冻感十足的广东,未来几天部分地区最低气温跌破零度2024-12-15 12:15:44
|
||||
深圳市的冷空气预警信息: 冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15
|
||||
深圳市的冷空气预警信息: 冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21
|
||||
深圳市的冷空气预警信息: 冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08
|
||||
深圳市的冷空气预警信息: 冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01
|
||||
深圳市的冷空气预警信息: 新一股冷空气11日起影响广东2024-12-09 14:48:38
|
||||
深圳市的冷空气预警信息: 7-8日中等强度冷空气影响广东2024-12-05 14:51:50
|
||||
深圳市的冷空气预警信息: 本周末中等强度冷空气入粤2024-12-04 11:48:22
|
||||
深圳市的冷空气预警信息: 未来两天天气平稳,4-6日两股冷空气到访2024-12-03 13:19:09
|
||||
深圳市的冷空气预警信息: 未来三天广东天气干燥,早晚寒冷2024-12-01 13:32:44
|
||||
深圳市的冷空气预警信息: 未来几天广东天晴干燥,注意补水2024-11-30 12:22:53
|
||||
深圳市的冷空气预警信息: 未来三天广东天晴干燥 气温缓升2024-11-29 14:33:31
|
||||
深圳市的冷空气预警信息: 未来几天广东昼暖夜冷,注意保暖2024-11-28 11:39:46
|
||||
深圳市的冷空气预警信息: 未来三天广东晴冷继续2024-11-27 11:22:58
|
||||
广东全省的台风预警: 广东省气象局结束气象灾害(台风)Ⅲ级...广东省气象局启动气象灾害(台风)Ⅳ级...广东省气象局升级气象灾害(台风)应急...广东省气象局启动气象灾害(台风)Ⅳ级...
|
||||
more urls:
|
||||
台风
|
||||
气象资讯
|
||||
冷空气持续补充,广东晴燥天气持续
|
||||
广东维持干燥 早晚寒冷
|
||||
冻感十足的广东,未来几天部分地区最低气温跌破零度
|
||||
冷空气持续补充影响,我省维持干燥天气早晚寒冷
|
||||
广东省气象局结束气象灾害(台风)Ⅲ级...
|
||||
广东省气象局升级气象灾害(台风)应急...
|
||||
广东省气象局启动气象灾害(台风)Ⅳ级...
|
||||
广东省气象局结束气象灾害(寒冷)Ⅲ级...
|
||||
7号台风“查帕卡&rdq...
|
||||
预警信号
|
||||
广东省气象局网站
|
||||
粤港澳大湾区天气网站
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/QwQ-32B-Preview
|
||||
hallucination times: 2
|
||||
total analysis time: 917.1603031158447
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
广东全省的台风预警: 应急响应更多>>广东省气象局结束气象灾害(暴雨...6月12日到14日,珠江三角洲市县、粤西大部分市县出现了暴雨到大暴雨局部特大暴雨。预计,15日...[详情]广东省气象局启动气象灾害(暴雨)Ⅳ级...广东省气象局结束气象灾害(暴雨)Ⅱ级...广东省气象局结束气象灾害(台风)Ⅲ级...广东省气象局启动气象灾害(暴雨)Ⅱ级...广东省气象局升级气象灾害(台风)应急...广东省气象局启动气象灾害(台风)Ⅳ级...广东省气象局结束气象灾害(寒冷)Ⅲ级...热点专题更多>>12综合消息更多>>7-8日广东大部仍有强降水7号台风“查帕卡&rdq...18-20日广东多云有雾 21-24...12-15日广东大部天晴 早晚寒凉11日广东将有一次强对流天气过程三天内广东大部降水频繁 粤北山区需防...应急科普更多>> 自然灾害都市中遇到洪水怎么办 公共卫生中国疾控中心提示:春节期间应做好传染病防御 社会安全购买、使用消防产品不容马虎 预警信号森林火险预警信号天气插件形式多样,强大的自定义功能,为您的网站量身定做个性化预警插件。数据接口我们会为您们提供最权威、最真实、最及时、最全面的数据服务与共享。停课铃APP广东省气象局官方客户端,提供全省停课信号、天气预警、天气查询等服务。缤纷微天气微信小程序,提供基于位置的天气预报、预警服务。预警信息 | 公众服务 | 应急科普 | 政策法规 | 数据共享 | 服务渠道友情链接:广东省气象局网站 | 粤港澳大湾区天气网站联系电话:020-87664716地址:广东省广州市天河区东莞庄路312号 粤ICP备05011356号 粤公网安备 44010402001842号 ©广东省气象公共服务中心版权所有 | 技术支持:数鹏通(LinkCM)科技
|
||||
more urls:
|
||||
天气
|
||||
台风
|
||||
服务
|
||||
预警信号
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 0
|
||||
total analysis time: 128.1328718662262
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
广州市的冷空气预警信息: 冷空气持续补充,广东晴燥天气持续2024-12-17 12:46:13广东维持干燥 早晚寒冷2024-12-16 12:41:10冻感十足的广东,未来几天部分地区最低气温跌破零度2024-12-15 12:15:44冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01前方冷空气们在排队了,这次“冻”真格!2024-12-10 13:00:10新一股冷空气11日起影响广东2024-12-09 14:48:387-9日广东大部晴到多云早晚寒凉2024-12-07 11:35:30周末广东气温继续下降2024-12-06 13:10:357-8日中等强度冷空气影响广东2024-12-05 14:51:50本周末中等强度冷空气入粤2024-12-04 11:48:22未来两天天气平稳,4-6日两股冷空气到访2024-12-02 11:58:23未来三天广东天气干燥,早晚寒冷2024-12-01 13:32:44未来几天广东天晴干燥,注意补水2024-11-30 12:22:53未来三天广东天晴干燥 气温缓升2024-11-29 14:33:31未来几天广东昼暖夜冷,注意保暖2024-11-28 11:39:46未来三天广东晴冷继续2024-11-27 11:22:58
|
||||
深圳市的冷空气预警信息: 冷空气持续补充,广东晴燥天气持续2024-12-17 12:46:13广东维持干燥 早晚寒冷2024-12-16 12:41:10冻感十足的广东,未来几天部分地区最低气温跌破零度2024-12-15 12:15:44冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01前方冷空气们在排队了,这次“冻”真格!2024-12-10 13:00:10新一股冷空气11日起影响广东2024-12-09 14:48:387-9日广东大部晴到多云早晚寒凉2024-12-07 11:35:30周末广东气温继续下降2024-12-06 13:10:357-8日中等强度冷空气影响广东2024-12-05 14:51:50本周末中等强度冷空气入粤2024-12-04 11:48:22未来两天天气平稳,4-6日两股冷空气到访2024-12-02 11:58:23未来三天广东天气干燥,早晚寒冷2024-12-01 13:32:44未来几天广东天晴干燥,注意补水2024-11-30 12:22:53未来三天广东天晴干燥 气温缓升2024-11-29 14:33:31未来几天广东昼暖夜冷,注意保暖2024-11-28 11:39:46未来三天广东晴冷继续2024-11-27 11:22:58
|
||||
more urls:
|
||||
台风
|
||||
[详情]
|
||||
广东省气象局启动气象灾害(暴雨)Ⅳ级...
|
||||
预警信号
|
||||
广东省气象局网站
|
||||
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 0
|
||||
total analysis time: 86.74333310127258
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
广州市的冷空气预警信息: 冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15
|
||||
广州市的冷空气预警信息: 冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21
|
||||
广州市的冷空气预警信息: 冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08
|
||||
广州市的冷空气预警信息: 冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01
|
||||
广州市的冷空气预警信息: 前方冷空气们在排队了,这次“冻”真格!2024-12-10 13:00:10
|
||||
广州市的冷空气预警信息: 新一股冷空气11日起影响广东2024-12-09 14:48:38
|
||||
深圳市的冷空气预警信息: 冷空气持续补充影响,我省维持干燥天气早晚寒冷2024-12-14 11:55:15
|
||||
深圳市的冷空气预警信息: 冷空气持续补充 广东今明气温继续下降2024-12-13 14:44:21
|
||||
深圳市的冷空气预警信息: 冷空气持续补充影响,广东气温逐日小幅下降2024-12-12 11:34:08
|
||||
深圳市的冷空气预警信息: 冷空气今日到达广东 未来几天气温逐日下降2024-12-11 14:42:01
|
||||
深圳市的冷空气预警信息: 前方冷空气们在排队了,这次“冻”真格!2024-12-10 13:00:10
|
||||
深圳市的冷空气预警信息: 新一股冷空气11日起影响广东2024-12-09 14:48:38
|
||||
more urls:
|
||||
预警
|
||||
天气
|
||||
台风
|
||||
自然灾害
|
||||
预警信号
|
||||
广东省气象局网站
|
||||
粤港澳大湾区天气网站
|
||||
|
||||
-3
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 34.1413631439209
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
天气
|
||||
台风
|
||||
预警信号
|
||||
广东省气象局网站
|
||||
粤港澳大湾区天气网站
|
||||
|
||||
-2
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 0
|
||||
total analysis time: 51.563368797302246
|
||||
|
||||
author and publish time(not formated): {'source': 'NA', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
广州市的冷空气预警信息: 冷空气持续补充,广东晴燥天气持续。冻感十足的广东,未来几天部分地区最低气温跌破零度。冷空气持续补充影响,我省维持干燥天气早晚寒冷。冷空气持续补充 广东今明气温继续下降。冷空气持续补充影响,广东气温逐日小幅下降。冷空气今日到达广东 未来几天气温逐日下降。前方冷空气们在排队了,这次“冻”真格!新一股冷空气11日起影响广东。7-9日广东大部晴到多云早晚寒凉。周末广东气温继续下降。7-8日中等强度冷空气影响广东。本周末中等强度冷空气入粤。未来两天天气平稳,4-6日两股冷空气到访。广东云量增多气温上升。未来三天广东天气干燥,早晚寒冷。未来几天广东天晴干燥,注意补水。未来几天广东天晴干燥 气温缓升。未来几天广东昼暖夜冷,注意保暖。未来三天广东晴冷继续。
|
||||
more urls:
|
||||
台风
|
||||
冷空气持续补充,广东晴燥天气持续
|
||||
广东维持干燥 早晚寒冷
|
||||
冻感十足的广东,未来几天部分地区最低气温跌破零度
|
||||
冷空气持续补充影响,我省维持干燥天气早晚寒冷
|
||||
7-8日中等强度冷空气影响广东
|
||||
本周末中等强度冷空气入粤
|
||||
未来两天天气平稳,4-6日两股冷空气到访
|
||||
7号台风“查帕卡&rdq...
|
||||
12-15日广东大部天晴 早晚寒凉
|
||||
广东省气象局网站
|
||||
粤港澳大湾区天气网站
|
||||
|
||||
-2
|
||||
************
|
||||
|
||||
llm model: 01-ai/Yi-1.5-34B-Chat-16K
|
||||
hallucination times: 7
|
||||
total analysis time: 1233.0201609134674
|
||||
|
||||
author and publish time(not formated): {}
|
||||
infos(not formated):
|
||||
#广东全省的台风预警: 广东省气象局结束气象灾害(台风)Ⅲ级应急响应
|
||||
more urls:
|
||||
台风
|
||||
冻感十足的广东,未来几天部分地区最低气温跌破零度
|
||||
冷空气持续补充影响,我省维持干燥天气早晚寒冷
|
||||
冷空气持续补充影响,广东气温逐日小幅下降
|
||||
新一股冷空气11日起影响广东
|
||||
未来两天天气平稳,4-6日两股冷空气到访
|
||||
12-15日广东大部天晴 早晚寒凉
|
||||
11日广东将有一次强对流天气过程
|
||||
广东省气象局网站
|
||||
粤港澳大湾区天气网站
|
||||
|
||||
-3
|
||||
************
|
||||
|
||||
raw materials: 3d274c
|
||||
|
||||
llm model: Qwen/Qwen2.5-7B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 0.9184250831604004
|
||||
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
|
||||
0
|
||||
************
|
||||
|
||||
llm model: THUDM/glm-4-9b-chat
|
||||
hallucination times: 1
|
||||
total analysis time: 0.8186428546905518
|
||||
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
|
||||
0
|
||||
************
|
||||
|
||||
llm model: deepseek-ai/DeepSeek-V2.5
|
||||
hallucination times: 1
|
||||
total analysis time: 3.9070470333099365
|
||||
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024年12月17日'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
|
||||
0
|
||||
************
|
||||
|
||||
llm model: Qwen/QwQ-32B-Preview
|
||||
hallucination times: 0
|
||||
total analysis time: 9.19908094406128
|
||||
|
||||
author and publish time(not formated): {'source': '学习强国', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
广州市的冷空气预警信息: 2024年12月17日 17:30 北京
|
||||
深圳市的冷空气预警信息: 2024年12月17日 17:30 北京
|
||||
广东全省的台风预警: 2024年12月17日 17:30 北京
|
||||
more urls:
|
||||
|
||||
-3
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-32B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 0.7160420417785645
|
||||
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024年12月17日'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
|
||||
0
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-32B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 0.7163081169128418
|
||||
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
|
||||
0
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-14B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 0.7161481380462646
|
||||
|
||||
author and publish time(not formated): {'source': '学习强国', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
|
||||
0
|
||||
************
|
||||
|
||||
llm model: Qwen/Qwen2.5-Coder-7B-Instruct
|
||||
hallucination times: 1
|
||||
total analysis time: 0.5040872097015381
|
||||
|
||||
author and publish time(not formated): {'source': '中国天气网', 'publish_date': '2024年12月17日'}
|
||||
infos(not formated):
|
||||
|
||||
more urls:
|
||||
|
||||
0
|
||||
************
|
||||
|
||||
llm model: 01-ai/Yi-1.5-34B-Chat-16K
|
||||
hallucination times: 0
|
||||
total analysis time: 1.7319023609161377
|
||||
|
||||
author and publish time(not formated): {'source': '学习强国', 'publish_date': '2024-12-17'}
|
||||
infos(not formated):
|
||||
#广州市的冷空气预警信息: 无相关信息
|
||||
#深圳市的冷空气预警信息: 无相关信息
|
||||
#广东全省的台风预警: 无相关信息
|
||||
more urls:
|
||||
|
||||
-3
|
||||
************
|
||||
|
@ -1 +0,0 @@
|
||||
{}
|
Before Width: | Height: | Size: 479 KiB |