minimind Project Introduction

"The Great Way is Simple" 中文 | English This open-source project aims to train MiniMind, an ultra-small language model with about 64M parameters, entirely from scratch with only about RMB 3 in cost and
阅读全文

minimind MiniMind Datasets

MiniMind Datasets 将所有下载的数据集文件放置到当前目录. Place the downloaded dataset file in the current directory.
阅读全文

minimind 项目介绍

"大道至简" 中文 | English 此开源项目旨在完全从 0 开始,仅用 3 块钱成本与 2 小时训练时间,即可训练出规模约为 64M 的超小语言模型 MiniMind。 MiniMind 系列极其轻量,主线最小版本体积约为
阅读全文

go questions

When should you use a struct type? For storing the same type of values For adding an additional type of values in runtime For combining different types in a single type to represent a concept CORRECT
阅读全文

go Struct Exercises

Struct Exercises You'll build a queryable command-line game store. Warm Up Load up the data into the game store. List Now, it's time to add an interface to your program using the bufio.Scanner. So the
阅读全文

go questions

What is a pointer? A variable that contains an hexadecimal value A variable that contains a memory address A value that can contain a memory address of a value CORRECT A value that points to a functio
阅读全文

go Pointer Exercises

Pointer Exercises Basics Warm-up and solidify your knowledge of pointers with the basic exercises. This exercise contains 10+ mini exercises in itself. Swap Using funcs, swap the values through pointe
阅读全文

go questions

Which one below is correct? NOTE There are explanations inside the answers. Even if you know the answer please try to select all of them one by one, so you can read the explanations. You can run a lib
阅读全文