├── .gitignore ├── 24.md ├── 25.md ├── LICENSE ├── README.md ├── __init__.py ├── agents └── __init__.py ├── gntr ├── 30-6 │ ├── To-choose-an-appropriate-anomaly-detection-technique,-determine-the-use-case,-type-of-data,.png │ ├── To-choose.png │ └── Top-20-IT-Services-Providers’-Historical-Market-Share-Ranking-Positionstarget.png ├── 31-12 │ ├── 2023_CTO_Survey_Insi_795633_ndx.pdf │ ├── 2024_Outlook_Presentation_Enterprise_IT_Spending_Forecast_for_Healthcare_and_Life_Sciences_804806.pptx │ ├── 783905_2024_Leadership_Vision_for_Technology_Innovation.pptx │ ├── AI_Prism_Presentation_for_Technology_Planning_and_Innovation.pptx │ ├── Business_Metrics_for_Software_Providers_2Q23_803782.pptx │ ├── Leadership_Vision_fo_783905_ndx.pdf │ ├── Market_Share_Analysi_795058_ndx.pdf │ ├── Tool_A_CTOs_Guide__791948_ndx.pdf │ ├── Tool_How_CTOs_and_CISOs_Can_Enable_a_Secure_Digital_Future_794265.pptx │ ├── Tool_How_CTOs_and_C_794265_ndx.pdf │ └── Tool_The_CTOs_Guide_to_CxO_Partnerships_How_CTOs_and_CDAOs_Can_Build_Collaborative_Relationships.pptx ├── 31-7 │ ├── AIDesignLLMs786734.pptx │ ├── AI_Design_Patterns_f_786734_ndx.pdf │ ├── Applying_AI_—_Indust_775825_ndx.pdf │ ├── Capture_AI_Value_Wit_788429_ndx.pdf │ ├── Data Interactive_ Compare Must-Have Technology Skills as Reported by Financial Services Leaders.pptx │ ├── Glossary_of_Terms_fo_791405_ndx.pdf │ ├── How_to_Pilot_Generat_797246_ndx.pdf │ ├── Hype_Cycle_for_Artif_791179_ndx.pdf │ └── Use_Generative_AI_to_766029_ndx.pdf ├── Artificial_Intellige_758933_ndx.pdf ├── Forecast_AI_Semicon_763796_ndx.pdf ├── How_Products_and_Ser_748302_ndx.pdf └── Leadership_Vision_fo_751788_ndx.pdf ├── platforms.md ├── ref-implementations.md ├── resources └── img │ ├── The-Hype-Cycle-for-Innovation-Management-Techniques-shows-AI-driven-innovation-and-data.png │ ├── The-difference-between-augmented-reality,-mixed-reality-and-virtual-reality--content.png │ ├── The-roadmap-for-data-driven-business-transformation-has-phases-of_-1--Selling-the-value,-2_-Envisioning,-3_-Assessment,-4_-Education,-5_-Embeddingcontent.png │ ├── Three-tabular-lists-showing-the-priority-focus-areas-CEOs-are-assigning-to-CFOs,-COOs-and-CHROscontent.png │ ├── av.PNG │ ├── av_dataset.PNG │ ├── av_e2e.PNG │ ├── deep_rl.PNG │ ├── drl.PNG │ ├── drl_adverse.PNG │ ├── drl_adverse1.PNG │ ├── drl_adverse2.PNG │ ├── drl_attacks.PNG │ ├── drl_defence.PNG │ ├── drl_scheme.PNG │ ├── graph.PNG │ ├── history.PNG │ ├── m.PNG │ ├── physics.PNG │ ├── rl.PNG │ ├── roots.PNG │ ├── sar.PNG │ └── sim2real.jpg ├── review-papers.md └── rl20.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/.gitignore -------------------------------------------------------------------------------- /24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/24.md -------------------------------------------------------------------------------- /25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/25.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /agents/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /gntr/30-6/To-choose-an-appropriate-anomaly-detection-technique,-determine-the-use-case,-type-of-data,.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/30-6/To-choose-an-appropriate-anomaly-detection-technique,-determine-the-use-case,-type-of-data,.png -------------------------------------------------------------------------------- /gntr/30-6/To-choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/30-6/To-choose.png -------------------------------------------------------------------------------- /gntr/30-6/Top-20-IT-Services-Providers’-Historical-Market-Share-Ranking-Positionstarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/30-6/Top-20-IT-Services-Providers’-Historical-Market-Share-Ranking-Positionstarget.png -------------------------------------------------------------------------------- /gntr/31-12/2023_CTO_Survey_Insi_795633_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/2023_CTO_Survey_Insi_795633_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-12/2024_Outlook_Presentation_Enterprise_IT_Spending_Forecast_for_Healthcare_and_Life_Sciences_804806.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/2024_Outlook_Presentation_Enterprise_IT_Spending_Forecast_for_Healthcare_and_Life_Sciences_804806.pptx -------------------------------------------------------------------------------- /gntr/31-12/783905_2024_Leadership_Vision_for_Technology_Innovation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/783905_2024_Leadership_Vision_for_Technology_Innovation.pptx -------------------------------------------------------------------------------- /gntr/31-12/AI_Prism_Presentation_for_Technology_Planning_and_Innovation.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/AI_Prism_Presentation_for_Technology_Planning_and_Innovation.pptx -------------------------------------------------------------------------------- /gntr/31-12/Business_Metrics_for_Software_Providers_2Q23_803782.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/Business_Metrics_for_Software_Providers_2Q23_803782.pptx -------------------------------------------------------------------------------- /gntr/31-12/Leadership_Vision_fo_783905_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/Leadership_Vision_fo_783905_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-12/Market_Share_Analysi_795058_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/Market_Share_Analysi_795058_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-12/Tool_A_CTOs_Guide__791948_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/Tool_A_CTOs_Guide__791948_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-12/Tool_How_CTOs_and_CISOs_Can_Enable_a_Secure_Digital_Future_794265.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/Tool_How_CTOs_and_CISOs_Can_Enable_a_Secure_Digital_Future_794265.pptx -------------------------------------------------------------------------------- /gntr/31-12/Tool_How_CTOs_and_C_794265_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/Tool_How_CTOs_and_C_794265_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-12/Tool_The_CTOs_Guide_to_CxO_Partnerships_How_CTOs_and_CDAOs_Can_Build_Collaborative_Relationships.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-12/Tool_The_CTOs_Guide_to_CxO_Partnerships_How_CTOs_and_CDAOs_Can_Build_Collaborative_Relationships.pptx -------------------------------------------------------------------------------- /gntr/31-7/AIDesignLLMs786734.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/AIDesignLLMs786734.pptx -------------------------------------------------------------------------------- /gntr/31-7/AI_Design_Patterns_f_786734_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/AI_Design_Patterns_f_786734_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-7/Applying_AI_—_Indust_775825_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/Applying_AI_—_Indust_775825_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-7/Capture_AI_Value_Wit_788429_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/Capture_AI_Value_Wit_788429_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-7/Data Interactive_ Compare Must-Have Technology Skills as Reported by Financial Services Leaders.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/Data Interactive_ Compare Must-Have Technology Skills as Reported by Financial Services Leaders.pptx -------------------------------------------------------------------------------- /gntr/31-7/Glossary_of_Terms_fo_791405_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/Glossary_of_Terms_fo_791405_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-7/How_to_Pilot_Generat_797246_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/How_to_Pilot_Generat_797246_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-7/Hype_Cycle_for_Artif_791179_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/Hype_Cycle_for_Artif_791179_ndx.pdf -------------------------------------------------------------------------------- /gntr/31-7/Use_Generative_AI_to_766029_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/31-7/Use_Generative_AI_to_766029_ndx.pdf -------------------------------------------------------------------------------- /gntr/Artificial_Intellige_758933_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/Artificial_Intellige_758933_ndx.pdf -------------------------------------------------------------------------------- /gntr/Forecast_AI_Semicon_763796_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/Forecast_AI_Semicon_763796_ndx.pdf -------------------------------------------------------------------------------- /gntr/How_Products_and_Ser_748302_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/How_Products_and_Ser_748302_ndx.pdf -------------------------------------------------------------------------------- /gntr/Leadership_Vision_fo_751788_ndx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/gntr/Leadership_Vision_fo_751788_ndx.pdf -------------------------------------------------------------------------------- /platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/platforms.md -------------------------------------------------------------------------------- /ref-implementations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/ref-implementations.md -------------------------------------------------------------------------------- /resources/img/The-Hype-Cycle-for-Innovation-Management-Techniques-shows-AI-driven-innovation-and-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/The-Hype-Cycle-for-Innovation-Management-Techniques-shows-AI-driven-innovation-and-data.png -------------------------------------------------------------------------------- /resources/img/The-difference-between-augmented-reality,-mixed-reality-and-virtual-reality--content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/The-difference-between-augmented-reality,-mixed-reality-and-virtual-reality--content.png -------------------------------------------------------------------------------- /resources/img/The-roadmap-for-data-driven-business-transformation-has-phases-of_-1--Selling-the-value,-2_-Envisioning,-3_-Assessment,-4_-Education,-5_-Embeddingcontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/The-roadmap-for-data-driven-business-transformation-has-phases-of_-1--Selling-the-value,-2_-Envisioning,-3_-Assessment,-4_-Education,-5_-Embeddingcontent.png -------------------------------------------------------------------------------- /resources/img/Three-tabular-lists-showing-the-priority-focus-areas-CEOs-are-assigning-to-CFOs,-COOs-and-CHROscontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/Three-tabular-lists-showing-the-priority-focus-areas-CEOs-are-assigning-to-CFOs,-COOs-and-CHROscontent.png -------------------------------------------------------------------------------- /resources/img/av.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/av.PNG -------------------------------------------------------------------------------- /resources/img/av_dataset.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/av_dataset.PNG -------------------------------------------------------------------------------- /resources/img/av_e2e.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/av_e2e.PNG -------------------------------------------------------------------------------- /resources/img/deep_rl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/deep_rl.PNG -------------------------------------------------------------------------------- /resources/img/drl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/drl.PNG -------------------------------------------------------------------------------- /resources/img/drl_adverse.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/drl_adverse.PNG -------------------------------------------------------------------------------- /resources/img/drl_adverse1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/drl_adverse1.PNG -------------------------------------------------------------------------------- /resources/img/drl_adverse2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/drl_adverse2.PNG -------------------------------------------------------------------------------- /resources/img/drl_attacks.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/drl_attacks.PNG -------------------------------------------------------------------------------- /resources/img/drl_defence.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/drl_defence.PNG -------------------------------------------------------------------------------- /resources/img/drl_scheme.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/drl_scheme.PNG -------------------------------------------------------------------------------- /resources/img/graph.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/graph.PNG -------------------------------------------------------------------------------- /resources/img/history.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/history.PNG -------------------------------------------------------------------------------- /resources/img/m.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/m.PNG -------------------------------------------------------------------------------- /resources/img/physics.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/physics.PNG -------------------------------------------------------------------------------- /resources/img/rl.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/rl.PNG -------------------------------------------------------------------------------- /resources/img/roots.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/roots.PNG -------------------------------------------------------------------------------- /resources/img/sar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/sar.PNG -------------------------------------------------------------------------------- /resources/img/sim2real.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/resources/img/sim2real.jpg -------------------------------------------------------------------------------- /review-papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/review-papers.md -------------------------------------------------------------------------------- /rl20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gopala-kr/DRL-Agents/HEAD/rl20.md --------------------------------------------------------------------------------