Skip to content

Commit b09fc01

Browse files
committed
GPT-2 moved into its own repository
1 parent 3b8d568 commit b09fc01

17 files changed

+11
-1330
lines changed

Gradient-Samples.sln

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.28407.52
@@ -46,7 +46,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CharRNN", "CharRNN", "{E295
4646
v1\CharRNN\README.md = v1\CharRNN\README.md
4747
EndProjectSection
4848
EndProject
49-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GPT-2", "v1\GPT-2\GPT-2.csproj", "{DA72AA1C-51EB-4603-AADC-0A1E5CF64626}"
49+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GPT-2", "GPT-2", "{4CCA630C-6267-4441-8205-BC2E1DE4DB46}"
50+
ProjectSection(SolutionItems) = preProject
51+
v1\GPT-2\README.md = v1\GPT-2\README.md
52+
EndProjectSection
5053
EndProject
5154
Global
5255
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -98,10 +101,6 @@ Global
98101
{E95B5979-C054-4390-BB32-ABBF0AD1B6C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
99102
{E95B5979-C054-4390-BB32-ABBF0AD1B6C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
100103
{E95B5979-C054-4390-BB32-ABBF0AD1B6C7}.Release|Any CPU.Build.0 = Release|Any CPU
101-
{DA72AA1C-51EB-4603-AADC-0A1E5CF64626}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
102-
{DA72AA1C-51EB-4603-AADC-0A1E5CF64626}.Debug|Any CPU.Build.0 = Debug|Any CPU
103-
{DA72AA1C-51EB-4603-AADC-0A1E5CF64626}.Release|Any CPU.ActiveCfg = Release|Any CPU
104-
{DA72AA1C-51EB-4603-AADC-0A1E5CF64626}.Release|Any CPU.Build.0 = Release|Any CPU
105104
EndGlobalSection
106105
GlobalSection(SolutionProperties) = preSolution
107106
HideSolutionNode = FALSE
@@ -117,7 +116,7 @@ Global
117116
{5BEAC3CE-216E-45DA-8170-2AEC87435FE9} = {8F2ED2C6-8C21-4138-8925-BCEB84D4CEE8}
118117
{E95B5979-C054-4390-BB32-ABBF0AD1B6C7} = {8F2ED2C6-8C21-4138-8925-BCEB84D4CEE8}
119118
{E2954B95-8B1D-4188-BDE7-D3553DCCA7AA} = {8F2ED2C6-8C21-4138-8925-BCEB84D4CEE8}
120-
{DA72AA1C-51EB-4603-AADC-0A1E5CF64626} = {8F2ED2C6-8C21-4138-8925-BCEB84D4CEE8}
119+
{4CCA630C-6267-4441-8205-BC2E1DE4DB46} = {8F2ED2C6-8C21-4138-8925-BCEB84D4CEE8}
121120
EndGlobalSection
122121
GlobalSection(ExtensibilityGlobals) = postSolution
123122
SolutionGuid = {052B6168-274F-43B0-B3F0-24F5C5D4BE58}

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ The old version is [still available in 1.15 branch](https://github.com/losttech/
1010
given a rectangular text block from a code file. Has a cross-platform UI demo.
1111
Get pretrained model here: https://github.com/losttech/Gradient-Samples/releases/tag/csharp-or-not%2Fv1
1212

13-
**GPT-2** ([v1](v1)) - latest published English [language model from OpenAI](https://blog.openai.com/better-language-models/)
14-
(smaller version, pretrained). Added fine-tuning from https://github.com/nshepperd/gpt-2.
15-
1613
**FashionMnistClassification** - standard TensorFlow example, that classifies small pictures of clothes.
1714

1815
**ResNetBlock** - same as FashionMnistClassification above, but shows `Model` subclassing
@@ -28,7 +25,11 @@ All models **can be modified and trained**.
2825

2926
**LICENSE** - MIT for all sample code, individual samples might have different licenses (clearing that up, see individual sample folders).
3027

31-
# See Also
28+
## Larger samples (in separate repositories)
29+
30+
[**GPT-2**](https://github.com/losttech/GPT) - latest published English
31+
[language model from OpenAI](https://blog.openai.com/better-language-models/)
32+
with fine-tuning from https://github.com/nshepperd/gpt-2.
3233

3334
[**SIREN**](https://github.com/losttech/Siren) - neural representation
3435
for any kind of signal (image, video, audio).

v1/GPT-2/Algo.cs

-19
This file was deleted.

v1/GPT-2/GPT-2.csproj

-31
This file was deleted.

v1/GPT-2/GPT2Program.cs

-23
This file was deleted.

v1/GPT-2/Gpt2Checkpoints.cs

-33
This file was deleted.

v1/GPT-2/Gpt2Dataset.cs

-47
This file was deleted.

0 commit comments

Comments
 (0)