Spaces:
Runtime error
Runtime error
VenkateshRoshan
commited on
Commit
·
9f203ff
1
Parent(s):
20f7f6f
app and dockerfile for hf added
Browse files- README.md +19 -1
- dockerfile_hf +1 -1
README.md
CHANGED
@@ -5,12 +5,30 @@ colorFrom: blue
|
|
5 |
colorTo: indigo
|
6 |
sdk: docker
|
7 |
dockerfile: dockerfile_hf
|
|
|
8 |
pinned: false
|
9 |
---
|
10 |
|
11 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
12 |
|
13 |
# Real Time Customer Support Chatbot
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
---
|
15 |
### Developing a real-time customer support chatbot using a fine-tuned LLM to provide accurate responses. Building CI/CD pipelines for scalable deployment on AWS SageMaker and integrating MLflow for tracking model versions, experiment logging, and continuous improvements.
|
16 |
-
---
|
|
|
5 |
colorTo: indigo
|
6 |
sdk: docker
|
7 |
dockerfile: dockerfile_hf
|
8 |
+
app_port: 7860
|
9 |
pinned: false
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
13 |
|
14 |
# Real Time Customer Support Chatbot
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
# Hugging Face Model Deployment with Docker
|
19 |
+
|
20 |
+
This repository contains a Dockerized setup for deploying a Hugging Face model. The `dockerfile_hf` file defines the environment to build and run the application.
|
21 |
+
|
22 |
+
## Table of Contents
|
23 |
+
- [Project Overview](#project-overview)
|
24 |
+
- [Setup](#setup)
|
25 |
+
- [Docker Usage](#docker-usage)
|
26 |
+
- [Running the Container](#running-the-container)
|
27 |
+
- [Model Inference](#model-inference)
|
28 |
+
- [License](#license)
|
29 |
+
|
30 |
+
## Project Overview
|
31 |
+
|
32 |
---
|
33 |
### Developing a real-time customer support chatbot using a fine-tuned LLM to provide accurate responses. Building CI/CD pipelines for scalable deployment on AWS SageMaker and integrating MLflow for tracking model versions, experiment logging, and continuous improvements.
|
34 |
+
---
|
dockerfile_hf
CHANGED
@@ -2,7 +2,7 @@ FROM python3.10-slim
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
-
COPY
|
6 |
COPY src/ /app/src/
|
7 |
|
8 |
COPY requirements.txt .
|
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
+
COPY app_hf.py /app/app_hf.py
|
6 |
COPY src/ /app/src/
|
7 |
|
8 |
COPY requirements.txt .
|