Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename functions folder to partition_decode #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.pythonPath": "/mnt/ssd3/ronan/miniconda3/envs/proglearn/bin/python"
}
4 changes: 2 additions & 2 deletions notebooks/DN_notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"sys.path.append(\"../\")\n",
"\n",
"import numpy as np\n",
"from functions import run_dn_experiments, read_dn_results, run_internal_rep_experiment, plot_dn_results "
"from partition_decode import run_dn_experiments, read_dn_results, run_internal_rep_experiment, plot_dn_results "
]
},
{
Expand Down Expand Up @@ -177,4 +177,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}
4 changes: 2 additions & 2 deletions notebooks/RF_notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"\n",
"sys.path.append(\"../\")\n",
"\n",
"from functions import run_df_experiment, read_df_results, plot_df_results"
"from partition_decode import run_df_experiment, read_df_results, plot_df_results"
]
},
{
Expand Down Expand Up @@ -177,4 +177,4 @@
},
"nbformat": 4,
"nbformat_minor": 1
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Find mgc version.
PROJECT_PATH = os.path.dirname(os.path.abspath(__file__))
for line in open(os.path.join(PROJECT_PATH, "functions", "__init__.py")):
for line in open(os.path.join(PROJECT_PATH, "partition_decode", "__init__.py")):
if line.startswith("__version__ = "):
VERSION = line.strip().split()[2][1:-1]

Expand Down