KaiDMML / FakeNewsNet

This is a dataset for fake news detection research
1.11k stars 432 forks source link

How to see how many processes are running? #36

Closed myrainbowandsky closed 5 years ago

myrainbowandsky commented 5 years ago

I have set 28 pairs of keys in key jason file and 100 processes in configure jason file. The script is running. How to know the number of processes and keys running in fact? I am using Ubuntu 18.04 with python 3.6

SaschaStenger commented 5 years ago

Usually, if you call ps -fu your_user_name in the console, it will tell you, which processes you are currently running. Or if you are the only user on your machine ps -ef | grep python will show you all the python instances.

myrainbowandsky commented 5 years ago

It works. Thank you!