文章主题:AI, Claude 3, 神经网络架构动画, 大模型

666AI工具大全,助力做AI时代先行者!

AI在用 | 一个超级提示,用Claude 3生成神经网络架构动画

机器之能报道

编辑:珠颈斑鸠

大模型和AIGC等人工智能技术代表的新浪潮正在无声地改变着我们的生活和职业生涯,然而,大多数人仍然不知道如何利用这些新技术。

为帮助大家更好地理解和掌握人工智能技术,我们特别推出了「AI在用」专栏。该专栏以直观、有趣且简洁的方式呈现人工智能的使用案例,旨在详细介绍AI的实际应用方法,同时启发大家深入思考这一领域的前景与可能性。

我们也欢迎读者投稿亲自实践的创新型用例。

由于 Claude 3 引入了对 Manim 动画引擎的支持,广大网友正在尝试为任何抽象概念创建动画,昨天的案例曾在互联网上引起轰动。今天,我们再分享一个 X 用户利用 Claude 3 和 Manim 创建神经网络架构动画的用例。

案例地址:https://twitter.com/minchoi/status/1770105075043647495

重申一下,完整实现动画功能,用户需要安装 Manim 库并建立适合运行的本地环境或 Google Colaboratory 平台。

进入 Claude.ai ,在对话页面输入提示( Prompt )。这位作者输入了一个超级提示:

来自@minchoi

翻译下来,大意是使用 Manim 创作一个解释神经网络架构概念的动画。为了确保动画位于视口范围,作者提出了 11 条细致要求。视口是指动画在屏幕上显示的区域或窗口,它有着固定的大小和宽高比。

我们简单解释其中几条的意思。

第 1 条是指,使用 Manim 的 VGroup 功能将相关元素(比如文本、图像)组合在一起,作为一个单元进行管理。也就是说,制作神经网络的动画时,可以将每一层神经元节点组成一个 VGroup,无论是移动、缩放,都可以整体处理,非常方便。

第 2 条是指,当创建的对象(如图形、文字等)太大或太小时,它们可能无法完全显示在视口内,又或者占据了过多的屏幕空间。这个时候,就可以使用” scale “方法,对对象大小进行缩放调整。

在动画创作中,常常需要运用叙述性文字来阐述情节背景或解释动画步骤。如果将这些长篇累牍的文字一次性呈现在屏幕上,可能会影响动画的观感。因此,明智的做法是将这些叙述性文字拆分成若干小段,让每一段与动画中的特定步骤或场景相对应。这样的处理方式不仅可以降低对动画的打扰,同时也便于观众阅读理解。此外,将此类文字置于视口底部也是一个实用的策略,既不会遮挡动画内容,也能保证文字的清晰可见。

第11条指出,Manim提供了多种通用的动画效果供用户在不同场景下灵活选择。例如,Write功能能够模拟文字在屏幕上的书写过程或逐渐显现;而Create选项则适用于展示诸如圆形或方形等形状在画面中逐步成型的过程。除此之外,还包括大家耳熟能详的FadeIn和FadeOut效果。

这是运行 Claude 3 生成代码后的结果:

来自@minchoi

如果对提示中任何细节问题有疑问,都可以要求 Claude 3 做解释。根据我们的使用体验,Claude 3 很擅长深入浅出地讲解清楚。创建成功后,Claude 3 还会提示是否作出其他修改(比如增加网络的层数等), 你可以根据它的引导逐步完成动画效果的改善。

值得庆祝的是,提供案例的用户不仅公之于众了多次迭代后的优质提示模板,这些模板能够生成各种概念的动画演示(详见下文)。同时,该用户也指出,尽管这个超级模板尚不完美,用户或许仍需与Claude 3进行交流以进行微调。

使用Manim,制作一个动画来解释[所需概念]的概念。同时,确保动画在视窗内播放,具体遵循以下准则:

1. Use VGroup to group related objects together and manage them as a single unit.

2. Scale objects and groups using the scale method to ensure they fit within the viewport.

3. Position objects and groups using methods like next_to, shift, and to_edge to control their placement relative to other objects or the edges of the viewport.

4. Use appropriate buffering values when positioning objects to maintain sufficient spacing and avoid overlapping.

5. For text labels associated with specific objects or groups, position them relative to the corresponding object/group using next_to with the desired direction (e.g., UP, DOWN, LEFT, RIGHT). Ensure that the labels are not overlapping the objects by adjusting the buffer values.

6. Ensure that text labels have a contrasting color and sufficient font size to be clearly visible against the background and other objects.

7. Break down the narration text into smaller segments that correspond to each animation step. Create separate Paragraph objects for each narration segment with a smaller font size and a specified width to ensure the text stays within the viewport. Position each text object at the bottom of the viewport using to_edge(DOWN, buff=0.5).

8. Use arrange to layout multiple objects or groups horizontally or vertically with consistent spacing.

9. Adjust the camera settings, such as the frame_width and frame_height, to control the viewport size and aspect ratio if needed.

10. Test your animation at different resolutions and aspect ratios to ensure that objects remain within the viewport and are properly positioned across different devices.

11. Add a title for the concept using the Text class with a larger font size and different color. Position the title at the top of the viewport using to_edge(UP, buff=0.5).

12. Use the following animations for different purposes:

* `Write`: Animates the writing or appearance of text on the screen.

* `Create`: Animates the creation of a mobject on the screen.

* `FadeIn`: Animates the gradual appearance of a mobject on the screen.

* `FadeOut`: Animates the gradual disappearance of a mobject from the screen.

Think step by step and give me the full code without any errors

不过,人无完人,该功能也并非完美无缺。

一些网友让 Claude 3 生成高阶的数学概念动画,结果发现这些动画对于对用户的理解基本上没什么帮助。要求生成的动画越复杂,越有可能搞砸。

X 网友 @_dhruvvvvv_ 尝试让 Claude 3 生成球体定理、黎曼级数定理和距离公式动画,效果都不理想。

球体定理动画,来自@_dhruvvvvv_

黎曼级数定理动画,来自@_dhruvvvvv_

距离公式的动画,来自@_dhruvvvvv_

撇开动画演示,在文字解释上,Claude 3 仍然善于深入浅出。这是我们让 Claude 3 解释黎曼级数定理的效果。我们确实看懂了,你呢?

如果以后对任何抽象概念有疑问,也不妨请这位“老师”详细解释一下。

我们的新专栏会带来更多不同大模型的案例演示,欢迎大家留言评论并给出改进建议。

© THE END

转载请联系本公众号获得授权

投稿或寻求报道:content@jiqizhixin.com返回搜狐,查看更多

责任编辑:

AI时代,拥有个人微信机器人AI助手!AI时代不落人后!

免费ChatGPT问答,办公、写作、生活好得力助手!

搜索微信号aigc666aigc999或上边扫码,即可拥有个人AI助手!

Leave a Reply

Your email address will not be published. Required fields are marked *