Advertisement
whoeverest

Orange NotImplemented features

Mar 29th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 30.80 KB | None | 0 0
  1. Searching 3771 files for "NotImplemented" (case sensitive)
  2.  
  3. /orange/Orange/OrangeWidgets/OWClustering.py:
  4.   856          self.span = span
  5.   857          
  6.   858:         raise NotImplementedError
  7.   859          
  8.   860          
  9.   ...
  10.   897          self.setRoot(root)
  11.   898          
  12.   899:         raise NotImplementedError
  13.   900          
  14.   901      def set_root(self, root):
  15.  
  16. /orange/Orange/OrangeWidgets/OWGUI.py:
  17.  1945  def _toPyObject(variant):
  18.  1946      val = variant.toPyObject()
  19.  1947:     if isinstance(val, type(NotImplemented)):
  20.  1948          # PyQt 4.4 converts python int, floats ... to C types and
  21.  1949          # cannot convert them back again and returns an exception instance.
  22.  
  23. /orange/Orange/OrangeWidgets/Classify/OWCN2RulesViewer.py:
  24.    17  def _toPyObject(variant):
  25.    18      val = variant.toPyObject()
  26.    19:     if isinstance(val, type(NotImplemented)): # PyQt 4.4 converts python int, floats ... to C types
  27.    20          qtype = variant.type()
  28.    21          if qtype == QVariant.Double:
  29.  
  30. /orange/Orange/OrangeWidgets/Data/OWRank.py:
  31.    15  def _toPyObject(variant):
  32.    16      val = variant.toPyObject()
  33.    17:     if isinstance(val, type(NotImplemented)):
  34.    18          # PyQt 4.4 converts python int, floats ... to C types and
  35.    19          # cannot convert them back again and returns an exception instance.
  36.  
  37. /orange/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py:
  38.   824          
  39.   825      def setComponentPlane(self, *args):
  40.   826:         raise NotImplemented
  41.   827      
  42.   828  baseColor = QColor(20,20,20)
  43.  
  44. /orange/Orange/classification/logreg.py:
  45.   194          # classification not implemented yet. For now its use is only to
  46.   195          # provide regression coefficients and its statistics
  47.   196:         raise NotImplemented
  48.   197      
  49.   198  
  50.  
  51. /orange/Orange/clustering/kmeans.py:
  52.   181  def score_conditional_entropy(km):
  53.   182      """UNIMPLEMENTED cluster quality measured by conditional entropy"""
  54.   183:     raise NotImplemented
  55.   184  
  56.   185  def score_within_cluster_distance(km):
  57.   186      """UNIMPLEMENTED weighted average within-cluster pairwise distance"""
  58.   187:     raise NotImplemented
  59.   188  
  60.   189  score_within_cluster_distance.minimize = True
  61.  
  62. /orange/Orange/data/io.py:
  63.   693              elif var_t == variable.Python:
  64.   694                  # Python variables are not supported yet
  65.   695:                 raise NotImplementedError()
  66.   696          elif var_t is None:
  67.   697              # Unknown variable type, to be deduced at the end
  68.  
  69. /orange/Orange/evaluation/scoring.py:
  70.   225                          scores[i][tex.iteration_number] += (float(cls) - ai)**2
  71.   226          else: # unweighted != 0
  72.   227:             raise NotImplementedError, "weighted error scores with SE not implemented yet"
  73.   228  
  74.   229          if argkw.get("norm-abs") or argkw.get("norm-sqr"):
  75.  
  76. /orange/Orange/evaluation/testing.py:
  77.   186  
  78.   187      def load_from_files(self, learners, filename):
  79.   188:         raise NotImplementedError("This feature is no longer supported.")
  80.   189  
  81.   190      def save_to_files(self, learners, filename):
  82.   191:         raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.")
  83.   192  
  84.   193      def create_tested_example(self, fold, example):
  85.  
  86. /orange/Orange/misc/collections.py:
  87.    95          
  88.    96      def update(self, mapping):
  89.    97:         raise NotImplementedError
  90.    98  
  91.    99      def __len__(self):
  92.   ...
  93.   111      
  94.   112      def __delitem__(self, key):
  95.   113:         raise NotImplementedError
  96.   114      
  97.   115      def clear(self):
  98.   116:         raise NotImplementedError
  99.   117      
  100.   118      def todict(self):
  101.  
  102. /orange/Orange/misc/render.py:
  103.   217      
  104.   218      def draw_line(self, sx, sy, ex, ey, **kwargs):
  105.   219:         raise NotImplementedError
  106.   220      
  107.   221      def draw_lines(self, points, **kwargs):
  108.   222:         raise NotImplementedError
  109.   223      
  110.   224      def draw_rect(self, x, y, w, h, **kwargs):
  111.   225:         raise NotImplementedError
  112.   226      
  113.   227      def draw_polygon(self, vertices, **kwargs):
  114.   228:         raise NotImplementedError
  115.   229  
  116.   230      def draw_arch(self, something, **kwargs):
  117.   231:         raise NotImplementedError
  118.   232      
  119.   233      def draw_text(self, x, y, text, **kwargs):
  120.   234:         raise NotImplementedError
  121.   235      
  122.   236      def string_size_hint(self, text, **kwargs):
  123.   ...
  124.   251              
  125.   252      def save(self, file):
  126.   253:         raise NotImplementedError
  127.   254      
  128.   255      def close(self, file):
  129.  
  130. /orange/Orange/orng/orngMisc.py:
  131.   544      
  132.   545      def draw_line(self, sx, sy, ex, ey, **kwargs):
  133.   546:         raise NotImplemented
  134.   547      
  135.   548      def draw_lines(self, points, **kwargs):
  136.   549:         raise NotImplemented
  137.   550      
  138.   551      def draw_rect(self, x, y, w, h, **kwargs):
  139.   552:         raise NotImplemented
  140.   553      
  141.   554      def draw_polygon(self, vertices, **kwargs):
  142.   555:         raise NotImplemented
  143.   556  
  144.   557      def draw_arch(self, something, **kwargs):
  145.   558:         raise NotImplemented
  146.   559      
  147.   560      def draw_text(self, x, y, text, **kwargs):
  148.   561:         raise NotImplemented
  149.   562      
  150.   563      def string_size_hint(self, text, **kwargs):
  151.   ...
  152.   578              
  153.   579      def save(self):
  154.   580:         raise NotImplemented
  155.   581      
  156.   582      def close(self, file):
  157.  
  158. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWClustering.py:
  159.   856          self.span = span
  160.   857          
  161.   858:         raise NotImplementedError
  162.   859          
  163.   860          
  164.   ...
  165.   897          self.setRoot(root)
  166.   898          
  167.   899:         raise NotImplementedError
  168.   900          
  169.   901      def set_root(self, root):
  170.  
  171. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWGUI.py:
  172.  1945  def _toPyObject(variant):
  173.  1946      val = variant.toPyObject()
  174.  1947:     if isinstance(val, type(NotImplemented)):
  175.  1948          # PyQt 4.4 converts python int, floats ... to C types and
  176.  1949          # cannot convert them back again and returns an exception instance.
  177.  
  178. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Classify/OWCN2RulesViewer.py:
  179.    17  def _toPyObject(variant):
  180.    18      val = variant.toPyObject()
  181.    19:     if isinstance(val, type(NotImplemented)): # PyQt 4.4 converts python int, floats ... to C types
  182.    20          qtype = variant.type()
  183.    21          if qtype == QVariant.Double:
  184.  
  185. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Data/OWRank.py:
  186.    15  def _toPyObject(variant):
  187.    16      val = variant.toPyObject()
  188.    17:     if isinstance(val, type(NotImplemented)):
  189.    18          # PyQt 4.4 converts python int, floats ... to C types and
  190.    19          # cannot convert them back again and returns an exception instance.
  191.  
  192. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py:
  193.   824          
  194.   825      def setComponentPlane(self, *args):
  195.   826:         raise NotImplemented
  196.   827      
  197.   828  baseColor = QColor(20,20,20)
  198.  
  199. /orange/build/lib.linux-i686-2.6/Orange/classification/logreg.py:
  200.   194          # classification not implemented yet. For now its use is only to
  201.   195          # provide regression coefficients and its statistics
  202.   196:         raise NotImplemented
  203.   197      
  204.   198  
  205.  
  206. /orange/build/lib.linux-i686-2.6/Orange/clustering/kmeans.py:
  207.   181  def score_conditional_entropy(km):
  208.   182      """UNIMPLEMENTED cluster quality measured by conditional entropy"""
  209.   183:     raise NotImplemented
  210.   184  
  211.   185  def score_within_cluster_distance(km):
  212.   186      """UNIMPLEMENTED weighted average within-cluster pairwise distance"""
  213.   187:     raise NotImplemented
  214.   188  
  215.   189  score_within_cluster_distance.minimize = True
  216.  
  217. /orange/build/lib.linux-i686-2.6/Orange/data/io.py:
  218.   693              elif var_t == variable.Python:
  219.   694                  # Python variables are not supported yet
  220.   695:                 raise NotImplementedError()
  221.   696          elif var_t is None:
  222.   697              # Unknown variable type, to be deduced at the end
  223.  
  224. /orange/build/lib.linux-i686-2.6/Orange/evaluation/scoring.py:
  225.   225                          scores[i][tex.iteration_number] += (float(cls) - ai)**2
  226.   226          else: # unweighted != 0
  227.   227:             raise NotImplementedError, "weighted error scores with SE not implemented yet"
  228.   228  
  229.   229          if argkw.get("norm-abs") or argkw.get("norm-sqr"):
  230.  
  231. /orange/build/lib.linux-i686-2.6/Orange/evaluation/testing.py:
  232.   186  
  233.   187      def load_from_files(self, learners, filename):
  234.   188:         raise NotImplementedError("This feature is no longer supported.")
  235.   189  
  236.   190      def save_to_files(self, learners, filename):
  237.   191:         raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.")
  238.   192  
  239.   193      def create_tested_example(self, fold, example):
  240.  
  241. /orange/build/lib.linux-i686-2.6/Orange/misc/collections.py:
  242.    95          
  243.    96      def update(self, mapping):
  244.    97:         raise NotImplementedError
  245.    98  
  246.    99      def __len__(self):
  247.   ...
  248.   111      
  249.   112      def __delitem__(self, key):
  250.   113:         raise NotImplementedError
  251.   114      
  252.   115      def clear(self):
  253.   116:         raise NotImplementedError
  254.   117      
  255.   118      def todict(self):
  256.  
  257. /orange/build/lib.linux-i686-2.6/Orange/misc/render.py:
  258.   217      
  259.   218      def draw_line(self, sx, sy, ex, ey, **kwargs):
  260.   219:         raise NotImplementedError
  261.   220      
  262.   221      def draw_lines(self, points, **kwargs):
  263.   222:         raise NotImplementedError
  264.   223      
  265.   224      def draw_rect(self, x, y, w, h, **kwargs):
  266.   225:         raise NotImplementedError
  267.   226      
  268.   227      def draw_polygon(self, vertices, **kwargs):
  269.   228:         raise NotImplementedError
  270.   229  
  271.   230      def draw_arch(self, something, **kwargs):
  272.   231:         raise NotImplementedError
  273.   232      
  274.   233      def draw_text(self, x, y, text, **kwargs):
  275.   234:         raise NotImplementedError
  276.   235      
  277.   236      def string_size_hint(self, text, **kwargs):
  278.   ...
  279.   251              
  280.   252      def save(self, file):
  281.   253:         raise NotImplementedError
  282.   254      
  283.   255      def close(self, file):
  284.  
  285. /orange/build/lib.linux-i686-2.6/Orange/orng/orngMisc.py:
  286.   544      
  287.   545      def draw_line(self, sx, sy, ex, ey, **kwargs):
  288.   546:         raise NotImplemented
  289.   547      
  290.   548      def draw_lines(self, points, **kwargs):
  291.   549:         raise NotImplemented
  292.   550      
  293.   551      def draw_rect(self, x, y, w, h, **kwargs):
  294.   552:         raise NotImplemented
  295.   553      
  296.   554      def draw_polygon(self, vertices, **kwargs):
  297.   555:         raise NotImplemented
  298.   556  
  299.   557      def draw_arch(self, something, **kwargs):
  300.   558:         raise NotImplemented
  301.   559      
  302.   560      def draw_text(self, x, y, text, **kwargs):
  303.   561:         raise NotImplemented
  304.   562      
  305.   563      def string_size_hint(self, text, **kwargs):
  306.   ...
  307.   578              
  308.   579      def save(self):
  309.   580:         raise NotImplemented
  310.   581      
  311.   582      def close(self, file):
  312.  
  313. /orange/source/orange/cls_value.cpp:
  314.   477       case Py_GE: cmp = (i>=0); break;
  315.   478      default:
  316.   479:       Py_INCREF(Py_NotImplemented);
  317.   480:       return Py_NotImplemented;
  318.   481    }
  319.   482    
  320.   ...
  321.   510          }
  322.   511          else {
  323.   512:           Py_INCREF(Py_NotImplemented);
  324.   513:           return Py_NotImplemented;
  325.   514          }
  326.   515  
  327.   ...
  328.   597          }
  329.   598          else {
  330.   599:           Py_INCREF(Py_NotImplemented);
  331.   600:           return Py_NotImplemented;
  332.   601          }
  333.   602  
  334.   ...
  335.   604      }
  336.   605        
  337.   606:     Py_INCREF(Py_NotImplemented);
  338.   607:     return Py_NotImplemented;
  339.   608  
  340.   609    PyCATCH
  341.  
  342. /orange/source/orange/lib_components.cpp:
  343.  4167  case Py_GE: cmp = (f>=ref); break;
  344.  4168  default:
  345.  4169:  Py_INCREF(Py_NotImplemented);
  346.  4170:  return Py_NotImplemented;
  347.  4171   }
  348.  4172  
  349.  
  350. /orange/source/orange/vectortemplates.hpp:
  351.   357        try {
  352.   358          if (!PySequence_Check(other)) {
  353.   359:           Py_INCREF(Py_NotImplemented);
  354.   360:           return Py_NotImplemented;
  355.   361         }
  356.   362  
  357.   ...
  358.   814        try {
  359.   815          if (!PySequence_Check(other)) {
  360.   816:           Py_INCREF(Py_NotImplemented);
  361.   817:           return Py_NotImplemented;
  362.   818         }
  363.   819  
  364.  
  365. 74 matches across 29 files
  366.  
  367.  
  368. Searching 3771 files for "raise NotImplemented" (case sensitive)
  369.  
  370. /orange/Orange/OrangeWidgets/OWClustering.py:
  371.   856          self.span = span
  372.   857          
  373.   858:         raise NotImplementedError
  374.   859          
  375.   860          
  376.   ...
  377.   897          self.setRoot(root)
  378.   898          
  379.   899:         raise NotImplementedError
  380.   900          
  381.   901      def set_root(self, root):
  382.  
  383. /orange/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py:
  384.   824          
  385.   825      def setComponentPlane(self, *args):
  386.   826:         raise NotImplemented
  387.   827      
  388.   828  baseColor = QColor(20,20,20)
  389.  
  390. /orange/Orange/classification/logreg.py:
  391.   194          # classification not implemented yet. For now its use is only to
  392.   195          # provide regression coefficients and its statistics
  393.   196:         raise NotImplemented
  394.   197      
  395.   198  
  396.  
  397. /orange/Orange/clustering/kmeans.py:
  398.   181  def score_conditional_entropy(km):
  399.   182      """UNIMPLEMENTED cluster quality measured by conditional entropy"""
  400.   183:     raise NotImplemented
  401.   184  
  402.   185  def score_within_cluster_distance(km):
  403.   186      """UNIMPLEMENTED weighted average within-cluster pairwise distance"""
  404.   187:     raise NotImplemented
  405.   188  
  406.   189  score_within_cluster_distance.minimize = True
  407.  
  408. /orange/Orange/data/io.py:
  409.   693              elif var_t == variable.Python:
  410.   694                  # Python variables are not supported yet
  411.   695:                 raise NotImplementedError()
  412.   696          elif var_t is None:
  413.   697              # Unknown variable type, to be deduced at the end
  414.  
  415. /orange/Orange/evaluation/scoring.py:
  416.   225                          scores[i][tex.iteration_number] += (float(cls) - ai)**2
  417.   226          else: # unweighted != 0
  418.   227:             raise NotImplementedError, "weighted error scores with SE not implemented yet"
  419.   228  
  420.   229          if argkw.get("norm-abs") or argkw.get("norm-sqr"):
  421.  
  422. /orange/Orange/evaluation/testing.py:
  423.   186  
  424.   187      def load_from_files(self, learners, filename):
  425.   188:         raise NotImplementedError("This feature is no longer supported.")
  426.   189  
  427.   190      def save_to_files(self, learners, filename):
  428.   191:         raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.")
  429.   192  
  430.   193      def create_tested_example(self, fold, example):
  431.  
  432. /orange/Orange/misc/collections.py:
  433.    95          
  434.    96      def update(self, mapping):
  435.    97:         raise NotImplementedError
  436.    98  
  437.    99      def __len__(self):
  438.   ...
  439.   111      
  440.   112      def __delitem__(self, key):
  441.   113:         raise NotImplementedError
  442.   114      
  443.   115      def clear(self):
  444.   116:         raise NotImplementedError
  445.   117      
  446.   118      def todict(self):
  447.  
  448. /orange/Orange/misc/render.py:
  449.   217      
  450.   218      def draw_line(self, sx, sy, ex, ey, **kwargs):
  451.   219:         raise NotImplementedError
  452.   220      
  453.   221      def draw_lines(self, points, **kwargs):
  454.   222:         raise NotImplementedError
  455.   223      
  456.   224      def draw_rect(self, x, y, w, h, **kwargs):
  457.   225:         raise NotImplementedError
  458.   226      
  459.   227      def draw_polygon(self, vertices, **kwargs):
  460.   228:         raise NotImplementedError
  461.   229  
  462.   230      def draw_arch(self, something, **kwargs):
  463.   231:         raise NotImplementedError
  464.   232      
  465.   233      def draw_text(self, x, y, text, **kwargs):
  466.   234:         raise NotImplementedError
  467.   235      
  468.   236      def string_size_hint(self, text, **kwargs):
  469.   ...
  470.   251              
  471.   252      def save(self, file):
  472.   253:         raise NotImplementedError
  473.   254      
  474.   255      def close(self, file):
  475.  
  476. /orange/Orange/orng/orngMisc.py:
  477.   544      
  478.   545      def draw_line(self, sx, sy, ex, ey, **kwargs):
  479.   546:         raise NotImplemented
  480.   547      
  481.   548      def draw_lines(self, points, **kwargs):
  482.   549:         raise NotImplemented
  483.   550      
  484.   551      def draw_rect(self, x, y, w, h, **kwargs):
  485.   552:         raise NotImplemented
  486.   553      
  487.   554      def draw_polygon(self, vertices, **kwargs):
  488.   555:         raise NotImplemented
  489.   556  
  490.   557      def draw_arch(self, something, **kwargs):
  491.   558:         raise NotImplemented
  492.   559      
  493.   560      def draw_text(self, x, y, text, **kwargs):
  494.   561:         raise NotImplemented
  495.   562      
  496.   563      def string_size_hint(self, text, **kwargs):
  497.   ...
  498.   578              
  499.   579      def save(self):
  500.   580:         raise NotImplemented
  501.   581      
  502.   582      def close(self, file):
  503.  
  504. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWClustering.py:
  505.   856          self.span = span
  506.   857          
  507.   858:         raise NotImplementedError
  508.   859          
  509.   860          
  510.   ...
  511.   897          self.setRoot(root)
  512.   898          
  513.   899:         raise NotImplementedError
  514.   900          
  515.   901      def set_root(self, root):
  516.  
  517. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py:
  518.   824          
  519.   825      def setComponentPlane(self, *args):
  520.   826:         raise NotImplemented
  521.   827      
  522.   828  baseColor = QColor(20,20,20)
  523.  
  524. /orange/build/lib.linux-i686-2.6/Orange/classification/logreg.py:
  525.   194          # classification not implemented yet. For now its use is only to
  526.   195          # provide regression coefficients and its statistics
  527.   196:         raise NotImplemented
  528.   197      
  529.   198  
  530.  
  531. /orange/build/lib.linux-i686-2.6/Orange/clustering/kmeans.py:
  532.   181  def score_conditional_entropy(km):
  533.   182      """UNIMPLEMENTED cluster quality measured by conditional entropy"""
  534.   183:     raise NotImplemented
  535.   184  
  536.   185  def score_within_cluster_distance(km):
  537.   186      """UNIMPLEMENTED weighted average within-cluster pairwise distance"""
  538.   187:     raise NotImplemented
  539.   188  
  540.   189  score_within_cluster_distance.minimize = True
  541.  
  542. /orange/build/lib.linux-i686-2.6/Orange/data/io.py:
  543.   693              elif var_t == variable.Python:
  544.   694                  # Python variables are not supported yet
  545.   695:                 raise NotImplementedError()
  546.   696          elif var_t is None:
  547.   697              # Unknown variable type, to be deduced at the end
  548.  
  549. /orange/build/lib.linux-i686-2.6/Orange/evaluation/scoring.py:
  550.   225                          scores[i][tex.iteration_number] += (float(cls) - ai)**2
  551.   226          else: # unweighted != 0
  552.   227:             raise NotImplementedError, "weighted error scores with SE not implemented yet"
  553.   228  
  554.   229          if argkw.get("norm-abs") or argkw.get("norm-sqr"):
  555.  
  556. /orange/build/lib.linux-i686-2.6/Orange/evaluation/testing.py:
  557.   186  
  558.   187      def load_from_files(self, learners, filename):
  559.   188:         raise NotImplementedError("This feature is no longer supported.")
  560.   189  
  561.   190      def save_to_files(self, learners, filename):
  562.   191:         raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.")
  563.   192  
  564.   193      def create_tested_example(self, fold, example):
  565.  
  566. /orange/build/lib.linux-i686-2.6/Orange/misc/collections.py:
  567.    95          
  568.    96      def update(self, mapping):
  569.    97:         raise NotImplementedError
  570.    98  
  571.    99      def __len__(self):
  572.   ...
  573.   111      
  574.   112      def __delitem__(self, key):
  575.   113:         raise NotImplementedError
  576.   114      
  577.   115      def clear(self):
  578.   116:         raise NotImplementedError
  579.   117      
  580.   118      def todict(self):
  581.  
  582. /orange/build/lib.linux-i686-2.6/Orange/misc/render.py:
  583.   217      
  584.   218      def draw_line(self, sx, sy, ex, ey, **kwargs):
  585.   219:         raise NotImplementedError
  586.   220      
  587.   221      def draw_lines(self, points, **kwargs):
  588.   222:         raise NotImplementedError
  589.   223      
  590.   224      def draw_rect(self, x, y, w, h, **kwargs):
  591.   225:         raise NotImplementedError
  592.   226      
  593.   227      def draw_polygon(self, vertices, **kwargs):
  594.   228:         raise NotImplementedError
  595.   229  
  596.   230      def draw_arch(self, something, **kwargs):
  597.   231:         raise NotImplementedError
  598.   232      
  599.   233      def draw_text(self, x, y, text, **kwargs):
  600.   234:         raise NotImplementedError
  601.   235      
  602.   236      def string_size_hint(self, text, **kwargs):
  603.   ...
  604.   251              
  605.   252      def save(self, file):
  606.   253:         raise NotImplementedError
  607.   254      
  608.   255      def close(self, file):
  609.  
  610. /orange/build/lib.linux-i686-2.6/Orange/orng/orngMisc.py:
  611.   544      
  612.   545      def draw_line(self, sx, sy, ex, ey, **kwargs):
  613.   546:         raise NotImplemented
  614.   547      
  615.   548      def draw_lines(self, points, **kwargs):
  616.   549:         raise NotImplemented
  617.   550      
  618.   551      def draw_rect(self, x, y, w, h, **kwargs):
  619.   552:         raise NotImplemented
  620.   553      
  621.   554      def draw_polygon(self, vertices, **kwargs):
  622.   555:         raise NotImplemented
  623.   556  
  624.   557      def draw_arch(self, something, **kwargs):
  625.   558:         raise NotImplemented
  626.   559      
  627.   560      def draw_text(self, x, y, text, **kwargs):
  628.   561:         raise NotImplemented
  629.   562      
  630.   563      def string_size_hint(self, text, **kwargs):
  631.   ...
  632.   578              
  633.   579      def save(self):
  634.   580:         raise NotImplemented
  635.   581      
  636.   582      def close(self, file):
  637.  
  638. 54 matches across 20 files
  639.  
  640.  
  641. Searching 3771 files for ""raise NotImplemented"" (case sensitive)
  642.  
  643. 0 matches across 0 Searching
  644.  
  645.  
  646. files 3771 files for "raise NotImplemented" (case sensitive)
  647.  
  648. /orange/Orange/OrangeWidgets/OWClustering.py:
  649.   856          self.span = span
  650.   857          
  651.   858:         raise NotImplementedError
  652.   859          
  653.   860          
  654.   ...
  655.   897          self.setRoot(root)
  656.   898          
  657.   899:         raise NotImplementedError
  658.   900          
  659.   901      def set_root(self, root):
  660.  
  661. /orange/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py:
  662.   824          
  663.   825      def setComponentPlane(self, *args):
  664.   826:         raise NotImplemented
  665.   827      
  666.   828  baseColor = QColor(20,20,20)
  667.  
  668. /orange/Orange/classification/logreg.py:
  669.   194          # classification not implemented yet. For now its use is only to
  670.   195          # provide regression coefficients and its statistics
  671.   196:         raise NotImplemented
  672.   197      
  673.   198  
  674.  
  675. /orange/Orange/clustering/kmeans.py:
  676.   181  def score_conditional_entropy(km):
  677.   182      """UNIMPLEMENTED cluster quality measured by conditional entropy"""
  678.   183:     raise NotImplemented
  679.   184  
  680.   185  def score_within_cluster_distance(km):
  681.   186      """UNIMPLEMENTED weighted average within-cluster pairwise distance"""
  682.   187:     raise NotImplemented
  683.   188  
  684.   189  score_within_cluster_distance.minimize = True
  685.  
  686. /orange/Orange/data/io.py:
  687.   693              elif var_t == variable.Python:
  688.   694                  # Python variables are not supported yet
  689.   695:                 raise NotImplementedError()
  690.   696          elif var_t is None:
  691.   697              # Unknown variable type, to be deduced at the end
  692.  
  693. /orange/Orange/evaluation/scoring.py:
  694.   225                          scores[i][tex.iteration_number] += (float(cls) - ai)**2
  695.   226          else: # unweighted != 0
  696.   227:             raise NotImplementedError, "weighted error scores with SE not implemented yet"
  697.   228  
  698.   229          if argkw.get("norm-abs") or argkw.get("norm-sqr"):
  699.  
  700. /orange/Orange/evaluation/testing.py:
  701.   186  
  702.   187      def load_from_files(self, learners, filename):
  703.   188:         raise NotImplementedError("This feature is no longer supported.")
  704.   189  
  705.   190      def save_to_files(self, learners, filename):
  706.   191:         raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.")
  707.   192  
  708.   193      def create_tested_example(self, fold, example):
  709.  
  710. /orange/Orange/misc/collections.py:
  711.    95          
  712.    96      def update(self, mapping):
  713.    97:         raise NotImplementedError
  714.    98  
  715.    99      def __len__(self):
  716.   ...
  717.   111      
  718.   112      def __delitem__(self, key):
  719.   113:         raise NotImplementedError
  720.   114      
  721.   115      def clear(self):
  722.   116:         raise NotImplementedError
  723.   117      
  724.   118      def todict(self):
  725.  
  726. /orange/Orange/misc/render.py:
  727.   217      
  728.   218      def draw_line(self, sx, sy, ex, ey, **kwargs):
  729.   219:         raise NotImplementedError
  730.   220      
  731.   221      def draw_lines(self, points, **kwargs):
  732.   222:         raise NotImplementedError
  733.   223      
  734.   224      def draw_rect(self, x, y, w, h, **kwargs):
  735.   225:         raise NotImplementedError
  736.   226      
  737.   227      def draw_polygon(self, vertices, **kwargs):
  738.   228:         raise NotImplementedError
  739.   229  
  740.   230      def draw_arch(self, something, **kwargs):
  741.   231:         raise NotImplementedError
  742.   232      
  743.   233      def draw_text(self, x, y, text, **kwargs):
  744.   234:         raise NotImplementedError
  745.   235      
  746.   236      def string_size_hint(self, text, **kwargs):
  747.   ...
  748.   251              
  749.   252      def save(self, file):
  750.   253:         raise NotImplementedError
  751.   254      
  752.   255      def close(self, file):
  753.  
  754. /orange/Orange/orng/orngMisc.py:
  755.   544      
  756.   545      def draw_line(self, sx, sy, ex, ey, **kwargs):
  757.   546:         raise NotImplemented
  758.   547      
  759.   548      def draw_lines(self, points, **kwargs):
  760.   549:         raise NotImplemented
  761.   550      
  762.   551      def draw_rect(self, x, y, w, h, **kwargs):
  763.   552:         raise NotImplemented
  764.   553      
  765.   554      def draw_polygon(self, vertices, **kwargs):
  766.   555:         raise NotImplemented
  767.   556  
  768.   557      def draw_arch(self, something, **kwargs):
  769.   558:         raise NotImplemented
  770.   559      
  771.   560      def draw_text(self, x, y, text, **kwargs):
  772.   561:         raise NotImplemented
  773.   562      
  774.   563      def string_size_hint(self, text, **kwargs):
  775.   ...
  776.   578              
  777.   579      def save(self):
  778.   580:         raise NotImplemented
  779.   581      
  780.   582      def close(self, file):
  781.  
  782. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWClustering.py:
  783.   856          self.span = span
  784.   857          
  785.   858:         raise NotImplementedError
  786.   859          
  787.   860          
  788.   ...
  789.   897          self.setRoot(root)
  790.   898          
  791.   899:         raise NotImplementedError
  792.   900          
  793.   901      def set_root(self, root):
  794.  
  795. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py:
  796.   824          
  797.   825      def setComponentPlane(self, *args):
  798.   826:         raise NotImplemented
  799.   827      
  800.   828  baseColor = QColor(20,20,20)
  801.  
  802. /orange/build/lib.linux-i686-2.6/Orange/classification/logreg.py:
  803.   194          # classification not implemented yet. For now its use is only to
  804.   195          # provide regression coefficients and its statistics
  805.   196:         raise NotImplemented
  806.   197      
  807.   198  
  808.  
  809. /orange/build/lib.linux-i686-2.6/Orange/clustering/kmeans.py:
  810.   181  def score_conditional_entropy(km):
  811.   182      """UNIMPLEMENTED cluster quality measured by conditional entropy"""
  812.   183:     raise NotImplemented
  813.   184  
  814.   185  def score_within_cluster_distance(km):
  815.   186      """UNIMPLEMENTED weighted average within-cluster pairwise distance"""
  816.   187:     raise NotImplemented
  817.   188  
  818.   189  score_within_cluster_distance.minimize = True
  819.  
  820. /orange/build/lib.linux-i686-2.6/Orange/data/io.py:
  821.   693              elif var_t == variable.Python:
  822.   694                  # Python variables are not supported yet
  823.   695:                 raise NotImplementedError()
  824.   696          elif var_t is None:
  825.   697              # Unknown variable type, to be deduced at the end
  826.  
  827. /orange/build/lib.linux-i686-2.6/Orange/evaluation/scoring.py:
  828.   225                          scores[i][tex.iteration_number] += (float(cls) - ai)**2
  829.   226          else: # unweighted != 0
  830.   227:             raise NotImplementedError, "weighted error scores with SE not implemented yet"
  831.   228  
  832.   229          if argkw.get("norm-abs") or argkw.get("norm-sqr"):
  833.  
  834. /orange/build/lib.linux-i686-2.6/Orange/evaluation/testing.py:
  835.   186  
  836.   187      def load_from_files(self, learners, filename):
  837.   188:         raise NotImplementedError("This feature is no longer supported.")
  838.   189  
  839.   190      def save_to_files(self, learners, filename):
  840.   191:         raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.")
  841.   192  
  842.   193      def create_tested_example(self, fold, example):
  843.  
  844. /orange/build/lib.linux-i686-2.6/Orange/misc/collections.py:
  845.    95          
  846.    96      def update(self, mapping):
  847.    97:         raise NotImplementedError
  848.    98  
  849.    99      def __len__(self):
  850.   ...
  851.   111      
  852.   112      def __delitem__(self, key):
  853.   113:         raise NotImplementedError
  854.   114      
  855.   115      def clear(self):
  856.   116:         raise NotImplementedError
  857.   117      
  858.   118      def todict(self):
  859.  
  860. /orange/build/lib.linux-i686-2.6/Orange/misc/render.py:
  861.   217      
  862.   218      def draw_line(self, sx, sy, ex, ey, **kwargs):
  863.   219:         raise NotImplementedError
  864.   220      
  865.   221      def draw_lines(self, points, **kwargs):
  866.   222:         raise NotImplementedError
  867.   223      
  868.   224      def draw_rect(self, x, y, w, h, **kwargs):
  869.   225:         raise NotImplementedError
  870.   226      
  871.   227      def draw_polygon(self, vertices, **kwargs):
  872.   228:         raise NotImplementedError
  873.   229  
  874.   230      def draw_arch(self, something, **kwargs):
  875.   231:         raise NotImplementedError
  876.   232      
  877.   233      def draw_text(self, x, y, text, **kwargs):
  878.   234:         raise NotImplementedError
  879.   235      
  880.   236      def string_size_hint(self, text, **kwargs):
  881.   ...
  882.   251              
  883.   252      def save(self, file):
  884.   253:         raise NotImplementedError
  885.   254      
  886.   255      def close(self, file):
  887.  
  888. /orange/build/lib.linux-i686-2.6/Orange/orng/orngMisc.py:
  889.   544      
  890.   545      def draw_line(self, sx, sy, ex, ey, **kwargs):
  891.   546:         raise NotImplemented
  892.   547      
  893.   548      def draw_lines(self, points, **kwargs):
  894.   549:         raise NotImplemented
  895.   550      
  896.   551      def draw_rect(self, x, y, w, h, **kwargs):
  897.   552:         raise NotImplemented
  898.   553      
  899.   554      def draw_polygon(self, vertices, **kwargs):
  900.   555:         raise NotImplemented
  901.   556  
  902.   557      def draw_arch(self, something, **kwargs):
  903.   558:         raise NotImplemented
  904.   559      
  905.   560      def draw_text(self, x, y, text, **kwargs):
  906.   561:         raise NotImplemented
  907.   562      
  908.   563      def string_size_hint(self, text, **kwargs):
  909.   ...
  910.   578              
  911.   579      def save(self):
  912.   580:         raise NotImplemented
  913.   581      
  914.   582      def close(self, file):
  915.  
  916. 54 matches across 20 files
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement