Skip to content

Commit 33cb69f

Browse files
committed
add utils
1 parent 9cf119d commit 33cb69f

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

docs/blog/ideas/programming_and_ai.md

+17-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Mixing AI and programming
22

33
- [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)
55
- [If conditions](#if-conditions)
66
- [Zero-shot if conditions](#zero-shot-if-conditions)
77
- [Zero-shot if conditions on images](#zero-shot-if-conditions-on-images)
@@ -14,17 +14,17 @@
1414
- [Conclusion](#conclusion)
1515

1616

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.
1818

1919
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 😋
2020

21-
## Practical basics of a programming language
21+
## Practical basics of any programming language
2222

2323
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.
2424

2525
So lets see how AI mixes with these!
2626

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.
2828

2929
## If conditions
3030

@@ -131,6 +131,19 @@ else:
131131
# The phone has an awesome battery life!
132132
```
133133

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+
134147
Or content filtering:
135148

136149
```python

site/search/search_index.json

+1-1
Large diffs are not rendered by default.

site/sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)