InternLM学习笔记

入门岛

1. Linux基础知识

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

2. Python 基础知识

from collections import Counter


text = """
Got this panda plush toy for my daughter's birthday,
who loves it and takes it everywhere. It's soft and
super cute, and its face has a friendly look. It's
a bit small for what I paid though. I think there
might be other options that are bigger for the
same price. It arrived a day earlier than expected,
so I got to play with it myself before I gave it
to her.
"""


def wordcount(text: str):
    text = text.lower().replace('.', '').replace(',', '').replace('\n', ' ')
    words = [word[:-2] if word.endswith("'s") else word for word in text.split(' ') if word]
    return dict(Counter(words))


if __name__ == '__main__':
    res = wordcount(text)
    print(res)

debug

基础岛

1. 书生大模型全链路开源体系

书生浦语大模型(InternLM)目前已开源InternLM、InternLM2、InternLM2.5三代大模型,包含1.8B、7B、20B等多种参数版本。其中InternLM2.5具有如下优势:
在这里插入图片描述
同时书生浦语大模型也开源了大模型全链路生态:
在这里插入图片描述
开源数据处理工具箱:
在这里插入图片描述
高效微调框架XTuner
在这里插入图片描述
加速推理框架LMDeploy
在这里插入图片描述轻量级智能体框架Lagent
在这里插入图片描述
智能体MindSearch(详细规划、并且可视化每一步的思考思路,解决可解释性?)
在这里插入图片描述
企业级知识库构建工具
在这里插入图片描述

2. 8G 显存玩转书生大模型 Demo

部署 InternLM2-Chat-1.8B 模型
在这里插入图片描述
LMDeploy 部署 InternVL2-2B 模型
在这里插入图片描述

3. 浦语提示词工程实践

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值