Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,18 @@
|
|
5 |
# With Episodic Memory, its purpose is to provide us with coherence connecting events. In Episodic Memory, accuracy is less important than consistency.
|
6 |
# In order to have a strong sense of self, it is important that our memories fit with our beliefs and feelings about ourselves.
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
# Initialization
|
9 |
if 'key' not in st.session_state:
|
10 |
st.session_state['key'] = 'value'
|
|
|
5 |
# With Episodic Memory, its purpose is to provide us with coherence connecting events. In Episodic Memory, accuracy is less important than consistency.
|
6 |
# In order to have a strong sense of self, it is important that our memories fit with our beliefs and feelings about ourselves.
|
7 |
|
8 |
+
import time
|
9 |
+
import re
|
10 |
+
import pandas as pd
|
11 |
+
import numpy as np
|
12 |
+
import torch
|
13 |
+
import torch.nn.functional as F
|
14 |
+
from transformers import AutoTokenizer, AutoModel
|
15 |
+
from tokenizers import Tokenizer, AddedToken
|
16 |
+
import streamlit as st
|
17 |
+
from st_click_detector import click_detector
|
18 |
+
|
19 |
+
|
20 |
# Initialization
|
21 |
if 'key' not in st.session_state:
|
22 |
st.session_state['key'] = 'value'
|