Spaces:
Build error
Build error
Ashley Goluoglu
commited on
Commit
·
ca696d0
1
Parent(s):
37bfccc
changes to work on my computer
Browse files(pipfile.lock with joblib and Agg instead of TkAgg
- Pipfile.lock +0 -0
- idnns/__pycache__/__init__.cpython-311.pyc +0 -0
- idnns/information/__pycache__/__init__.cpython-311.pyc +0 -0
- idnns/information/__pycache__/entropy_estimators.cpython-311.pyc +0 -0
- idnns/information/__pycache__/information_process.cpython-311.pyc +0 -0
- idnns/information/__pycache__/information_utilities.cpython-311.pyc +0 -0
- idnns/information/__pycache__/mutual_info_estimation.cpython-311.pyc +0 -0
- idnns/information/__pycache__/mutual_information_calculation.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/__init__.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/information_network.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/model.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/models.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/network.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/network_paramters.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/ops.cpython-311.pyc +0 -0
- idnns/networks/__pycache__/utils.cpython-311.pyc +0 -0
- idnns/plots/__pycache__/__init__.cpython-311.pyc +0 -0
- idnns/plots/__pycache__/plot_figures.cpython-311.pyc +0 -0
- idnns/plots/__pycache__/utils.cpython-311.pyc +0 -0
- idnns/plots/plot_figures.py +2 -1
- idnns/plots/plot_gradients.py +2 -1
- idnns/plots/utils.py +2 -1
- jobs/net_sampleLen=1_nDistSmpls=1_layerSizes=10,7,5,4,3_nEpoch=8000_batch=512_nRepeats=1_nEpochInds=274_LastEpochsInds=7999_DataName=var_u_lr=0.0004/data.pickle +3 -0
Pipfile.lock
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
idnns/__pycache__/__init__.cpython-311.pyc
ADDED
Binary file (144 Bytes). View file
|
|
idnns/information/__pycache__/__init__.cpython-311.pyc
ADDED
Binary file (156 Bytes). View file
|
|
idnns/information/__pycache__/entropy_estimators.cpython-311.pyc
ADDED
Binary file (24.8 kB). View file
|
|
idnns/information/__pycache__/information_process.cpython-311.pyc
ADDED
Binary file (17.7 kB). View file
|
|
idnns/information/__pycache__/information_utilities.cpython-311.pyc
ADDED
Binary file (5.13 kB). View file
|
|
idnns/information/__pycache__/mutual_info_estimation.cpython-311.pyc
ADDED
Binary file (11 kB). View file
|
|
idnns/information/__pycache__/mutual_information_calculation.cpython-311.pyc
ADDED
Binary file (3.96 kB). View file
|
|
idnns/networks/__pycache__/__init__.cpython-311.pyc
ADDED
Binary file (153 Bytes). View file
|
|
idnns/networks/__pycache__/information_network.cpython-311.pyc
ADDED
Binary file (16.1 kB). View file
|
|
idnns/networks/__pycache__/model.cpython-311.pyc
ADDED
Binary file (14.4 kB). View file
|
|
idnns/networks/__pycache__/models.cpython-311.pyc
ADDED
Binary file (10.2 kB). View file
|
|
idnns/networks/__pycache__/network.cpython-311.pyc
ADDED
Binary file (11.6 kB). View file
|
|
idnns/networks/__pycache__/network_paramters.cpython-311.pyc
ADDED
Binary file (7.28 kB). View file
|
|
idnns/networks/__pycache__/ops.cpython-311.pyc
ADDED
Binary file (5.22 kB). View file
|
|
idnns/networks/__pycache__/utils.cpython-311.pyc
ADDED
Binary file (5.75 kB). View file
|
|
idnns/plots/__pycache__/__init__.cpython-311.pyc
ADDED
Binary file (150 Bytes). View file
|
|
idnns/plots/__pycache__/plot_figures.cpython-311.pyc
ADDED
Binary file (43.3 kB). View file
|
|
idnns/plots/__pycache__/utils.cpython-311.pyc
ADDED
Binary file (12.5 kB). View file
|
|
idnns/plots/plot_figures.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
"""Plot the networks in the information plane"""
|
2 |
import matplotlib
|
3 |
-
matplotlib.use("TkAgg")
|
|
|
4 |
import numpy as np
|
5 |
import _pickle as cPickle
|
6 |
# import cPickle
|
|
|
1 |
"""Plot the networks in the information plane"""
|
2 |
import matplotlib
|
3 |
+
# matplotlib.use("TkAgg")
|
4 |
+
matplotlib.use("Agg")
|
5 |
import numpy as np
|
6 |
import _pickle as cPickle
|
7 |
# import cPickle
|
idnns/plots/plot_gradients.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
'Calculate and plot the gradients (the mean and std of the mini-batch gradients) of the trained network'
|
2 |
import matplotlib
|
3 |
-
matplotlib.use("TkAgg")
|
|
|
4 |
import numpy as np
|
5 |
import idnns.plots.utils as plt_ut
|
6 |
import matplotlib.pyplot as plt
|
|
|
1 |
'Calculate and plot the gradients (the mean and std of the mini-batch gradients) of the trained network'
|
2 |
import matplotlib
|
3 |
+
# matplotlib.use("TkAgg")
|
4 |
+
matplotlib.use("Agg")
|
5 |
import numpy as np
|
6 |
import idnns.plots.utils as plt_ut
|
7 |
import matplotlib.pyplot as plt
|
idnns/plots/utils.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import matplotlib
|
2 |
|
3 |
-
matplotlib.use("TkAgg")
|
|
|
4 |
import scipy.io as sio
|
5 |
|
6 |
import matplotlib.pyplot as plt
|
|
|
1 |
import matplotlib
|
2 |
|
3 |
+
#matplotlib.use("TkAgg")
|
4 |
+
matplotlib.use("Agg")
|
5 |
import scipy.io as sio
|
6 |
|
7 |
import matplotlib.pyplot as plt
|
jobs/net_sampleLen=1_nDistSmpls=1_layerSizes=10,7,5,4,3_nEpoch=8000_batch=512_nRepeats=1_nEpochInds=274_LastEpochsInds=7999_DataName=var_u_lr=0.0004/data.pickle
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:acd43faa681305594637d45a682bab3ed2e7f432b0ba820478c68875d3cf01a8
|
3 |
+
size 201657820
|