Spaces:
Runtime error
Runtime error
Upload 5 files
Browse files- Dockerfile +24 -0
- app3.py +65 -0
- config.toml +57 -0
- credentials.toml +2 -0
- requirements.txt +5 -0
Dockerfile
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use an official Python runtime as a parent image
|
2 |
+
FROM python:3.10-slim
|
3 |
+
|
4 |
+
# This copies everything in the current directory to the /app directory in the container
|
5 |
+
COPY . /app
|
6 |
+
|
7 |
+
# Set the working directory in the container to /app
|
8 |
+
WORKDIR /app
|
9 |
+
|
10 |
+
# Install any needed packages specified in requirements.txt
|
11 |
+
RUN pip install -r requirements.txt
|
12 |
+
|
13 |
+
# Make port 8501 available to the world outside this container
|
14 |
+
EXPOSE 80
|
15 |
+
|
16 |
+
RUN mkdir ~/.streamlit
|
17 |
+
|
18 |
+
RUN cp config.toml ~/.streamlit/config.toml
|
19 |
+
|
20 |
+
RUN cp credentials.toml ~/.streamlit/credentials.toml
|
21 |
+
|
22 |
+
ENTRYPOINT [ "streamlit", "run" ]
|
23 |
+
# Run app3.py when the container launches
|
24 |
+
CMD [ "app3.py"]
|
app3.py
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import numpy as np
|
3 |
+
from scipy.integrate import odeint
|
4 |
+
import plotly.graph_objects as go
|
5 |
+
import time
|
6 |
+
import pandas as pd
|
7 |
+
|
8 |
+
# Define the Lorenz system
|
9 |
+
def lorenz_system(current_state, t, sigma, rho, beta):
|
10 |
+
x, y, z = current_state
|
11 |
+
dx_dt = sigma * (y - x)
|
12 |
+
dy_dt = x * (rho - z) - y
|
13 |
+
dz_dt = x * y - beta * z
|
14 |
+
return [dx_dt, dy_dt, dz_dt]
|
15 |
+
|
16 |
+
# Set up the sidebar
|
17 |
+
st.sidebar.title('Lorenz System Parameters')
|
18 |
+
sigma = st.sidebar.slider('Sigma', 0.0, 50.0, 10.0)
|
19 |
+
rho = st.sidebar.slider('Rho', 0.0, 50.0, 28.0)
|
20 |
+
beta = st.sidebar.slider('Beta', 0.0, 50.0, 2.67)
|
21 |
+
|
22 |
+
x0_1 = st.sidebar.number_input('Initial x for 1st system', value=1.0)
|
23 |
+
y0_1 = st.sidebar.number_input('Initial y for 1st system', value=1.0)
|
24 |
+
z0_1 = st.sidebar.number_input('Initial z for 1st system', value=1.0)
|
25 |
+
|
26 |
+
x0_2 = st.sidebar.number_input('Initial x for 2nd system', value=1.0)
|
27 |
+
y0_2 = st.sidebar.number_input('Initial y for 2nd system', value=1.0)
|
28 |
+
z0_2 = st.sidebar.number_input('Initial z for 2nd system', value=1.0)
|
29 |
+
|
30 |
+
# Define the time points for the simulation
|
31 |
+
t = np.linspace(0, 4, 1000)
|
32 |
+
|
33 |
+
# Solve the Lorenz system
|
34 |
+
solution_1 = odeint(lorenz_system, (x0_1, y0_1, z0_1), t, args=(sigma, rho, beta))
|
35 |
+
solution_2 = odeint(lorenz_system, (x0_2, y0_2, z0_2), t, args=(sigma, rho, beta))
|
36 |
+
|
37 |
+
# Create a 3D plot of the solutions
|
38 |
+
plot_slot = st.empty()
|
39 |
+
|
40 |
+
stop = st.checkbox('Stop')
|
41 |
+
|
42 |
+
i = 0
|
43 |
+
while i < len(t) and not stop:
|
44 |
+
fig = go.Figure(data=[
|
45 |
+
go.Scatter3d(x=solution_1[:i, 0], y=solution_1[:i, 1], z=solution_1[:i, 2], mode='lines', line=dict(color='red'), name='System 1'),
|
46 |
+
go.Scatter3d(x=solution_2[:i, 0], y=solution_2[:i, 1], z=solution_2[:i, 2], mode='lines', line=dict(color='blue'), name='System 2')
|
47 |
+
])
|
48 |
+
|
49 |
+
fig.update_layout(scene=dict(xaxis=dict(range=[min(min(solution_1[:, 0]), min(solution_2[:, 0])), max(max(solution_1[:, 0]), max(solution_2[:, 0]))]),
|
50 |
+
yaxis=dict(range=[min(min(solution_1[:, 1]), min(solution_2[:, 1])), max(max(solution_1[:, 1]), max(solution_2[:, 1]))]),
|
51 |
+
zaxis=dict(range=[min(min(solution_1[:, 2]), min(solution_2[:, 2])), max(max(solution_1[:, 2]), max(solution_2[:, 2]))]),
|
52 |
+
camera=dict(eye=dict(x=2*np.cos(i/10), y=2*np.sin(i/10), z=0.1))),
|
53 |
+
width=800, height=600)
|
54 |
+
|
55 |
+
plot_slot.plotly_chart(fig)
|
56 |
+
|
57 |
+
i += 1
|
58 |
+
time.sleep(0.2)
|
59 |
+
|
60 |
+
if st.button('Export Data'):
|
61 |
+
df_1 = pd.DataFrame(solution_1, columns=['x_1', 'y_1', 'z_1'])
|
62 |
+
df_2 = pd.DataFrame(solution_2, columns=['x_2', 'y_2', 'z_2'])
|
63 |
+
df_1.to_csv('lorenz_data_1.csv')
|
64 |
+
df_2.to_csv('lorenz_data_2.csv')
|
65 |
+
st.write('Data exported successfully!')
|
config.toml
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[global]
|
2 |
+
# If True, will show a warning when you run a Streamlit-enabled script via "python my_script.py".
|
3 |
+
# Default: true
|
4 |
+
showWarningOnDirectExecution = true
|
5 |
+
|
6 |
+
[logger]
|
7 |
+
# Level of logging: 'error', 'warning', 'info', or 'debug'.
|
8 |
+
# Default: 'info'
|
9 |
+
level = "debug"
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
[runner]
|
14 |
+
# Allows you to type a variable or string by itself in a single line of Python code to write it to the app.
|
15 |
+
# Default: true
|
16 |
+
magicEnabled = true
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
[server]
|
21 |
+
# List of folders that should not be watched for changes. Relative paths will be taken as relative to the current working directory.
|
22 |
+
# Example: ['/home/user1/env', 'relative/path/to/folder']
|
23 |
+
# Default: []
|
24 |
+
folderWatchBlacklist = ['']
|
25 |
+
|
26 |
+
# If false, will attempt to open a browser window on start.
|
27 |
+
# Default: false unless (1) we are on a Linux box where DISPLAY is unset, or (2) server.liveSave is set.
|
28 |
+
headless = true
|
29 |
+
|
30 |
+
# Immediately share the app in such a way that enables live monitoring, and post-run analysis.
|
31 |
+
# Default: false
|
32 |
+
liveSave = false
|
33 |
+
|
34 |
+
# Automatically rerun script when the file is modified on disk.
|
35 |
+
# Default: false
|
36 |
+
runOnSave = false
|
37 |
+
|
38 |
+
# The port where the server will listen for client and browser connections.
|
39 |
+
# Default: 8501
|
40 |
+
port = 80
|
41 |
+
|
42 |
+
# Enables support for Cross-Origin Request Sharing, for added security.
|
43 |
+
# Default: true
|
44 |
+
enableCORS = false
|
45 |
+
|
46 |
+
[browser]
|
47 |
+
# Internet address of the server that the browser should connect to. Can be IP address or DNS name.
|
48 |
+
# Default: 'localhost'
|
49 |
+
serverAddress = "0.0.0.0"
|
50 |
+
|
51 |
+
# Whether to send usage statistics to Streamlit.
|
52 |
+
# Default: true
|
53 |
+
gatherUsageStats = true
|
54 |
+
|
55 |
+
# Port that the browser should use to connect to the server when in liveSave mode.
|
56 |
+
# Default: whatever value is set in server.port.
|
57 |
+
serverPort = 80
|
credentials.toml
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
[general]
|
2 |
+
email=""
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
streamlit==1.32.2
|
2 |
+
numpy==1.26.4
|
3 |
+
scipy==1.12.0
|
4 |
+
plotly==5.20.0
|
5 |
+
pandas==2.2.1
|