Skip to content

Commit

Permalink
Issue with _init_.py files fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ALebrun-108 committed Aug 9, 2021
1 parent 90cf2bf commit 4c6ab12
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions boxsers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from ramanbox.machine_learning import SpectroGmixture, SpectroKmeans, SpectroRF, SpectroSVM, \
from boxsers.machine_learning import SpectroGmixture, SpectroKmeans, SpectroRF, SpectroSVM, \
SpectroCNN, SpectroLDA
from ramanbox.data_augmentation import aug_mixup, aug_xshift, aug_noise, aug_multiplier, aug_linslope, aug_offset
from ramanbox.dimension_reduction import SpectroPCA, SpectroFA, SpectroICA
from ramanbox.preprocessing import spectral_normalization, spline_interpolation, baseline_subtraction,\
from boxsers.data_augmentation import aug_mixup, aug_xshift, aug_noise, aug_multiplier, aug_linslope, aug_offset
from boxsers.dimension_reduction import SpectroPCA, SpectroFA, SpectroICA
from boxsers.preprocessing import spectral_normalization, spline_interpolation, baseline_subtraction,\
spectral_cut, savgol_smoothing, median_filter
from ramanbox.useful_features import data_split, database_creator, distribution_plot, load_rruff, \
from boxsers.useful_features import data_split, database_creator, distribution_plot, load_rruff, \
ramanshift_converter, wavelength_converter, import_sp
from ramanbox.visualization import random_plot, spectro_plot, class_plot
from boxsers.visualization import random_plot, spectro_plot, class_plot
6 changes: 3 additions & 3 deletions boxsers/machine_learning/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from ramanbox.machine_learning.classifier import SpectroRF, SpectroSVM, SpectroLDA
from ramanbox.machine_learning.neural_networks import SpectroCNN
from ramanbox.machine_learning.unsupervised_models import SpectroGmixture, SpectroKmeans
from boxsers.machine_learning.classifier import SpectroRF, SpectroSVM, SpectroLDA
from boxsers.machine_learning.neural_networks import SpectroCNN
from boxsers.machine_learning.unsupervised_models import SpectroGmixture, SpectroKmeans
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'tensorflow'],
python_requires='>=3',
# *strongly* suggested for sharing
version='0.1.0',
version='0.1.1',
# The license can be anything you like
license='MIT',
description='Provides a full range of functionality to process and analyze vibrational spectra.',
Expand Down

0 comments on commit 4c6ab12

Please sign in to comment.