|
1 | 1 | # Mixing AI and programming
|
2 | 2 |
|
3 | 3 | - [Mixing AI and programming](#mixing-ai-and-programming)
|
4 |
| - - [Practical basics of a programming language](#practical-basics-of-a-programming-language) |
| 4 | + - [Practical basics of any programming language](#practical-basics-of-any-programming-language) |
5 | 5 | - [If conditions](#if-conditions)
|
6 | 6 | - [Zero-shot if conditions](#zero-shot-if-conditions)
|
7 | 7 | - [Zero-shot if conditions on images](#zero-shot-if-conditions-on-images)
|
|
14 | 14 | - [Conclusion](#conclusion)
|
15 | 15 |
|
16 | 16 |
|
17 |
| -The new era of AI models (and they can be finally called "AI" instead of the earlier "ML"), has brought in a new era of capabilities that we are still in the teethhing stages trying to explore. |
| 17 | +The new era of AI models has brought in a new era of capabilities that we are still in the teething stages trying to explore. |
18 | 18 |
|
19 | 19 | This statement has been ringing in my head for a few months, something that now brings about 53 million results on google - "AI is eating software". Cool, lets explore a few ideas how we could help that consumption 😋
|
20 | 20 |
|
21 |
| -## Practical basics of a programming language |
| 21 | +## Practical basics of any programming language |
22 | 22 |
|
23 | 23 | Whenever I try to pick up a new programming language, I'm first always trying to learn that minimal subset of it - essentially - conditional statements, functions, loops and type system if the language has it. Rest all is required but one can technically go miles with just this set of constructs.
|
24 | 24 |
|
25 | 25 | So lets see how AI mixes with these!
|
26 | 26 |
|
27 |
| -We are mostly looking at **runtime** ideas. Code-time I guess there are quite a few and more sophisticated tools out already. But, we all saw grok, inference is getting FAST and dirt cheap, hence runtime AI consultation would be a reality in a few years. |
| 27 | +We are mostly looking at **runtime** ideas. Code-time I guess there are quite a few and more sophisticated tools out already. But, we all saw grok, inference is getting FAST and dirt cheap, hence runtime AI usage would be a reality in some time. |
28 | 28 |
|
29 | 29 | ## If conditions
|
30 | 30 |
|
@@ -131,6 +131,19 @@ else:
|
131 | 131 | # The phone has an awesome battery life!
|
132 | 132 | ```
|
133 | 133 |
|
| 134 | +Or sentiment-wise processing: |
| 135 | + |
| 136 | +```python |
| 137 | +text = "This a very good entry level smartphone, battery last 2-3 days after fully charged when connected to the internet. No memory lag issue when playing simple hidden object games. Performance is beyond my expectation, i bought it with a good bargain, couldnt ask for more!" |
| 138 | + |
| 139 | +if when(text, "the user is happy"): |
| 140 | + print("Yay!") |
| 141 | +else: |
| 142 | + print("Yay! please fill up this surveymonkey form") |
| 143 | + |
| 144 | +# Yay! |
| 145 | +``` |
| 146 | + |
134 | 147 | Or content filtering:
|
135 | 148 |
|
136 | 149 | ```python
|
|
0 commit comments