- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am running a python script which imports and uses these libraries:
pandas, keras, sklearn, numpy, math, matplotlib
It throws the following error:
OMP: Error #15: Initializing libiomp5.so, but found libiomp5.so already initialized.
OMP: Hint: This means that multiple copies of the OpenMP runtime have been linked into the program. That is dangerous, since it can degrade performance or cause incorrect results. The best thing to do is to ensure that only a single OpenMP runtime is linked into the process, e.g. by avoiding static linking of the OpenMP runtime in any library. As an unsafe, unsupported, undocumented workaround you can set the environment variable KMP_DUPLICATE_LIB_OK=TRUE to allow the program to continue to execute, but that may cause crashes or silently produce incorrect results. For more information, please see http://www.intel.com/software/products/support/.
Since my user code is not explicitly calling any OpenMP library, I wonder if you could help me find out which libraries may be causing this and how to solve it.
- Tags:
- Run
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello Surya,
I am new to conda, but I know that some packages were installed with conda in the environment I am using.
Also, I may have narrowed down the issue while trying to give you a script and data. It can be reproduced with the script from this tutorial: https://machinelearningmastery.com/stateful-stateless-lstm-time-series-forecasting-python/ and a different data set. Under "A vs A test" section you will find the script needed to reproduce this issue. I will attach the CSV files.
I replaced the run() method from the original tutorial with these two:
def run():
# load dataset
series = read_csv('sample_timeseries.csv', header=0).head(11000)
# experiment
repeats = 1
results = DataFrame()
# run experiment
results['results'] = experiment(repeats, series)
# summarize results
print(results.describe())
# save results
results.to_csv('experiment_stateful.csv', index=False)
def run2():
# load dataset
data = read_csv('sample_raw.csv', header=0).head(11000)
series = DataFrame()
series['timeseries'] = data['var1'] / data['var2']
# experiment
repeats = 1
results = DataFrame()
# run experiment
results['results'] = experiment(repeats, series)
# summarize results
print(results.describe())
# save results
results.to_csv('experiment150_stateful.csv', index=False)
# entry point
#run()
run2()
run2() will fail and run() will not. The difference is the division operation to create the 'series' data frame.
Also, lines 3 and 18 use method "head". I did this to get the script running faster because the data set has more than 100,000 samples. I noticed that for smaller values (I tried 200), run2() will not fail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Surya,
I followed your instructions (I assumed I had to use conda to install the missing packages) but I still see the error. These are the command line inputs I used:
conda create -n experiment -c intel python=3.6
source activate experiment
conda install pandas
conda install scikit-learn
conda install tensorflow
conda install pyyaml
python tutorial.py
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page