paulwong

          2025年7月11日 #

          支持 A 股、港股!AI 投資炒股「智能體」開源,太絕了。

          它部署了多個專業的 AI 大模型智能體,每一個智能體對應交易公司的一個角色。比如有的智能體是基本面分析師、有的是情緒分析師、有的是技術分析師,還有交易員、風險管理員等等。讓這些角色的AI智能體在一起嘰嘰喳喳討論,最終確定最優的策略。給出買入或者賣出的決策。

          https://mp.weixin.qq.com/s/mu1eF1l5ung-siVcUrEsTQ


          合集

          posted @ 2025-07-11 19:06 paulwong 閱讀(43) | 評論 (0)編輯 收藏

          2025年7月2日 #

          保險核保系統設計

          回答用戶的問題, 如“醉駕能否賠償”時, 首先去條款庫中匹配是否對得上的條款, 如有直接返回.
          上面如果不中, 則走llm回答.
          提取關鍵字, 用一關鍵字列表, 逐個對照, 如有則返回關鍵字, 沒有則返回默認的車險關鍵字
          拿著此關鍵字去知識圖譜搜索出一堆條款
          構造大模型輸入的提示詞, 即角色+條款列表+問題+請回答, 輸入到大模型, 讓大模型回答
          檢查回答是否合規, 如是否有免責字樣或沒有條款列表, 如不規合則直接返回, “請聯系銷售代表”字樣
          如合規, 則提取回答后面的字樣作為答案返回
          @import url(/css/cuteeditor.css);

          posted @ 2025-07-02 00:43 paulwong 閱讀(22) | 評論 (0)編輯 收藏

          2025年6月23日 #

          debian安裝python+替換為清華源

          sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

          sudo vi /etc/apt/sources.list.d/debian.sources

          添加如下內容:
          Types: deb
          URIs: https://mirrors.tuna.tsinghua.edu.cn/debian/
          Suites: bookworm bookworm-updates bookworm-backports
          Components: main contrib non-free non-free-firmware
          Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg

          Types: deb
          URIs: https://mirrors.tuna.tsinghua.edu.cn/debian-security/
          Suites: bookworm-security
          Components: main contrib non-free non-free-firmware
          Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg

          更新所有包
          sudo apt update

          安裝python
          sudo apt-get install python3

          sudo apt-get install python3-pip

          命令支持短寫
          sudo apt install python-is-python3

          安裝miniconda
          wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-py310_25.3.1-1-Linux-x86_64.sh

          bash Miniconda3-py310_25.3.1-1-Linux-x86_64.sh
          conda config --set show_channel_urls yes

          cat > ~/.condarc <<EOF
          channels:
          - defaults
          show_channel_urls: true
          default_channels:
          - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
          - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
          - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
          custom_channels:
          conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
          pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
          EOF

          清除緩存
          conda clean -i

          conda --version
          conda info # 查看渠道是否顯示為清華源




          posted @ 2025-06-23 11:32 paulwong 閱讀(62) | 評論 (0)編輯 收藏

          2025年6月21日 #

          最全 Docker 神器集結,讓你的服務器瞬間起飛!

          https://mp.weixin.qq.com/s/gtyMdmCqBY7LfdBGUBldSA

          posted @ 2025-06-21 23:01 paulwong 閱讀(25) | 評論 (0)編輯 收藏

          2025年6月18日 #

          百煉大模型支持深度思考


          https://help.aliyun.com/zh/model-studio/deep-thinking#1f5ad51894bvi

          posted @ 2025-06-18 23:56 paulwong 閱讀(19) | 評論 (0)編輯 收藏

          2025年6月13日 #

          以非root用戶運行docker

          sudo useradd -m paul # 創建用戶并自動建立家目錄
          sudo passwd paul # 設置用戶密碼(需輸入兩次確認)
          sudo usermod -aG wheel paul # CentOS/RHEL
          [root@dev69 ~]$ groupadd docker
          [root@dev69 ~]$ usermod -aG docker $USER
          [root@dev69 ~]$ reboot
          [paul@dev69 ~]$ docker run hello-world

          posted @ 2025-06-13 16:47 paulwong 閱讀(21) | 評論 (0)編輯 收藏

          2025年5月18日 #

          創建數據集的資源


          AI 數據集生成和模型微調框架 Distilabel 入門指南:基本概念、安裝與快速開始
          https://zhuanlan.zhihu.com/p/25766406373

          使用Llama3和distilabel構建微調數據
          https://huggingface.co/blog/dvilasuero/synthetic-data-with-llama3-distilabel

          posted @ 2025-05-18 08:01 paulwong 閱讀(25) | 評論 (0)編輯 收藏

          2025年4月30日 #

          強化學習資源

          蘑菇書EasyRL
          李宏毅老師的《深度強化學習》是強化學習領域經典的中文視頻之一。李老師幽默風趣的上課風格讓晦澀難懂的強化學習理論變得輕松易懂,他會通過很多有趣的例子來講解強化學習理論。比如老師經常會用玩 Atari 游戲的例子來講解強化學習算法。此外,為了教程的完整性,我們整理了周博磊老師的《強化學習綱要》、李科澆老師的《世界冠軍帶你從零實踐強化學習》以及多個強化學習的經典資料作為補充。對于想入門強化學習又想看中文講解的人來說絕對是非常推薦的。

          本教程也稱為“蘑菇書”,寓意是希望此書能夠為讀者注入活力,讓讀者“吃”下這本蘑菇之后,能夠饒有興致地探索強化學習,像馬里奧那樣愈加強大,繼而在人工智能領域覓得意外的收獲。
          https://github.com/datawhalechina/easy-rl?tab=readme-ov-file


          posted @ 2025-04-30 14:15 paulwong 閱讀(33) | 評論 (0)編輯 收藏

          2025年4月24日 #

          足球數據資源

          足球基礎數據
          https://www.nami.com/details/4nw10i0tela68lq#interface

          足球統計數據
          https://www.nami.com/details/7xwk3iqtv3s9rk6#interface

          足球統計數據
          https://www.nami.com/details/7xwk3iqtv3s9rk6#interface

          足球高階數據
          https://www.nami.com/details/g5wvvikteeixwzd#interface

          指數數據
          https://www.nami.com/details/o6w9kipt4yi78k3#interface

          足球資料庫數據
          https://www.nami.com/details/7j8gxi0to7inrql#interface

          Marz火星數據(體育)
          https://www.kancloud.cn/marz/marz-sport/3098904



          posted @ 2025-04-24 14:56 paulwong 閱讀(75) | 評論 (0)編輯 收藏

          2025年4月19日 #

          ai預測足球資源

          基于機器學習的2022世界杯預測實戰
          https://www.showmeai.tech/article-detail/400

          AI 競彩賽事 預測工具
          https://www.mysports.ai/cn

          posted @ 2025-04-19 01:07 paulwong 閱讀(40) | 評論 (0)編輯 收藏

          僅列出標題  下一頁
          主站蜘蛛池模板: 通州区| 潼关县| 鄂尔多斯市| 扎赉特旗| 齐河县| 桑植县| 菏泽市| 南部县| 武平县| 遵化市| 颍上县| 腾冲县| 天气| 巢湖市| 兴安县| 渭源县| 刚察县| 正蓝旗| 岳普湖县| 抚松县| 亳州市| 林西县| 达日县| 元朗区| 甘泉县| 岳阳市| 临澧县| 凉山| 独山县| 平南县| 昌黎县| 安阳市| 柏乡县| 永川市| 柘荣县| 正宁县| 平定县| 池州市| 宜章县| 博罗县| 东乡族自治县|