-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
47 lines (38 loc) · 1.74 KB
/
Copy path.env.example
File metadata and controls
47 lines (38 loc) · 1.74 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
# Project Environment Variables Configuration Example
# Copy this file to .env and modify according to your setup
# ============================================================================
# Dataset Paths
# ============================================================================
# TDrive Dataset (Beijing Taxi Trajectories)
# Specify the path to your TDrive trajectory data file
# DATASET_TDRIVE_PATH=/path/to/tdrive.txt
# Chengdu Taxi Dataset
# Specify the path to your Chengdu trajectory data file
# DATASET_CHENGDU_PATH=/path/to/chengdu_taxi.txt
# ============================================================================
# Output Directories
# ============================================================================
# Base output directory for results, models, and logs
# OUTPUT_DIR=resource/outputs
# Resource base directory (relative to project root or absolute path)
# RESOURCE_BASE_DIR=resource
# ============================================================================
# PyTorch Configuration
# ============================================================================
# Suppress OpenMP duplicate library warnings (if needed)
# KMP_DUPLICATE_LIB_OK=TRUE
# ============================================================================
# Usage Notes
# ============================================================================
#
# 1. Uncomment and set the variables you need
# 2. Use absolute paths or paths relative to the project root
# 3. On Windows, use forward slashes (/) or escaped backslashes (\\)
# 4. Environment variables take precedence over config file settings
#
# Example (Windows):
# DATASET_TDRIVE_PATH=C:/Data/Trajectories/tdrive.txt
#
# Example (Linux/Mac):
# DATASET_TDRIVE_PATH=/home/user/data/trajectories/tdrive.txt
#