The Experts below are selected from a list of 704841 Experts worldwide ranked by ideXlab platform

Aziz Abdul - One of the best experts on this subject based on the ideXlab platform.

  • Pegon as Indigenous and the Cultural Confrontation (18-19 century)
    'UIN Sunan Kalijaga Yogyakarta', 2019
    Co-Authors: - Choeroni, Madrah, Muna Yastuti, Aziz Abdul
    Abstract:

    This study is uncovering a Pegon script as a symbol of Islamic resistance in Java in the 18-19th century. The author argues that the emergence of Pegon Script based on primordial and political reasons because most of the Javanese people were still using symbols and beliefs previous. Therefore, syncretism is a theological fact of the conversion process is not yet complete culture in the Islamization of the Javanese people. Acculturation between Arabic letters and the Java language has become a barometer of local independence Islam in Java since centuries ago. The authors look at the elements of resistance of scholars in the use of the Pegon script. This situation described in the socio-historical context, which showed that the colonialism era was ongoing on Java in the eighteenth to the nineteenth century. While on the other hand, the wave of Islamic Puritanism also became a threat of local Islam. Thus, the Pegon script was a symbol of resistance to colonialism and Islamic exclusivism by the scholars and Javanese people. By the socio-historical approach, this study seeks to explore the symbolic meanings of resistances of Islam in Java by Pegon Script. Keywords: Pegon Script, Islamic Resistance, Colonialism

  • Pegon as Indigenous and the Cultural Confrontation (18-19 century
    'UIN Sunan Kalijaga Yogyakarta', 2019
    Co-Authors: Choeroni Choeroni, Madrah, Muna Yastuti, Aziz Abdul
    Abstract:

    This study is uncovering a Pegon script as a symbol of Islamic resistance in Java in the 18-19th century. The author argues that the emergence of Pegon Script based on primordial and political reasons because most of the Javanese people were still using symbols and beliefs previous. Therefore, syncretism is a theological fact of the conversion process is not yet complete culture in the Islamization of the Javanese people. Acculturation between Arabic letters and the Java language has become a barometer of local independence Islam in Java since centuries ago. The authors look at the elements of resistance of scholars in the use of the Pegon script. This situation described in the socio-historical context, which showed that the colonialism era was ongoing on Java in the eighteenth to the nineteenth century. While on the other hand, the wave of Islamic Puritanism also became a threat of local Islam. Thus, the Pegon script was a symbol of resistance to colonialism and Islamic exclusivism by the scholars and Javanese people. By the socio-historical approach, this study seeks to explore the symbolic meanings of resistances of Islam in Java by Pegon Script

Gómez Vicenç - One of the best experts on this subject based on the ideXlab platform.

  • Convex inference for community discovery in signed networks (European Parliament Voting Dataset)
    2018
    Co-Authors: Santamaria Guillermo, Gómez Vicenç
    Abstract:

    This repository contains the necessary tools to reproduce the experiments of the paper G. Santatmaría, V. Gómez (2015) Convex inference for community discovery in signed networks. NIPS 2015 Workshop: Networks in the Social and Information Sciences The method first maps the MAP problem on the Potts model as a hinge-loss minimization problem (see the paper for details). To run the code you need to install psl (included here) and if you want to additionally compare with other inference methods, such as max prod belief propagation or junction tree, you need to install the libDAI library (also included here) The directory europeanCongressData/ (~500 Mb) contains the votings of the EU parlament, including 300 votings events from the actual term, from May 2014 to June 2015, obtained from http://www.votewatch.eu/ data/ : json files with the european votes network.net : signed network built from the votes political_parties.txt : "ground truth" party community_results/ : results for different number of communities and initial vertices dataComputations.py : used to build the signed network dataProcessing.py : used to build the signed network We would appreciate if you cite the paper after using the data or the code. DEPENDENCIES The code has been tested in Linux Mint 18.1 Serena and Ubuntu 14.04 - For PSL library, you need to have     java 1.8     you may need to export JAVAHOME='/usr/lib/jvm/YOURJAVA1.8FOLDER'     maven 3.x - For libDAI you will need:     make doxygen graphviz libboost-dev libboost-graph-dev libboost-program-options-dev libboost-test-dev libgmp-dev cimg-dev libgmp-dev CODE TO RUN THE FOLLOWING EXPERIMENTS: Compare the performance in terms of structural balance of max prod bp and our method against an exact inference method (junction tree), with different number of communities INSTALL To install the experiments you have to follow the next steps: 1 Build the libdai library by doing: make -B on the folder (libdai) 2 Generate the class path of the groovy project: mvn clean install mvn dependency:build-classpath-Dmdep.outputFile=classpath.out on the psl root folder (You need to have java 1.8 and maven 3.x installed) 3 Grant exec permissions to the run.sh script Options The main python file to run the experiments is evaluatebalanceon_sn.py. It accepts the following parameters: 1 (Int) Nodes of the graph. In order to run the junction tree we recommend to set this paremeter to 150 or less 2 (Int) The number of underlying communities 3 (Float) The maximum amount of unbalance for the experiments. We recommend 0.45 4 (Bool) Whether to use an heuristic to find the initial node for each community or to use directly random nodes from the ground truth communities. This heuristic looks alternatively for the nodes with highest negative degree and highest positive degree. For the case when the number of communities is equal to 2 (Ising Model), the heuristic is used by default. An example of execution would be: python evaluate_balance_on_sn.py 120 3 0.45 True True The results of the experiments are save in the folder results/ Scripts The main script of the hinge-loss method can be found in the folder psl/psl-example/src/main/java/edu/umd/cs/example/PottsCommunities.groovy Authors: Guillermo Santamaria & Vicenc Gomez Mar 5, 2017 For further questions, please contact vicen.gomez@upf.edu

  • Convex inference for community discovery in signed networks (European Parliament Voting Dataset)
    2017
    Co-Authors: Santamaria Guillermo, Gómez Vicenç
    Abstract:

    This repository contains the necessary tools to reproduce the experiments of the paper: G. Santatmaría, V. Gómez (2015) Convex inference for community discovery in signed networks. NIPS 2015 Workshop: Networks in the Social and Information Sciences ------The method first maps the MAP problem on the Potts model as a hinge-loss minimization problem (see the paper for details). To run the code you need to install psl (included here) and if you want to additionally compare with other inference methods, such as max prod belief propagation or junction tree, you need to install the libDAI library (also included here) --------The directory europeanCongressData/ (~500 Mb) contains the votings of the EU parlament, including 300 votings events from the actual term, from May 2014 to June 2015, obtained from http://www.votewatch.eu/ * data/ : json files with the european votes * network.net : signed network built from the votes * political_parties.txt : "ground truth" party * community_results/ : results for different number of communities and initial vertices * dataComputations.py : used to build the signed network * dataProcessing.py : used to build the signed network We would appreciate if you cite the paper after using the data or the code. --------DEPENDENCIES-------- The code has been tested in Linux Mint 18.1 Serena and Ubuntu 14.04 - For PSL library, you need to have java 1.8 you may need to export JAVAHOME='/usr/lib/jvm/YOURJAVA1.8FOLDER' maven 3.x - For libDAI you will need: make doxygen graphviz libboost-dev libboost-graph-dev libboost-program-options-dev libboost-test-dev libgmp-dev cimg-dev libgmp-dev --------CODE TO RUN THE FOLLOWING EXPERIMENTS:-------- Compare the performance in terms of structural balance of max prod bp and our method against an exact inference method (junction tree), with different number of communities --------INSTALL-------- To install the experiments you have to follow the next steps: 1 Build the libdai library by doing: make -B on the folder (libdai) 2 Generate the class path of the groovy project: mvn clean install mvn dependency:build-classpath-Dmdep.outputFile=classpath.out on the psl root folder (You need to have java 1.8 and maven 3.x installed) 3 Grant exec permissions to the run.sh script --------Options-------- The main python file to run the experiments is evaluatebalanceon_sn.py. It accepts the following parameters: 1 (Int) Nodes of the graph. In order to run the junction tree we recommend to set this paremeter to 150 or less 2 (Int) The number of underlying communities 3 (Float) The maximum amount of unbalance for the experiments. We recommend 0.45 4 (Bool) Whether to use an heuristic to find the initial node for each community or to use directly random nodes from the ground truth communities. This heuristic looks alternatively for the nodes with highest negative degree and highest positive degree. For the case when the number of communities is equal to 2 (Ising Model), the heuristic is used by default. An example of execution would be: python evaluate_balance_on_sn.py 120 3 0.45 True True The results of the experiments are save in the folder results/ Scripts The main script of the hinge-loss method can be found in the folder psl/psl-example/src/main/java/edu/umd/cs/example/PottsCommunities.groovy --------For further questions, please contact vicen.gomez@upf.ed

Kris Gevaert - One of the best experts on this subject based on the ideXlab platform.

  • mascotdatfile an open source library to fully parse and analyse mascot ms ms search results
    Proteomics, 2007
    Co-Authors: Kenny Helsens, Lennart Martens, Joel Vandekerckhove, Kris Gevaert
    Abstract:

    MS-based protein identification is an important part of both gel-based and gel-free proteome studies. The MASCOT search engine (http://www.matrixscience.com) provides one of the most popular automated algorithms for this task. Here we present an open-source software library written in Java that parses raw MASCOT results into an easily accessible and fully functional object model (http://genesis.ugent.be/MascotDatfile). Several scripts based on this library are provided as examples, allowing direct automation of important routine tasks involved in processing peptide identifications.

Lennart Martens - One of the best experts on this subject based on the ideXlab platform.

  • mascotdatfile an open source library to fully parse and analyse mascot ms ms search results
    Proteomics, 2007
    Co-Authors: Kenny Helsens, Lennart Martens, Joel Vandekerckhove, Kris Gevaert
    Abstract:

    MS-based protein identification is an important part of both gel-based and gel-free proteome studies. The MASCOT search engine (http://www.matrixscience.com) provides one of the most popular automated algorithms for this task. Here we present an open-source software library written in Java that parses raw MASCOT results into an easily accessible and fully functional object model (http://genesis.ugent.be/MascotDatfile). Several scripts based on this library are provided as examples, allowing direct automation of important routine tasks involved in processing peptide identifications.

Madrah, Muna Yastuti - One of the best experts on this subject based on the ideXlab platform.

  • Pegon as Indigenous and the Cultural Confrontation (18-19 century)
    'UIN Sunan Kalijaga Yogyakarta', 2019
    Co-Authors: - Choeroni, Madrah, Muna Yastuti, Aziz Abdul
    Abstract:

    This study is uncovering a Pegon script as a symbol of Islamic resistance in Java in the 18-19th century. The author argues that the emergence of Pegon Script based on primordial and political reasons because most of the Javanese people were still using symbols and beliefs previous. Therefore, syncretism is a theological fact of the conversion process is not yet complete culture in the Islamization of the Javanese people. Acculturation between Arabic letters and the Java language has become a barometer of local independence Islam in Java since centuries ago. The authors look at the elements of resistance of scholars in the use of the Pegon script. This situation described in the socio-historical context, which showed that the colonialism era was ongoing on Java in the eighteenth to the nineteenth century. While on the other hand, the wave of Islamic Puritanism also became a threat of local Islam. Thus, the Pegon script was a symbol of resistance to colonialism and Islamic exclusivism by the scholars and Javanese people. By the socio-historical approach, this study seeks to explore the symbolic meanings of resistances of Islam in Java by Pegon Script. Keywords: Pegon Script, Islamic Resistance, Colonialism

  • Pegon as Indigenous and the Cultural Confrontation (18-19 century
    'UIN Sunan Kalijaga Yogyakarta', 2019
    Co-Authors: Choeroni Choeroni, Madrah, Muna Yastuti, Aziz Abdul
    Abstract:

    This study is uncovering a Pegon script as a symbol of Islamic resistance in Java in the 18-19th century. The author argues that the emergence of Pegon Script based on primordial and political reasons because most of the Javanese people were still using symbols and beliefs previous. Therefore, syncretism is a theological fact of the conversion process is not yet complete culture in the Islamization of the Javanese people. Acculturation between Arabic letters and the Java language has become a barometer of local independence Islam in Java since centuries ago. The authors look at the elements of resistance of scholars in the use of the Pegon script. This situation described in the socio-historical context, which showed that the colonialism era was ongoing on Java in the eighteenth to the nineteenth century. While on the other hand, the wave of Islamic Puritanism also became a threat of local Islam. Thus, the Pegon script was a symbol of resistance to colonialism and Islamic exclusivism by the scholars and Javanese people. By the socio-historical approach, this study seeks to explore the symbolic meanings of resistances of Islam in Java by Pegon Script