muhsin commited on
Commit
689b021
·
1 Parent(s): 7b169a8

skeleton test

Browse files
Files changed (3) hide show
  1. README.md +18 -2
  2. app.py +4 -0
  3. requirements.txt +0 -0
README.md CHANGED
@@ -1,6 +1,22 @@
 
 
 
 
 
 
1
  ---
 
 
 
 
 
 
 
 
 
 
2
  title: Malayalam Tokenizer
3
- emoji: 🐠
4
  colorFrom: pink
5
  colorTo: yellow
6
  sdk: streamlit
@@ -9,6 +25,6 @@ app_file: app.py
9
  pinned: false
10
  license: apache-2.0
11
  short_description: a basic malayalam language tokenizer for llms
12
- ---
13
 
14
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ # Malayalam Tokenizer 🇮🇳🧱
2
+
3
+ A basic tokenizer for Malayalam language.
4
+
5
+ [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/askmuhsin/malayalam_tokenizer)
6
+
7
  ---
8
+ ### Model Card
9
+
10
+ - **Title**: Malayalam Tokenizer
11
+ - **License**: Apache 2.0
12
+ - **SDK**: Streamlit v1.42.0
13
+ - **Tags**: NLP, Tokenization, Malayalam, LLM
14
+
15
+ ---
16
+ # HuggingFace Space Configuration
17
+ ```yaml
18
  title: Malayalam Tokenizer
19
+ emoji: 🇮🇳
20
  colorFrom: pink
21
  colorTo: yellow
22
  sdk: streamlit
 
25
  pinned: false
26
  license: apache-2.0
27
  short_description: a basic malayalam language tokenizer for llms
28
+ ```
29
 
30
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ x = st.slider('Select a value')
4
+ st.write(x, 'squared is', x * x)
requirements.txt ADDED
File without changes