0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-29 22:04:43 +02:00
construct/include/ircd/gpt/model.h

86 lines
1.7 KiB
C
Raw Normal View History

2021-03-05 02:03:33 +01:00
// Tensor Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2021 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_GPT_MODEL_H
namespace ircd::gpt::model
{
struct norm;
struct attn;
struct ffnn;
struct block;
struct embed;
2021-03-05 02:03:33 +01:00
struct decoder;
constexpr auto align {64};
2021-04-17 20:59:30 +02:00
extern decoder *default_model;
extern string_view default_dataset;
extern std::vector<json::object> default_data;
2021-03-05 02:03:33 +01:00
}
/// Attention aperature
struct ircd::gpt::model::attn
{
float
attn_bias alignas(align) [2304],
attn_weight alignas(align) [768][2304];
float
proj_bias alignas(align) [768],
proj_weight alignas(align) [768][768];
2021-03-05 02:03:33 +01:00
};
/// Feed-forward neural network
struct ircd::gpt::model::ffnn
{
float
fc_bias alignas(align) [3072],
fc_weight alignas(align) [768][3072];
float
proj_bias alignas(align) [768],
proj_weight alignas(align) [3072][768];
2021-03-05 02:03:33 +01:00
};
/// Layer normalization
struct ircd::gpt::model::norm
{
float
bias alignas(align) [768],
weight alignas(align) [768];
2021-03-05 02:03:33 +01:00
};
/// Transformer block
struct ircd::gpt::model::block
{
norm ln1;
model::attn attn;
2021-03-05 02:03:33 +01:00
norm ln2;
model::ffnn ffnn;
};
2021-03-05 02:03:33 +01:00
/// Vocabulary embeddings
struct ircd::gpt::model::embed
2021-03-05 02:03:33 +01:00
{
float
pos alignas(align) [1024][768],
token alignas(align) [65536][768];
};
struct ircd::gpt::model::decoder
{
2021-03-05 02:03:33 +01:00
block layer[12];
2021-03-05 02:03:33 +01:00
norm f;
embed word;
};