yum --setopt=tsflags=noscripts remove < packagename>
The
reference address: https://serverfault.com/questions/613256/yum-error-in-preun-scriptlet-when-removing-packages code>
yum --setopt=tsflags=noscripts remove < packagename>
reference address: https://serverfault.com/questions/613256/yum-error-in-preun-scriptlet-when-removing-packages code>

Take advice from others:
When dealing with big data in Python, the 16GB of memory started to report MemoryError before a quarter of the memory was used. Later, I learned that 32bit Python would report this error after using more than 2 gb of memory, but there were no other prompt messages. Decide to switch to 64bit Python.
originally installed 32bit Python because the official numpy and scipy versions only supported 32bit. Later, an unofficial version was found: http://www.lfd.uci.edu/~gohlke/ Python /#numpy
wheel file was installed: Fatal error in launcher: Python33\python.exe “” C:\Program Files (x86)\ python.exe” “C:\Program Files (x86)\ pipi.exe”
Find a solution on http://stackoverflow.com/questions/24627525/fatal-error-in-launcher-unable-to-create-process-using-c-program-files-x86:
python -m PIP install XXX
Python is prone to memory errors when dealing with large data sets, that is, running out of memory.
1. The original python data type takes up a lot of space, and does not have too many choices, the default is generally like 24 bytes, but in fact sometimes it does not need to be so big or so high precision, at this time you can use Float32, Float16 and so on in NumPY, in short, choose enough according to your own needs, this is several times of memory savings.
2. Python’s garbage collection mechanism is relatively lazy. Sometimes, variables in a for loop will not be collected when they are used up, and space will be opened up again in the next reinitialization.
3. In the case of sparse data, such as a large number of one Hot features in the training set, the dense data will be turned into sparse storage. Refer to the SPARSE module in SCIPY, where several data structures supporting sparse storage can be called directly. But notice that a centralized data structure requires at least two or three times the space in a dense data store. That means sparse arrays would take up even more space if they are half or less sparse. It only works if a lot of the data is sparse.
4. In essence, it is about checking whether there is something wrong with the way you organize your data, such as whether it can be one hot in each batch. In other words, don’t store all the things you need or don’t need in memory at one time.
— — — — — — — — — — — — — — — — — — — — —
the original: https://blog.csdn.net/yimingsilence/article/details/79717768
Reference: https://jingyan.baidu.com/article/a65957f434970a24e67f9be6.html
https://zhidao.baidu.com/question/2058013252876894707.html
Recommend interested can look at: https://blog.csdn.net/weixin_39750084/article/details/81501395
python -m ipykernel install --user
1
Get things done.
ORA-12801: error signaled in parallel query server string
Cause: A parallel query server reached an exception condition.
Action: Check the following error message for the cause, and consult your error manual for the appropriate action.
This explanation is too abstract, I don’t understand the specific reason, finally changed the parallelism to 8:
Select /*+parallel(t 8)*/count(1) from A is OK.
public class TestHuman {
public static void main(String[] args) {
system.out.println (” hello Word!!”) );
}
}
can execute javac hello. Java instruction code is ok, when executing Java hello, there is a problem, it should be the environment variable configuration, what is the problem…
After a long search, I found the CLASSPATH {%JAVA_HOME%\lib; %JAVA_HOME%\lib\tools.jar}, preceded by “.;” .
Why is it missing?Does not affect Eclipse but will affect the operation of CMD…
Eclipse will automatically configure packages, projects, and paths for us, so that’s fine,
CMD has to manually configure these paths by itself, adding “. “means the current path, so there is no need to write the path step by step.
And I at the beginning of the configuration, should not understand what the point here is, there is no configuration, almost make a joke, mutual encouragement ~ mutual encouragement ~


string str = ex.InnerException.InnerException.Message;
Turns out the mistake was
A conversion from the dateTime2 data type to the Datetime data type produces an out-of-scope value. The statement has terminated.
Adobe Audition — A solution that cannot be played
Problem description (Win10 & AMP; AU6)
Adobe Audition CS6 Audition(AU) audio editing, but found a little play button on the stuck flash back (Adobe Audition CS6 has stopped working).

ready to take a look at the hardware Settings

but found a new problem: the dot Settings reported an “MME device internal error” error.

The solution


You can see that the Settings are open as normal for

Audio can also play clips
normally
Be prepared to blog about a series of papers for your own convenience.
This is the first one
DEEP MULTI-SCALE VIDEO PREDICTION BEYOND MEAN SQUARE ERROR
In this paper, I mainly focus on the prediction generated by gan network
First of all, our input includes real pre-frame X, real pre-predicted frame Y, generator G, discriminator D
. When training the discriminator, we package the real X and Y as (X,Y)
. When training the generator, we package X and gaussian distribution Y ‘to get (X,G(X)) and use it as the training of
discriminator in the input
input discriminator
For real images, we define D(X,Y)=1 and
. For real images, we define D(X,G(X))=0

Lbce stands for cross entropy
Generator training
for generating images, let D(X,G(X))=1

Then the stochastic gradient descent method was used for training
Training network
generator, mapped to (m+n)*h*w-> (m+n)*h*w
discriminator, mapping to (m+n)*h*w-> [0, 1]
Experimental results:
data set: UCF101
1 frame and 2 frame prediction

1 frame and 8 frame prediction