summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/gpt-2-simple/default.nix
blob: 3cbf109911a7ec0186c056795be53f57119f88e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  regex,
  requests,
  setuptools,
  tqdm,
  numpy,
  toposort,
  tensorflow,
}:

buildPythonPackage rec {
  pname = "gpt-2-simple";
  version = "0.8.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "minimaxir";
    repo = "gpt-2-simple";
    rev = "v${version}";
    hash = "sha256-WwD4sDcc28zXEOISJsq8e+rgaNrrgIy79Wa4J3E7Ovc=";
  };

  build-system = [ setuptools ];

  propagatedBuildInputs = [
    regex
    requests
    tqdm
    numpy
    toposort
    tensorflow
  ];

  doCheck = false; # no tests in upstream

  meta = {
    description = "Easily retrain OpenAI's GPT-2 text-generating model on new texts";
    homepage = "https://github.com/minimaxir/gpt-2-simple";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}