ebooks

Fediverse ebooks bot using neural networks

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
from argparse import ArgumentParser

import torch
from mastodon import Mastodon

from dataset import Dataset
from model import Model
from predict import predict


parser = ArgumentParser()
parser.add_argument('-t', '--token', help='Mastodon application access token')
parser.add_argument('-i', '--input', default='data',
                    help='training data input file')
parser.add_argument('-e', '--text', default='i am',
                    help='initial text for prediction')
parser.add_argument('-d', '--device', default='cpu',
                    help='device to run the model with')
parser.add_argument('-m', '--model', default='model.pt',
                    help='path to load saved model')
args = parser.parse_args()


mastodon = Mastodon(
    access_token=args.token,
    api_base_url='https://social.exozy.me/'
)


dataset = Dataset(args.input, 32)
device = torch.device(args.device)
model = torch.load(args.model)


text = predict(device, model, args.text)
print(text)
# mastodon.status_post(text)