awacke1 commited on
Commit
46eb5e3
ยท
verified ยท
1 Parent(s): cccb779

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -0
app.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.markdown("""## The evolution of AI""")
4
+
5
+ st.markdown("""
6
+
7
+ | Level | Description | Create & Model | Python ๐Ÿ | HTML5 ๐Ÿ•ธ๏ธ | JavaScript ๐Ÿ“œ |
8
+ |-------|-------------|----------------|-----------|-----------|--------------|
9
+ | Level 1 | ๐Ÿ—ฃ๏ธ Chatbots, AI with conversational language | Chatbots | `import chatbot` | `<script src="chatbot.js"></script>` | `const chatbot = new Chatbot();` |
10
+ | Level 2 | ๐Ÿง  Reasoners, human-level problem-solving | Reasoners | `import reasoner` | `<script src="reasoner.js"></script>` | `const reasoner = new Reasoner();` |
11
+ | Level 3 | ๐Ÿค– Agents, systems that can take actions | Agents | `import agent` | `<script src="agent.js"></script>` | `const agent = new Agent();` |
12
+ | Level 4 | ๐Ÿ’ก Innovators, AI that can aid in invention | Innovators | `import innovator` | `<script src="innovator.js"></script>` | `const innovator = new Innovator();` |
13
+ | Level 5 | ๐Ÿข Organizations, AI that can do the work of an organization | Organizations | `import organization` | `<script src="organization.js"></script>` | `const organization = new Organization();` |
14
+
15
+ | Level | Stage | Description | Creation/Model |
16
+ |-------|-------|-------------|----------------|
17
+ | 1 | ๐Ÿ—ฃ๏ธ Data Collection | Gather and preprocess datasets for language models | ๐Ÿ’ฌ Chatbots |
18
+ | 2 | ๐Ÿง  Model Architecture | Design neural networks for basic reasoning tasks | ๐Ÿงฎ Problem Solvers |
19
+ | 3 | ๐Ÿค– Algorithm Implementation | Develop action-oriented systems using Python/TensorFlow | ๐ŸŽฎ Autonomous Agents |
20
+ | 4 | ๐Ÿ’ก Creative AI | Build models capable of generating novel solutions (e.g. GPT, DALL-E) | ๐ŸŽจ Inventive Systems |
21
+ | 5 | ๐Ÿข Full-Stack AI Systems | Create end-to-end AI solutions with HTML5/JS frontends and distributed backends | ๐Ÿ—๏ธ Organizations |
22
+
23
+ """)
24
+