Update README.md
Browse files
README.md
CHANGED
@@ -24,6 +24,10 @@ You can interact with the StableGPT4-Micro-1.6B model by providing it with promp
|
|
24 |
{"role": "assistant", "text": "Here's a simple `HelloWorld` program in C++:\n```cpp\n#include <iostream>\n\nint main() {\n std::cout << \"Hello, World!\" << std::endl;\n return 0;\n}\n```\nThis code uses the `<iostream>` standard library to create a `std::cout` stream and print the string \"Hello, World!\" to the standard output. The `return 0` statement indicates that the program has finished running and returns the control to the user. You can run this program on your C++ compiler's command line or integrated development environment (IDE) to see the output."}
|
25 |
```
|
26 |
|
|
|
|
|
|
|
|
|
27 |
### Notes
|
28 |
|
29 |
- The model is trained to provide helpful and informative responses based on the input prompts.
|
|
|
24 |
{"role": "assistant", "text": "Here's a simple `HelloWorld` program in C++:\n```cpp\n#include <iostream>\n\nint main() {\n std::cout << \"Hello, World!\" << std::endl;\n return 0;\n}\n```\nThis code uses the `<iostream>` standard library to create a `std::cout` stream and print the string \"Hello, World!\" to the standard output. The `return 0` statement indicates that the program has finished running and returns the control to the user. You can run this program on your C++ compiler's command line or integrated development environment (IDE) to see the output."}
|
25 |
```
|
26 |
|
27 |
+
### Test
|
28 |
+
|
29 |
+
You can use gen.py to test the model.
|
30 |
+
|
31 |
### Notes
|
32 |
|
33 |
- The model is trained to provide helpful and informative responses based on the input prompts.
|