├── Agent └── Agents.py ├── Algorithm ├── BCQ.py ├── BackGroundActors.py ├── CQL.py ├── CalculateOptimalR.py ├── DDPG.py ├── OnlineExplorationPolicy.py ├── USCB.py └── V_CQL.py ├── Common └── Utils.py ├── Environment ├── RealAdvertisingSystem.py └── VirtualAdvertisingSystem.py ├── Evaluation ├── OPE.py └── RPE.py ├── README.md ├── evaluations.gin ├── sorl.gin ├── training_ras.gin └── training_vas.gin /Agent/Agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Agent/Agents.py -------------------------------------------------------------------------------- /Algorithm/BCQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/BCQ.py -------------------------------------------------------------------------------- /Algorithm/BackGroundActors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/BackGroundActors.py -------------------------------------------------------------------------------- /Algorithm/CQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/CQL.py -------------------------------------------------------------------------------- /Algorithm/CalculateOptimalR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/CalculateOptimalR.py -------------------------------------------------------------------------------- /Algorithm/DDPG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/DDPG.py -------------------------------------------------------------------------------- /Algorithm/OnlineExplorationPolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/OnlineExplorationPolicy.py -------------------------------------------------------------------------------- /Algorithm/USCB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/USCB.py -------------------------------------------------------------------------------- /Algorithm/V_CQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Algorithm/V_CQL.py -------------------------------------------------------------------------------- /Common/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Common/Utils.py -------------------------------------------------------------------------------- /Environment/RealAdvertisingSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Environment/RealAdvertisingSystem.py -------------------------------------------------------------------------------- /Environment/VirtualAdvertisingSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Environment/VirtualAdvertisingSystem.py -------------------------------------------------------------------------------- /Evaluation/OPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Evaluation/OPE.py -------------------------------------------------------------------------------- /Evaluation/RPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/Evaluation/RPE.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/README.md -------------------------------------------------------------------------------- /evaluations.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/evaluations.gin -------------------------------------------------------------------------------- /sorl.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/sorl.gin -------------------------------------------------------------------------------- /training_ras.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/training_ras.gin -------------------------------------------------------------------------------- /training_vas.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobodymx/SORL-for-Auto-bidding/HEAD/training_vas.gin --------------------------------------------------------------------------------