Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

45
LINES

< > BotCompany Repo | #1020098 // Unpickle Sort-of-CLEVR Dataset [basically OK]

JavaX source code (desktop) [tags: use-pretranspiled] - run with: x30.jar

Download Jar. Uses 36155K of libraries. Click here for Pure Java version (10127L/74K).

!7

lib 1400166 // jython 2.7

import org.python.core.*;
import org.python.modules.cPickle;

static LS colors = splitAtComma("red, blue, green, orange, yellow, gray");

p-exp {
  File f = userDir("dev/Relational_Network_Tensorflow-master/data/sort-of-clevr.100-10.pickle");

  PyFile pyFile = new(bufferedInputStream(f));
  O o = cPickle.load(pyFile);
  print("Loaded: " + className(o));
  
  L trainAndTest = cast o;
  for (L x : (L<L>) trainAndTest) {
    print(l(x) + " examples");
    L entry = cast first(x);
    print(l(entry));
    L<LL<Double>> img = (L) entry.get(0);
    L<L> relations = cast entry.get(1);
    L<L> norelations = cast entry.get(2);
    //print("img: " + sfu(img)); // img is a LLL<Double>
    showImage(rgbImageFromLLLDouble255((L) img));
    LL<Double> relQuestions = (L) first(relations);
    L<Double> relAnswers = (L) second(relations);
    LL<Double> norelQuestions = (L) first(norelations);
    L<Int> norelAnswers = (L) second(norelations);
    print("relations:" + sfu(relations));
    print("norelations:" + sfu(norelations));
    for i over norelQuestions: {
      L<Double> q = norelQuestions.get(i);
      Int a = norelAnswers.get(i);
      S color = get(colors, indexOf(q, 1.0));
      S subtype = get(
        ll("query shape->rectangle/circle",
           "query horizontal position->yes/no",
           "query vertical position->yes/no"),
        indexOf(q, 8, 1.0)-8);
      print("norel: " + q + " => " + a + ". color: " + color + ", subtype: " + subtype);
    }
  }
}

download  show line numbers  debug dex  old transpilations   

Travelled to 8 computer(s): bhatertpkbcr, cfunsshuasjs, gwrvuhgaqvyk, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1020098
Snippet name: Unpickle Sort-of-CLEVR Dataset [basically OK]
Eternal ID of this version: #1020098/26
Text MD5: e83b8b3ae7c8020ff8586a52403a3ad0
Transpilation MD5: 3b1821df3aa6b2e06ac3805e18fc5d27
Author: stefan
Category: javax / python
Type: JavaX source code (desktop)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-12-07 16:16:16
Source code size: 1557 bytes / 45 lines
Pitched / IR pitched: No / No
Views / Downloads: 269 / 670
Version history: 25 change(s)
Referenced in: [show references]