以下笔记为AI生成+我部分修改,详见workflow
下面是chatgpt给我的mermaid代码生成的flowchart!
把整段的字幕放进去加上制卡prompt会出大问题,因为它一次处理不了那么多token,所以下面这段是用的制卡示范的例子加上 概括后的字幕 , 也就是对概括后的笔记进行制卡。
下面这套抽认卡内容上来说有许多地方不太可取,但是形式上让我看到了很多可能性!!!!!
问题 | 答案 |
---|---|
这门课程是关于什么的? | 编译器和编程语言实现。 |
有哪两种主要的实现编程语言的方法? | 编译器和解释器。 |
这门课程主要关注哪种方法? | 编译器。 |
第一节课中,Aiken简要解释了什么? | 解释器。 |
解释器如何处理程序? | 将程序和输入数据作为输入,直接产生输出,不需要事先处理程序。 |
解释器是在线的还是离线的? | 在线的。 |
使用解释器开发程序更快还是编译器更快? | 解释器更快。 |
解释器处理的程序比编译器产生的程序慢还是快? | 比编译器产生的程序慢。 |
编译器如何处理程序? | 将程序作为输入,产生一个可执行程序作为输出,可以在不重新编译的情况下多次运行该程序。 |
编译器是在线的还是离线的? | 离线的。 |
什么是速度编码? | 一种早期的解释器,由John Backus开发。 |
速度编码开发程序更快还是手写更快? | 开发程序更快。 |
速度编码处理的程序比手写的程序慢还是快? | 比手写的程序慢。 |
什么是Fortran? | 成功的高级语言,对计算机科学产生了重大影响。 |
编程语言需要什么? | 理论和工程技能的良好掌握。 |
编译器和解释器有什么优缺点? | 优缺点不同,都在编程语言的发展中发挥了重要作用。 |
What is the difference between an interpreter and a compiler?
What is an advantage of using an interpreter?
What is a disadvantage of using an interpreter?
What was the Speed Coding project, and who developed it?
What was the Formula Translation project, and how did it improve upon Speed Coding?
缺陷:
字幕不准确,比如Fortran 字幕里面搞成了 fortune
token限制,可能只概括了一部分
思路可以参考 简悦 AI 的那个网页概括,它是先拆分,再概括整合
简悦插件 · 基于 OpenAI 的语境理解 AI 系统 - 王磊-Kenshin的文章 - 知乎 https://zhuanlan.zhihu.com/p/606650433
slide导入scispace
• Compiling is almost this simple, but there are many pitfalls • Example: How to handle erroneous programs? • Language design has big impact on compiler -Determines what is easy and hard to compile -Course theme: many trade-offs in language design
• Once sentence structure is understood, we can try to understand “meaning” -But meaning is too hard for compilers • IRs are useful because lower levels expose features hidden by higher levels – registers – memory layout– raw pointers etc.
• But lower levels obscure high-level meaning – Classes– Higher order functions– Even loops… Lexical analysis not trivial
效果不太好,这玩意还是适合读论文
slide用edge dev版打开,并提问
谷歌插件:YouTube Summary with ChatGPT
那个点进去直接概括的功能现在好像失效了,但是它那个提取字幕的还是很好用的
文本的长度问题之后需要解决
markdown笔记
"Can you break down the main points or arguments in the text into distinct sections or bullet points? Consider using headings (denoted by `#`) for each section and bullet points (denoted by `-`) for each argument or sub-point. Additionally, are there any key quotes or phrases that you want to highlight or emphasize? You can use bold (denoted by `**`) or italic (denoted by `*`) formatting to make them stand out."
flashcard参考了叶哥的卡片笔记(知乎)
给ChatGPT施咒,让它为你制作Anki卡片——Prompt工程案例 - 叶峻峣的文章 - 知乎 https://zhuanlan.zhihu.com/p/609413004
上面那个卡片的prompt如下
按markdown表格形式整理为抽认卡,下面是一个例子:
文本:
衰老细胞的特征是细胞内的水分减少,结果使细胞萎缩,体积变小,细胞代谢的速率减慢。细胞内多种酶的活性降低。细胞核的体积增大,核膜内折,染色质收缩、染色加深。细胞膜通透性改变,使物质运输功能降低。
一套卡片:
| 问题 | 答案 |
|---|---|
|衰老细胞的体积会怎么变化?|变小。|
|衰老细胞的体积变化的具体表现是什么?|细胞萎缩。|
|衰老细胞的体积变化原因是什么?|细胞内的水分减少。|
|衰老细胞内的水分变化对细胞代谢的影响是什么?|细胞代谢的速率减慢。 |
|衰老细胞内的酶活性如何变化?|活性降低。|
|衰老细胞的细胞核体积如何变化?|体积变大。|
|衰老细胞的细胞核的核膜如何变化?|核膜内折。 |
|衰老细胞的细胞核的染色质如何变化?|染色质收缩。|
|衰老细胞的细胞核的染色质变化对细胞核形态的影响是?|染色加深。|
|衰老细胞的物质运输功能如何变化?|物质运输功能降低。|
|衰老细胞的物质运输功能为何变化?|细胞膜通透性改变。|下面是你要整理的内容:
Introduction
This is a course on compilers and the implementation of programming languages, presented by Alex Aiken, a professor at Stanford University. There are two major approaches to implementing programming languages: compilers and interpreters. This course mainly focuses on compilers, but in the first lecture, Aiken briefly explains interpreters.Interpreters
An interpreter takes a program and input data as its input and produces the output directly without processing the program beforehand. The interpreter is online, meaning that it is part of running the program. It is faster to develop programs using an interpreter, but interpreted programs are usually slower than compiled or handwritten ones.Compilers
A compiler takes a program as its input and produces an executable program as its output, which can be run on different inputs to produce the output. The compiler is offline, meaning that it preprocesses the program first, then produces an executable that can be run multiple times without recompilation.History
The 1950s saw the development of machines such as the IBM 704, which had high hardware costs. As a result, software costs became the dominant expense, leading to efforts to improve software productivity. One such effort was speed coding, an early example of an interpreter developed by John Backus. It was faster to develop programs with speed coding, but they were slower than handwritten ones. Backus developed a new project, the formula translation project or Fortran, which was a successful high-level language with a significant impact on computer science.Conclusion
Programming languages require a good grasp of theory and engineering skills. Compilers and interpreters have different advantages and disadvantages, and both have played important roles in the development of programming languages.
整理成mermaid流程图:
课程网站
B站 【斯坦福大学】CS143 编译器(完结·中英字幕·机翻·人工校对中)
https://csdiy.wiki/%E7%BC%96%E8%AF%91%E5%8E%9F%E7%90%86/CS143/
油管视频
经验贴
持续探索更多的学习模态和方法… (powered with artificial intelligence)
如下:
你好,这是Bing。我可以帮你用OpenAI的API来做文本摘要。😊
根据1和2,你可以使用OpenAI Python库34来调用GPT-3模型,它可以根据文本的内容生成概括的总结,并添加一个“tl;dr:”(太长不看)的标签在最后。
为了处理很长的文本,你可以先把它分成多个段落,然后对每个段落调用API,最后把所有的总结拼接起来。这样就可以避免token的限制。
我给你一个Python代码的示例:
import openai
openai.api_key = "sk-xxxxxxxxxxxxxxxxxxxxxx" # 你自己的API密钥# 读取很长的文本文件
with open("long_text.txt", "r", encoding="utf-8") as f:text = f.read()# 把文本分成多个段落,每个段落不超过2048个字符
paragraphs = []
start = 0
end = 2048
while start < len(text):paragraphs.append(text[start:end])start = endend += 2048# 对每个段落调用API,生成总结,并添加tl;dr:标签
summaries = []
for paragraph in paragraphs:response = openai.Completion.create(engine="davinci",prompt=paragraph + "\ntl;dr:",max_tokens=64,temperature=0.3,stop=["\n"])summary = response["choices"][0]["text"]summaries.append(summary)# 把所有的总结拼接起来,生成markdown格式的输出
output = ""
for i, summary in enumerate(summaries):output += f"- 段落{i+1}:{summary}\n"
print(output)