Skip to content

Commit 1581f20

Browse files
committed
pytorch DeepIV WIP
Signed-off-by: Keith Battocchi <[email protected]>
1 parent ea98838 commit 1581f20

File tree

6 files changed

+610
-374
lines changed

6 files changed

+610
-374
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
kind: [except-customer-scenarios, customer-scenarios]
119119
include:
120120
- kind: "except-customer-scenarios"
121-
extras: "[tf,plt,ray]"
121+
extras: "[nn,plt,ray]"
122122
pattern: "(?!CustomerScenarios)"
123123
install_graphviz: true
124124
version: '3.8' # no supported version of tensorflow for 3.9
@@ -226,16 +226,16 @@ jobs:
226226
extras: ""
227227
- kind: other
228228
opts: '-m "cate_api and not ray" -n auto'
229-
extras: "[tf,plt]"
229+
extras: "[nn,plt]"
230230
- kind: dml
231231
opts: '-m "dml and not ray"'
232-
extras: "[tf,plt]"
232+
extras: "[nn,plt]"
233233
- kind: main
234234
opts: '-m "not (notebook or automl or dml or serial or cate_api or treatment_featurization or ray)" -n 2'
235-
extras: "[tf,plt,dowhy]"
235+
extras: "[nn,plt,dowhy]"
236236
- kind: treatment
237237
opts: '-m "treatment_featurization and not ray" -n auto'
238-
extras: "[tf,plt]"
238+
extras: "[nn,plt]"
239239
- kind: ray
240240
opts: '-m "ray"'
241241
extras: "[ray]"

econml/iv/nnet/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) PyWhy contributors. All rights reserved.
22
# Licensed under the MIT License.
33

4-
from ._deepiv import DeepIV
4+
from ._deepiv import DeepIV, MixtureOfGaussiansModule
55

6-
__all__ = ["DeepIV"]
6+
__all__ = ["DeepIV, MixtureOfGaussiansModule"]

0 commit comments

Comments
 (0)