File size: 1,128 Bytes
e062e72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Web browser using python 

## Description

Demo app for Resume classification


## Usage

### Step 1: Create a Virtual Python Environment

First, create a new virtual environment to ensure all dependencies are isolated from your main Python installation.

```bash
conda create -n resume-atlas python=3.8
```

### Step 2: Activate the Environment

```bash
conda activate resume-atlas
```

### Step 3: Install the Requirements

```bash
pip install -r requirements.txt
```

### step 4: install nltk package 
```bash
python modules/install_stop_words.py
```

### step 5: Run the app 
```bash
python app.py
```
copy the following URL to your browser
```bash
http://127.0.0.1:7860
```

### DEMO 
![Alt text](./images/demo.png)

### Notes:

- if their is any problem in torch installation please use the following [website](https://pytorch.org/get-started/locally/) for installation 



## Contribution
Contributions are welcome! If you find any issues or have suggestions for improvement, please create an issue or submit a pull request on the project's GitHub repository.# Intelligent-Resume-Classification-and-Job-Matching-System