Instructions to use AumPandya/my-app with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- spaCy
How to use AumPandya/my-app with spaCy:
!pip install https://huggingface.co/AumPandya/my-app/resolve/main/my-app-any-py3-none-any.whl # Using spacy.load(). import spacy nlp = spacy.load("my-app") # Importing as module. import my-app nlp = my-app.load() - Notebooks
- Google Colab
- Kaggle
Upload Dockerfile
Browse files- Dockerfile +10 -0
Dockerfile
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.8
|
| 2 |
+
|
| 3 |
+
RUN pip install streamlit spacy
|
| 4 |
+
|
| 5 |
+
COPY . /app
|
| 6 |
+
WORKDIR /app
|
| 7 |
+
|
| 8 |
+
EXPOSE 8501
|
| 9 |
+
|
| 10 |
+
CMD ["streamlit", "run", "--server.port", "8501", "app.py"]
|