suriyagunasekar commited on
Commit
9691b01
1 Parent(s): ebfa940

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md CHANGED
@@ -1,3 +1,89 @@
1
  ---
2
  license: other
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
+ language:
4
+ - en
5
+ pipeline_tag: text-generation
6
+ tags:
7
+ - code
8
  ---
9
+ ## Model Summary
10
+
11
+ The phi-1 family encompasses three distinct models: phi-1, phi-1-base, and phi-1-small, each specialized for basic Python coding. Their training involved a variety of data sources, including subsets of Python codes from [The Stack v1.2](https://huggingface.co/datasets/bigcode/the-stack), Q&A content from [StackOverflow](https://archive.org/download/stackexchange), competition code from [code_contests](https://github.com/deepmind/code_contests), and synthetic Python textbooks and exercises generated by [gpt-3.5-turbo-0301](https://platform.openai.com/docs/models/gpt-3-5). Even though the model and the datasets are relatively small compared to contemporary Large Language Models (LLMs), both phi-1 and phi-1-small have demonstrated an impressive accuracy rate exceeding 45% on the simple Python coding benchmark, HumanEval.
12
+
13
+ ## Intended Uses
14
+ Given the nature of the training data, the phi-1 and phi-1-small models are best suited for prompts using the code format:
15
+
16
+ #### code format:
17
+ ```python
18
+ def print_prime(n):
19
+ """
20
+ Print all primes between 1 and n
21
+ """
22
+ for num in range(2, n+1):
23
+ for i in range(2, num):
24
+ if num % i == 0:
25
+ break
26
+ else:
27
+ print(num)
28
+ ```
29
+ where the model generates the code after the comments. (Note: This is a legitimate and correct use of the else statement in Python loops.)
30
+
31
+ **Notes**
32
+ * The phi-1 family models are intended for research purposes. The model-generated code should be treated as a starting point rather than a definitive solution for potential use cases. Users should be cautious when employing these models in their applications.
33
+ * Direct adoption for production coding tasks is out of the scope of this research project. As a result, the phi-1 family models have not been tested to ensure that they perform adequately for production-level code. Please refer to the limitation sections of this document for more details.
34
+
35
+ ## Limitations of phi-1
36
+
37
+ * Limited Scope: 99.8% of the Python scripts in our fine-tuning dataset use only the packages "typing, math, random, collections, datetime, itertools". If the model generates Python scripts that utilize other packages, we strongly recommend users manually verify all API uses.
38
+ * Replicate Scripts Online: As our model is trained on Python scripts found online, there is a small chance it may replicate such scripts, especially if they appear repetitively across different online sources.
39
+ * Generate Inaccurate Code: The models frequently generate incorrect code. We suggest that users view these outputs as a source of inspiration rather than definitive solutions.
40
+ * Unreliable Responses to Alternate Formats: Despite appearing to comprehend instructions in formats like Q&A or chat, our models often respond with inaccurate answers, even when seeming confident. Their capabilities with non-code formats are significantly more limited.
41
+ * Limitations on Natural Language Comprehension. As a coding bot, phi-1's main focus is to help with coding-related questions. While it may have some natural language comprehension capabilities, its primary function is not to engage in general conversations or demonstrate common sense like a general AI assistant. Its strength lies in providing assistance and guidance in the context of programming and software development.
42
+ * Potential Biases: The phi-1 family models, like other AI models, are trained on web and synthetic data. This data can contain biases and errors that might affect the AI's performance. Biases could stem from various sources like unbalanced representation, stereotypes, or controversial opinions present in the training data. As a result, the AI model might sometimes generate responses that reflect these biases or errors.
43
+
44
+ ## Warning about Security Risks
45
+ When leveraging the phi-1 family models, it's paramount to be vigilant. These models, though powerful, can inadvertently introduce security vulnerabilities in the generated code. Examples include, but are not limited to:
46
+
47
+ * Directory Traversal: The code might fail to implement safe checks against directory traversal attacks, potentially allowing unauthorized access to sensitive files on your system.
48
+ * Injection Attacks: There could be lapses in escaping strings properly, making the application susceptible to SQL, OS commands, or other injection attacks.
49
+ * Misunderstanding Requirements: The model might sometimes misunderstand or oversimplify user requirements, leading to incomplete or insecure solutions.
50
+ * Lack of Input Validation: In some cases, the model might neglect to incorporate input validation or sanitize user inputs, opening doors to attacks like Cross-Site Scripting (XSS).
51
+ * Insecure Defaults: The model might recommend or generate code with insecure default settings, such as weak password requirements or unencrypted data transmissions.
52
+ * Failure in Error Handling: Improper error handling can inadvertently reveal sensitive information about the system or the application's internal workings.
53
+
54
+ Given these potential pitfalls, and others not explicitly mentioned, it's essential to thoroughly review, test, and verify the generated code before deploying it in any application, especially those that are security-sensitive. Always consult with security experts or perform rigorous penetration testing when in doubt.
55
+
56
+ ## Training
57
+ ### Model (phi-1-base)
58
+ * Architecture: a Transformer-based model with next-word prediction objective
59
+ * Pretraining steps: 24000 step
60
+ * Pretraining tokens: 51B tokens
61
+ * Precision: fp16
62
+ * GPUs: 8 A100
63
+ * Training time: 4 days
64
+
65
+ ### Model (phi-1)
66
+ * Architecture: a Transformer-based model with next-word prediction objective
67
+ * Fine-tuning steps: 6000 step
68
+ * Fine-tuning tokens: 3B tokens
69
+ * Precision: fp16
70
+ * GPUs: 8 A100
71
+ * Training time: 7 hours
72
+
73
+ ### Software
74
+ * [PyTorch](https://github.com/pytorch/pytorch)
75
+ * [DeepSpeed](https://github.com/microsoft/DeepSpeed)
76
+ * [flash-attention](https://github.com/HazyResearch/flash-attention)
77
+
78
+ ### License
79
+ The model is licensed under [Research License](https://todo).
80
+
81
+ ### Citation
82
+ ```bib
83
+ @article{gunasekar2023textbooks,
84
+ title={Textbooks Are All You Need},
85
+ author={Gunasekar, Suriya and Zhang, Yi and Aneja, Jyoti and Mendes, Caio C{\'e}sar Teodoro and Del Giorno, Allie and Gopi, Sivakanth and Javaheripi, Mojan and Kauffmann, Piero and de Rosa, Gustavo and Saarikivi, Olli and others},
86
+ journal={arXiv preprint arXiv:2306.11644},
87
+ year={2023}
88
+ }
89
+ ```