-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_structure.txt
114 lines (114 loc) · 3.34 KB
/
project_structure.txt
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
turkce_nlp/
│
├── .github/
│ └── workflows/
│ ├── ci_cd.yml
│ └── qodana_code_quality.yml
│
├── backend/
│ ├── app/
│ │ ├── core/
│ │ │ └── security.py
│ │ ├── models/
│ │ │ ├── __init__.py
│ │ │ ├── keyword_extractor.py
│ │ │ ├── question_answerer.py
│ │ │ ├── sentiment_analyzer.py
│ │ │ ├── summarizer.py
│ │ │ ├── text_classifier.py
│ │ │ └── translator.py
│ │ └── services/
│ │ ├── __init__.py
│ │ └── pdf_service.py
│ ├── tests/
│ │ └── __init__.py
│ ├── main.py
│ ├── models.py
│ ├── security.py
│ └── services.py
│
├── data/
│ ├── static/
│ │ ├── arkaplan.mp4
│ │ └── arkaplan.jpg
│ ├── HepsiBurada.csv
│ ├── HepsiBurada_cleaned.csv
│ ├── dataset.json
│ └── örnek_metin.txt
│
├── frontend/
│ ├── build/
│ │ ├── static/
│ │ │ └── js/
│ │ │ ├── main.99994348.js
│ │ │ ├── main.99994348.js.map
│ │ │ └── main.99994348.js.LICENSE.txt
│ │ ├── index.html
│ │ ├── asset-manifest.json
│ │ ├── background.mp4
│ │ └── favicon.ico
│ ├── config/
│ │ ├── jest/
│ │ │ ├── babelTransform.js
│ │ │ ├── cssTransform.js
│ │ │ └── fileTransform.js
│ │ ├── webpack/
│ │ │ ├── persistentCache/
│ │ │ │ └── createEnvironmentHash.js
│ │ │ ├── env.js
│ │ │ ├── getHttpsConfig.js
│ │ │ ├── modules.js
│ │ │ ├── paths.js
│ │ │ ├── webpack.config.js
│ │ │ └── webpackDevServer.config.js
│ ├── public/
│ │ ├── index.html
│ │ ├── background.mp4
│ │ └── favicon.ico
│ ├── scripts/
│ │ ├── build.js
│ │ ├── start.js
│ │ └── test.js
│ └── src/
│ ├── components/
│ ├── pages/
│ ├── styles/
│ ├── utils/
│ ├── App.css
│ ├── index.css
│ ├── styles.css
│ ├── App.js
│ ├── index.js
│ └── PdfUpload.js
│
├── logging/
│ └── logstash.conf
│
├── scripts/
│ └── fine_tune_bart.py
│
├── tests/
│ ├── test.pdf
│ ├── test_with_table.pdf
│ ├── __init__.py
│ ├── test-pdf-service.py
│ ├── test_api.py
│ └── test_models.py
│
├── .env
├── .env.backup
├── .gitignore
├── demo.mp4
├── favicon.ico
├── install_requirements.py
├── list_project_structure.py
├── package.json
├── package.json.backup
├── pdf-processor.py
├── pdfplumber==0.5.3
├── project-structure.txt
├── project_structure.txt
├── README.md
├── requirements.txt
├── tabula==3.7.4
└── yarn.lock