mackenzietechdocs commited on
Commit
f90d7f7
Β·
1 Parent(s): 1f91807
Files changed (2) hide show
  1. README.md +2 -1
  2. app.py +1 -1
README.md CHANGED
@@ -10,7 +10,8 @@ pinned: false
10
  license: mit
11
  short_description: A place to chat to my ML training LoRA of TinyLlama.
12
  ---
13
- # πŸ₯‹ ML Sensei β€” TinyLlama LoRA Chat
 
14
  *A lightweight interactive tutor for machine learning concepts.*
15
 
16
  Welcome to **ML Sensei**, a fine-tuned TinyLlama model designed to **teach machine learning concepts with clarity, intuition, and gentleness**.
 
10
  license: mit
11
  short_description: A place to chat to my ML training LoRA of TinyLlama.
12
  ---
13
+ # πŸ₯‹ ML Sensei β€” TinyLlama LoRA Chat
14
+
15
  *A lightweight interactive tutor for machine learning concepts.*
16
 
17
  Welcome to **ML Sensei**, a fine-tuned TinyLlama model designed to **teach machine learning concepts with clarity, intuition, and gentleness**.
app.py CHANGED
@@ -9,7 +9,7 @@ import atexit
9
  event_loop = asyncio.new_event_loop()
10
  asyncio.set_event_loop(event_loop)
11
 
12
- # Make loop destructor safe (prevents Invalid file descriptor spam on shutdown)
13
  def _safe_loop_del(self): # pragma: no cover
14
  try:
15
  if not self.is_closed():
 
9
  event_loop = asyncio.new_event_loop()
10
  asyncio.set_event_loop(event_loop)
11
 
12
+ # Make loop destructor safe (prevents Invalid file descriptor spam on shutdown.)
13
  def _safe_loop_del(self): # pragma: no cover
14
  try:
15
  if not self.is_closed():