-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (44 loc) · 1.92 KB
/
.env.example
File metadata and controls
51 lines (44 loc) · 1.92 KB
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
# IntelliTag - Environment Configuration
# Copy this file to .env and fill in the values
# =============================================================================
# Application Settings
# =============================================================================
APP_NAME=IntelliTag
APP_ENV=development # development, staging, production
DEBUG=true
LOG_LEVEL=INFO
# =============================================================================
# API Configuration
# =============================================================================
API_HOST=0.0.0.0
API_PORT=8000
API_WORKERS=1
# =============================================================================
# Model Configuration
# =============================================================================
MODEL_PATH=./models
DEFAULT_MODEL=bow # bow, word2vec, bert, use
PREDICTION_THRESHOLD=0.3
TOP_K_PREDICTIONS=5
# =============================================================================
# Data Paths
# =============================================================================
DATA_RAW_PATH=./data/raw
DATA_PROCESSED_PATH=./data/processed
# =============================================================================
# Feature Extraction
# =============================================================================
TFIDF_MAX_FEATURES=10000
WORD2VEC_DIM=300
BERT_MODEL=bert-base-uncased
USE_MODEL=https://tfhub.dev/google/universal-sentence-encoder/4
# =============================================================================
# Rate Limiting
# =============================================================================
RATE_LIMIT_REQUESTS=100
RATE_LIMIT_PERIOD=60 # seconds
# =============================================================================
# External Services (if applicable)
# =============================================================================
# SENTRY_DSN=
# PROMETHEUS_PORT=9090