Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ For development or customization, clone the repository and set up the environmen

```bash
# Clone the repository
git clone https://github.com/yourusername/ECON.git
git clone https://github.com/tmlr-group/ECON.git
cd ECON

# Create and activate conda environment
Expand Down Expand Up @@ -174,7 +174,7 @@ main(config)
The example below shows how to configure advanced coordination settings for better performance. The framework implements two-stage training with belief formation and BNE coordination.

```python
from src.learners.q_learner import QLearner
from src.learners.q_learner import ECONLearner
from src.controllers.basic_mac import LLMBasicMAC

# Configure BNE coordination parameters
Expand All @@ -183,7 +183,7 @@ config.bne_convergence_threshold = 0.01
config.stage2_weight = 0.3

# Initialize learner with coordination
learner = QLearner(mac, scheme, logger, config)
learner = ECONLearner(mac, scheme, logger, config)
learner.train(batch, t_env, episode_num)
```

Expand Down