Update README.md
Browse files
README.md
CHANGED
@@ -146,6 +146,7 @@ Let's say the number given by the user is 2147483647. Your first thought process
|
|
146 |
But make sure you also consider edge cases like 2, because some programming languages might use zero-based indexing.
|
147 |
|
148 |
Here's a possible solution:
|
|
|
149 |
|
150 |
```python
|
151 |
import math
|
@@ -170,8 +171,6 @@ result = is_prime(number)
|
|
170 |
print(f"The result for {number} is:", "Prime" if result else "Not Prime")
|
171 |
```
|
172 |
|
173 |
-
```
|
174 |
-
|
175 |
## Evaluations
|
176 |
We are encouraged by the initial assessments conducted using the [LLM-as-a-Judge method](https://arxiv.org/abs/2306.05685), particularly with the utilization of GPT-4. Our ongoing efforts involve a more comprehensive evaluation of the model. We have also entered this model into the HuggingFace Open Leaderboard for assessment. As we progress, we will continue to provide updates on our findings and share the results on this platform.
|
177 |
|
|
|
146 |
But make sure you also consider edge cases like 2, because some programming languages might use zero-based indexing.
|
147 |
|
148 |
Here's a possible solution:
|
149 |
+
```
|
150 |
|
151 |
```python
|
152 |
import math
|
|
|
171 |
print(f"The result for {number} is:", "Prime" if result else "Not Prime")
|
172 |
```
|
173 |
|
|
|
|
|
174 |
## Evaluations
|
175 |
We are encouraged by the initial assessments conducted using the [LLM-as-a-Judge method](https://arxiv.org/abs/2306.05685), particularly with the utilization of GPT-4. Our ongoing efforts involve a more comprehensive evaluation of the model. We have also entered this model into the HuggingFace Open Leaderboard for assessment. As we progress, we will continue to provide updates on our findings and share the results on this platform.
|
176 |
|