awacke1 commited on
Commit
a1fcad5
·
verified ·
1 Parent(s): 0c17162

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -1
app.py CHANGED
@@ -1,7 +1,9 @@
1
  import streamlit as st
 
 
2
  st.set_page_config(page_title="AI Evolution", layout="wide")
3
 
4
- st.markdown("""## The evolution of AI""")
5
 
6
  st.markdown("""
7
 
@@ -316,3 +318,17 @@ user_prediction = st.text_area("Share your predictions or thoughts on the future
316
  if st.button("Submit Your Prediction"):
317
  st.write("Thank you for sharing your thoughts! While we can't store your prediction, it's valuable to consider diverse perspectives on AI's future.")
318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
+ import pandas as pd
3
+
4
  st.set_page_config(page_title="AI Evolution", layout="wide")
5
 
6
+ st.markdown("""## The Evolution of AI""")
7
 
8
  st.markdown("""
9
 
 
318
  if st.button("Submit Your Prediction"):
319
  st.write("Thank you for sharing your thoughts! While we can't store your prediction, it's valuable to consider diverse perspectives on AI's future.")
320
 
321
+ st.markdown("""| Level | Performance | Generality | Description |
322
+ |--------|----------------------|-------------------|----------------------------------------------------------------------------|
323
+ | Level 0 | No AI | | |
324
+ | Level 1 | Emerging | Narrow Non-AI | GOFAI (Boden, 2014); simple rule-based systems, e.g., SHRDLU (Winograd, 1971) |
325
+ | Level 1 | Emerging | General Non-AI | human-in-the-loop computing, e.g., Amazon Mechanical Turk |
326
+ | Level 2 | Competent | Narrow Non-AI | toxicity detectors, smart speakers, VQA systems |
327
+ | Level 2 | Competent | Emerging AGI | ChaiGPT, Bard, Llama 2, Gemini |
328
+ | Level 3 | Expert | Competent Narrow AI | spelling & grammar checkers, generative image models |
329
+ | Level 3 | Expert | Expert AGI | not yet achieved |
330
+ | Level 4 | Virtuoso | Virtuoso Narrow AI | Deep Blue, AlphaGo |
331
+ | Level 4 | Virtuoso | Virtuoso AGI | not yet achieved |
332
+ | Level 5 | Superhuman | Superhuman Narrow AI | AlphaFold, AlphaZero, StockFish |
333
+ | Level 5 | Superhuman | Artificial Superintelligence (ASI) | not yet achieved |
334
+ """)