鱼C论坛

 找回密码
 立即注册
查看: 3174|回复: 5

Python求解

[复制链接]
发表于 2021-3-14 18:41:24 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Random Story Generation: the context to next words dictionary

-/1
Here is an example of a story list:

['And', 'the', 'fan,', 'and', 'the', 'cup,', 'And', 'the', 'ship,', 'and', 'the', 'fish.']

You have worked out that it makes sense to represent the context information as a dictionary where the keys are tuples of strings and the values are lists of strings.

Below, we have given you the first key; write the list of values for it. Fill in the dictionary with all the 2-word contexts and their values.

Reminder: Python is case sensitive, so 'And' and 'and' are not equal.

context_to_next_words = {('And', 'the'): ['fan'],...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-3-14 18:54:06 | 显示全部楼层
你的问题是什么
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-14 19:00:00 From FishC Mobile | 显示全部楼层
柿子饼同学 发表于 2021-3-14 18:54
你的问题是什么

考较你外语达到几级
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-14 19:18:23 | 显示全部楼层
wp231957 发表于 2021-3-14 19:00
考较你外语达到几级

emmm...大概意思是这样:
随机故事生成:包含了几个单词和TA萌的上下文
--/1
这里咱举个栗子:
['And', 'the', 'fan,', 'and', 'the', 'cup,', 'And', 'the', 'ship,', 'and', 'the', 'fish.']
然后这时你就会惊奇得发现原来这个字典是有规律滴
其中键就是包含字符串的元组,值就是包含字符串的列表
主线任务1:写出相对应的字典,把所有单词和对应的上下文都写进去
不过要注意,py是大小写敏感的,所以‘and’和'And'是不一样的
以下是答案:
context_to_next_words = {('And','the'):['fan']......
==============================分割线===============================
我真是心态爆炸
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-14 23:47:04 | 显示全部楼层
柿子饼同学 发表于 2021-3-14 19:18
emmm...大概意思是这样:
随机故事生成:包含了几个单词和TA萌的上下文
--/1

就是把 and the 放入元组

元组作为 键 插入到 字典 里

fan cup 啥的作为 键 对应的 值 插入到 字典 里

总感觉他这玩意是一个学校布置的作业

所以只讲解思路,楼主能够理解多少看自己,不提供源代码,学这门课得自己去敲代码

靠别人敲代码永远学不会
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-15 09:46:52 | 显示全部楼层
抱歉,英语不好,看不懂你的问题,能麻烦帮忙解释一下,你要求解什么吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 08:02

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表