摘要: Android Studio是当前开发App和部署神经网络的常用平台。作为谷歌推出的一个Android集成开发工具,基于IntelliJ IDEA. 类似 Eclipse ADT,Android Studio 提供了集成的 Android 开发工具用于开发和调试。Android Studio能够在L 阅读全文
posted @ 2024-04-10 21:03 江左子固 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Hdlbits的习题文章前前后后做了几遍,每一次都有不一样的感受,题目按照顺序正在整理,截止Circuis->Sequential Logic->Counters这部分之前,练习的文章见我的博客的文章部分,从Counters开始,我将练习的文章迁移至我的博客的随笔部分。 完成了代码的练习,再过一段时 阅读全文
posted @ 2024-04-10 14:43 江左子固 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Create a set of counters suitable for use as a 12-hour clock (with am/pm indicator). Your counters are clocked by a fast-running clk, with a pulse on 阅读全文
posted @ 2024-04-10 14:37 江左子固 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Build a 4-digit BCD (binary-coded decimal) counter. Each decimal digit is encoded using 4 bits: q[3:0] is the ones digit, q[7:4] is the tens digit, et 阅读全文
posted @ 2024-04-10 14:29 江左子固 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Build a 4-digit BCD (binary-coded decimal) counter. Each decimal digit is encoded using 4 bits: q[3:0] is the ones digit, q[7:4] is the tens digit, et 阅读全文
posted @ 2024-04-10 14:29 江左子固 阅读(10) 评论(0) 推荐(0) 编辑
摘要: From a 1000 Hz clock, derive a 1 Hz signal, called OneHertz, that could be used to drive an Enable signal for a set of hour/minute/second counters to 阅读全文
posted @ 2024-04-10 14:05 江左子固 阅读(48) 评论(0) 推荐(0) 编辑
摘要: Design a 1-12 counter with the following inputs and outputs: Reset Synchronous active-high reset that forces the counter to 1 Enable Set high for the 阅读全文
posted @ 2024-04-10 02:19 江左子固 阅读(19) 评论(0) 推荐(0) 编辑
摘要: Build a decade counter that counts from 0 through 9, inclusive, with a period of 10. The reset input is synchronous, and should reset the counter to 0 阅读全文
posted @ 2024-04-10 02:13 江左子固 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Make a decade counter that counts 1 through 10, inclusive. The reset input is synchronous, and should reset the counter to 1. 题目网站 1 module top_module 阅读全文
posted @ 2024-04-10 02:04 江左子固 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Build a decade counter that counts from 0 through 9, inclusive, with a period of 10. The reset input is synchronous, and should reset the counter to 0 阅读全文
posted @ 2024-04-10 01:59 江左子固 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Build a 4-bit binary counter that counts from 0 through 15, inclusive, with a period of 16. The reset input is synchronous, and should reset the count 阅读全文
posted @ 2024-04-10 01:53 江左子固 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 案例二:对文本进行分类,类别有财经、房产、股票、教育、科技、社会、时政、体育、游戏、娱乐 github代码链接点击此文本分类 原作者给出了好几种模型 此次仅针对BiLSTM模型分析。 核心代码如下: class Model(nn.Module): def __init__(self, config) 阅读全文
posted @ 2024-04-10 01:33 江左子固 阅读(201) 评论(0) 推荐(0) 编辑