上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 大模型受众广泛原因 成为发展通用人工智能的重要途径 过去使用专用模型,一个模型一个问题;现在提倡通用模型,即一个模型应对多种任务,多种模态。 书生浦语大模型 从模型到应用 开放体系 数据: 多模态融合(领域广泛), 精细化处理(数据经过清理和筛选),价值观对齐 预训练:高科扩展,极致的性能优化,兼容 阅读全文
posted @ 2024-01-13 16:46 viewoverlook 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Lecture 5 命令行环境 课后练习 任务控制 我们可以使用类似 ps aux | grep 这样的命令来获取任务的 pid ,然后您可以基于pid 来结束这些进程。但我们其实有更好的方法来做这件事。在终端中执行 sleep 10000 这个任务。然后用 Ctrl-Z 将其切换到后台并使用 bg 阅读全文
posted @ 2024-01-03 20:05 viewoverlook 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Lecture 4 数据整理 练习 学习一下这篇简短的 交互式正则表达式教程. 统计words文件 (/usr/share/dict/words) 中包含至少三个a 且不以's 结尾的单词个数。这些单词中,出现频率前三的末尾两个字母是什么? sed的 y命令,或者 tr 程序也许可以帮你解决大小写的 阅读全文
posted @ 2024-01-03 20:04 viewoverlook 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Lecture 3 vim 完成 vimtutor。 备注: 它在一个 80x24(80 列,24 行) 终端窗口看起来最好。 直接执行 vimtutor 下载我们的vimrc,然后把它保存到 ~/.vimrc。 通读这个注释详细的文件 (用 Vim!), 然后观察 Vim 在这个新的设置下看起来和 阅读全文
posted @ 2024-01-03 20:04 viewoverlook 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Lecture 2 Shell Tools and Scripting homework: 1.Read man ls and write an ls command that lists files in the following manner 读取 man ls 并编写按以下方式列出文件的 l 阅读全文
posted @ 2024-01-03 20:04 viewoverlook 阅读(9) 评论(0) 推荐(0) 编辑
摘要: Streams Sequence Operations Map, filter, and reduce express sequence manipulation using compact expressions Example: Sum all primes in an interval fro 阅读全文
posted @ 2024-01-03 20:03 viewoverlook 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Scheme scheme fundamentals scheme programs consist of expressions, which can be: primitive expression: 2, 3.3, true, +, quotient …… combination: (quti 阅读全文
posted @ 2024-01-03 20:03 viewoverlook 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Higher Order Funcrtions 让我们做一个功能组合 >>> def combine_funcs(op): >>> """combine funcs(OP)(f,g)(x)=OP(f(x),g(x))""" >>> def combine(f,g): >>> def val(x): 阅读全文
posted @ 2024-01-03 20:01 viewoverlook 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Debugging Assert def fact(x): if x==0: return 1 else: return x*fact(x-1) def half_fact(x) return fact(x/2) 当按照以下调用时half_fact(5)时传入fact中的是一个非整数,不会出发ret 阅读全文
posted @ 2024-01-03 20:00 viewoverlook 阅读(6) 评论(0) 推荐(0) 编辑
摘要: Control Print and None 区分python中两种类型的函数 纯函数(pure functions): 函数中有一些输入(参数)并返回一些输出(调用返回结果) abs(-2) 可将内置函数abs描述为接受输入并产生输出的小型机器 abs在调用时除了返回值外不会造成其他任何影响,而且 阅读全文
posted @ 2024-01-03 20:00 viewoverlook 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页