A service implemented for the workgroup project of the Data Mining and Machine Learning course of the Artificial Intelligence and Data Engineering Master Degree at University of Pisa.
- Project Documentation
- Training-set
- Training-set data distribution
- Final Test datasets
- Test datasets confusion matrices
- Weka test result buffers
Application designed and developed by Barigliano Lorenzo, Serao Gianluca.
A service for the workgroup tasks of the Large-Scale and Multi-Structured Databases course of the Artificial Intelligence and Data Engineering Master Degree at University of Pisa.
Application designed and developed by Barigliano Lorenzo, Gómez Marsha, Mazzini Matilde, Serao Gianluca.
Neo4j: Install the database in your computer and connect as localhost replacing username
and password
with yours:
driver = GraphDatabase.driver("bolt://localhost:7687", AuthTokens.basic("username", "password"));
MongoDB: Install the database in your computer and create the giar database with the users and the game collections as described in the Design document.
The connection string is set to localhost:
client = MongoClients.create("mongodb://localhost:27017/");
To run the sentiment analysis a Twitter API token is required. To load the token create a twitter4j.properties
file in the resources
folder. The file must contain the following lines:
http.useSSL=true
oauth.consumerKey = Twitter_API_Token
oauth.consumerSecret = Twitter_API_Token
oauth.accessToken = Twitter_API_Token
oauth.accessTokenSecret = Twitter_API_Token