mjbommar commited on
Commit
d9ecdaf
1 Parent(s): 9edbf84

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -17
README.md CHANGED
@@ -46,24 +46,19 @@ emits copies of Linux 1.0 source code. For example, using the HuggingFace hub c
46
 
47
  ```python
48
  >>> from transformers import pipeline
49
- >>> p = pipeline('text-generation', 'mjbommar/linux-as-a-model-5M')
50
  >>> print(p('', max_new_tokens=256, do_sample=True, temperature=0.2)[0]['generated_text'])
51
- linux/drivers/net/3c503.c /* 3c503.c: A shared-memory NS8390 ethernet driver for linux. */
52
- /*
53
- Written 1992,1993 by Donald Becker.
54
-
55
- Copyright 1993 United States Government as represented by the
56
- Director, National Security Agency. This software may be used and
57
- distributed according to the terms of the GNU Public License,
58
- incorporated herein by reference.
59
-
60
- This driver should work with the 3c503 and 3c503/16. It should be used
61
- in shared memory mode for best performance, although it may also work
62
- in programmed-I/O mode.
63
-
64
- The Author may be reached as [email protected] or
65
- C/O Supercomputing Research Ctr., 17100 Science Dr., Bowie MD 20715
66
- */
67
 
68
  ```
69
 
 
46
 
47
  ```python
48
  >>> from transformers import pipeline
49
+ >>> p = pipeline('text-generation', 'mjbommar/linux-as-a-model-32M')
50
  >>> print(p('', max_new_tokens=256, do_sample=True, temperature=0.2)[0]['generated_text'])
51
+ linux/drivers/FPU-emu/reg_u_div.S.file "reg_u_div.S"
52
+ /*---------------------------------------------------------------------------+
53
+ | reg_u_div.S |
54
+ | |
55
+ | Core division routines |
56
+ | |
57
+ | Copyright (C) 1992,1993 |
58
+ | W. Metzenthen, 22 Parker St, Ormond, Vic 3163, |
59
+ | Australia. E-mail [email protected] |
60
+ | |
61
+ |
 
 
 
 
 
62
 
63
  ```
64