mzimm003 commited on
Commit
c609ed6
·
1 Parent(s): 84041bc

Allow multiple, distinct, sessions on server.

Browse files
Files changed (3) hide show
  1. Dockerfile +2 -6
  2. __pycache__/chessmodels.cpython-38.pyc +0 -0
  3. app.py +28 -28
Dockerfile CHANGED
@@ -1,6 +1,3 @@
1
- # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
- # you will also find guides on how best to write your Dockerfile
3
-
4
  FROM python:3.8.12
5
 
6
  RUN useradd -m -u 1000 user
@@ -13,11 +10,10 @@ COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --upgrade pip
14
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
15
 
16
- RUN git clone https://github.com/mzimm003/Chess /app/Chess
17
- RUN pip install /app/Chess
18
 
19
  COPY --chown=user . /app
20
- # CMD ["uvicorn", "app:main", "--host", "0.0.0.0", "--port", "7860"]
21
 
22
  EXPOSE 8501
23
  CMD streamlit run app.py \
 
 
 
 
1
  FROM python:3.8.12
2
 
3
  RUN useradd -m -u 1000 user
 
10
  RUN pip install --upgrade pip
11
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
12
 
13
+ RUN git clone https://github.com/mzimm003/Chess /home/user/Chess
14
+ RUN pip install /home/user/Chess
15
 
16
  COPY --chown=user . /app
 
17
 
18
  EXPOSE 8501
19
  CMD streamlit run app.py \
__pycache__/chessmodels.cpython-38.pyc ADDED
Binary file (4.59 kB). View file
 
app.py CHANGED
@@ -7,20 +7,17 @@ from streamlit_image_coordinates import streamlit_image_coordinates
7
 
8
  BOT_SELECITONS = ["DeepChessReplicationMinMax"]
9
 
10
- @st.cache_resource
11
  def load_model(bot_select):
12
  return DCMinMax.from_pretrained("mzimm003/{}".format(bot_select))
13
 
14
- @st.cache_resource
15
- def track_play():
16
- class trackPlay:
17
- def __init__(self):
18
- self.active_game = False
19
- self.bot_select = None
20
- def reset(self):
21
- self.active_game = False
22
- self.bot_select = None
23
- return trackPlay()
24
 
25
  def information(play, t_p):
26
  display = {
@@ -38,24 +35,26 @@ def reset(t_p):
38
  st.cache_resource.clear()
39
 
40
  def play(bot_select, t_p):
41
- play = HumanVsBot(
42
- model=load_model(bot_select=bot_select),
43
- environment=Chess(render_mode="rgb_array"),
44
- extra_model_environment_context=lambda env: {"board":env.board},
45
- )
 
46
  col1, col2 = st.columns([3,1])
47
  with col1:
48
- st.markdown("# {}".format(information(play, t_p)))
49
- st.session_state["board"] = streamlit_image_coordinates(play.render_board(), key="brd", click_and_drag=True)
50
  with col2:
51
  st.button("Reset", on_click=reset, args=[t_p])
52
- st.markdown("#### You are playing as {}!".format("white" if play.get_human_player() == "player_0" else "black"))
53
  st.markdown("""
54
  1. Play by dragging the piece you want to move.
55
- 2. Illegal moves will not be registered.
 
56
  """)
57
- if not play.is_done():
58
- play.run()
59
 
60
  def main(kwargs=None):
61
  css='''
@@ -65,22 +64,23 @@ def main(kwargs=None):
65
  '''
66
  st.markdown(css, unsafe_allow_html=True)
67
 
68
- t_p = track_play()
 
69
  placeholder = st.empty()
70
 
71
- if not t_p.active_game:
72
  # st.cache_resource.clear()
73
  with placeholder.container():
74
- t_p.bot_select = st.selectbox(
75
  label="bot",
76
  options=BOT_SELECITONS,
77
  )
78
- t_p.active_game = st.button("Play bot!")
79
- if t_p.active_game:
80
  st.rerun()
81
  else:
82
  with placeholder.container():
83
- play(t_p.bot_select, t_p)
84
 
85
  if __name__ == "__main__":
86
  main()
 
7
 
8
  BOT_SELECITONS = ["DeepChessReplicationMinMax"]
9
 
10
+ @st.cache_resource(max_entries=4)
11
  def load_model(bot_select):
12
  return DCMinMax.from_pretrained("mzimm003/{}".format(bot_select))
13
 
14
+ class TrackPlay:
15
+ def __init__(self):
16
+ self.active_game = False
17
+ self.bot_select = None
18
+ def reset(self):
19
+ self.active_game = False
20
+ self.bot_select = None
 
 
 
21
 
22
  def information(play, t_p):
23
  display = {
 
35
  st.cache_resource.clear()
36
 
37
  def play(bot_select, t_p):
38
+ if "play" not in st.session_state:
39
+ st.session_state.play = HumanVsBot(
40
+ model=load_model(bot_select=bot_select),
41
+ environment=Chess(render_mode="rgb_array"),
42
+ extra_model_environment_context=lambda env: {"board":env.board},
43
+ )
44
  col1, col2 = st.columns([3,1])
45
  with col1:
46
+ st.markdown("# {}".format(information(st.session_state.play, t_p)))
47
+ st.session_state["board"] = streamlit_image_coordinates(st.session_state.play.render_board(), key="brd", click_and_drag=True)
48
  with col2:
49
  st.button("Reset", on_click=reset, args=[t_p])
50
+ st.markdown("#### You are playing as {}!".format("white" if st.session_state.play.get_human_player() == "player_0" else "black"))
51
  st.markdown("""
52
  1. Play by dragging the piece you want to move.
53
+ 2. The piece won't move as you drag, but the move will be registered upon release.
54
+ 3. Illegal moves will not be registered.
55
  """)
56
+ if not st.session_state.play.is_done():
57
+ st.session_state.play.run()
58
 
59
  def main(kwargs=None):
60
  css='''
 
64
  '''
65
  st.markdown(css, unsafe_allow_html=True)
66
 
67
+ if "t_p" not in st.session_state:
68
+ st.session_state.t_p = TrackPlay()
69
  placeholder = st.empty()
70
 
71
+ if not st.session_state.t_p.active_game:
72
  # st.cache_resource.clear()
73
  with placeholder.container():
74
+ st.session_state.t_p.bot_select = st.selectbox(
75
  label="bot",
76
  options=BOT_SELECITONS,
77
  )
78
+ st.session_state.t_p.active_game = st.button("Play bot!")
79
+ if st.session_state.t_p.active_game:
80
  st.rerun()
81
  else:
82
  with placeholder.container():
83
+ play(st.session_state.t_p.bot_select, st.session_state.t_p)
84
 
85
  if __name__ == "__main__":
86
  main()