CoreNLP Add Relations and other options? - nlp

I am using CoreNLP Built in API server to process some text for a small project.
using the demo I can see that they provide multiple options such as "relations", "wikipedia entities", "sentiment" and others.
However, After downloading coreNLP from the official website, Running the server on my local machine using the command: java -d64 -mx8g -cp "*" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -timeout 500000, I don't have the mentioned options. All i have is what's visible in this image:
Unfortunately, I am not able to figure out how to add all the options available online to my local machine..
Can anyone please shed some light about what am I missing? How can i add the options? especially relations?
Thanks

These are recent additions that are in the GitHub version of the code, but not in the official 3.6.0 release.

Related

How do I build Cassandra from GitHub source?

I found this repo on github: https://github.com/apache/cassandra
And I would like to import it into intellij and build it in order to run some code locally that I want to build on top of this github code. But there are no instructions for building it.
Where are the instructions?
Thank you for taking interest in writing Cassandra code.
The instructions for building Cassandra from source code including IDE integration is documented in the Contributing to Cassandra page on the official Apache Cassandra website. There are instructions for IntelliJ, NetBeans and Eclipse.
It's not as straightforward as we would like because everyone's laptop/desktop is different so I would recommend you join the ASF Slack to get help in real-time from other Cassandra contributors in the #cassandra-dev channel. For details, see the Community section of the Cassandra website. Cheers!
👉 Please support the Apache Cassandra community by hovering over cassandra then click on the Watch tag button. 🙏 Thanks!

Airflow 2.0 Docker setup

Recently been trying to learn Airflow, but a majority of resources online depended on this repo https://github.com/puckel/docker-airflow which unfortunately has been removed.
I am not familiar with docker so I'm just trying to set up locally and play around with Airflow. I'm on a windows setup and have already gotten docker working on my computer. Does Airflow have a quick-set-up file for a docker-compose? Or is there any other resources I can look at? Thanks.
Its a duplicate question.
Use official official docker-compose.yml see here
I recently added a quick start guides to the official Apache Airflow documentation. Unfortunately, this guide has not been released yet. It will be released in Airflow 2.0.1.
For now, you can use the development version, and when a stable version is released it will be very easy for you to migrate. I don't expect any major changes to our docker-compose.yaml files.
http://apache-airflow-docs.s3-website.eu-central-1.amazonaws.com/docs/apache-airflow/latest/start/docker.html

Check if nw.js application is running on built version (prod) or development

I am using grunt to build my application, I want to use different configurations when the application is being run from built version and when I run it as a developer using simply nw.
Is there any such option which helps distinguish this behaviour?
You will need to set the desired configuration IN the processed source. There are many ways to accomplish this. Check out this blog post for some ideas http://addyosmani.com/blog/environment-specific-builds-with-grunt-gulp-or-broccoli/

how to add scaffolds in virtual environment. I want to add Akhet scaffold into my virtual environment?

after all googling and searching i came here...
I want to use Akhet http://pypi.python.org/pypi/Akhet scaffold and i want to continue with that to develop my application.
Now the problem is that i don't have any idea to include any scaffold in my virtual environment.
I have tried with the following lines
env/bin/pcreate -s akhet pythonakhen
Since i don't have akhet in my scaffold list the line given me an error
Unavailable scaffolds: ['akhet'].
please help me to add any scaffalod in my virtual environment so that i can us them to generate the skeleton of the application.
Forget Akhet. The current version 2.0 does not provide a scaffold anymore and is rather outdated. Just follow the official pyramid documentation, there is plenty of stuff builtin if you rely on the scaffolds shipped with pyramid 1.5 and the way it works in year 2014.
Akhet scaffold is gone
if you want to provide Akhet scaffolding in future :-)
These links are your friends
http://docs.pylonsproject.org/projects/pyramid/en/latest/index.html#getting-started

wamp like environment for node.js

I'm looking to do some learning with node.js, but I'm having difficulty getting the basic environment setup correctly. I was hoping someone could point me toward a prebuilt stack like WAMP or at least some thorough instructions on building one.
I'll looking for node.js with mysql (or similar sql implementation), I don't need anything more than a learning environment, so things like security are not currently a concern. If I get php on the same stack, that's an optional bonus.
I have some experience with servers and the command line, but I'm not an expert.
you can use this software its for windows only http://winginx.com/en/ it has nodejs and mongoDB
For learning Node Js ,
As i see you in windows , i would recommend you to go through these steps
Step 1 ,
Download and Install the latest version of Sublime Text 3.Please use the latest version only#Build 3065
Step 2 ,
Set Sublime text to use it in command line #"subl / subl.exe"
Step 3 ,
Download Cygwin So that you can use Linux Commands on windows
Step 4 ,
Watch this video(https://www.youtube.com/embed/hh-V6el8Oxk)as it will help you to install cygwin , download important packages , and set it to the path of environment variables
Step 5 ,
Download Node.js
Step 6 ,
Watch an Introduction by Ryan Dahl , the nodejs creator
Step 7 ,
Watch this Video Tutorial Playlist for learning Node . Please note that in this tutorial he is helping on how to install node.js on linux , windows and mac each respectively but gonna use mac for teaching and
will use emacs editor (emacs) or Vim editor (vim) but as you on windows
you would be using Sublime Text 3 (subl) on the command line !
I Hope thats help , lil tough to see from outside but actually not #personal experience
Else , If you like my guidance , please vote me , thanks !
The solutions like WAMP, XAMPP, ... have been created to simplify the configuration activity of a full stack Web Server (install and Configure Apache from Scratch is not an easy task).
Setting up a nodejs web server is so easy that nobody felt the need of creating full-stack solutions.
So my advice is to start from the easiest tutorial you find online: I found very useful this one http://cwbuecheler.com/web/tutorials/2013/node-express-mongo/ which illustrates the steps to build a web server with nodejs+Express+mongodb.
And yes, I suggest you to work with mongodb unless you need a db for a strong relational model.

Resources