Skip to content

Commit 84d2a8e

Browse files
author
[zebinyang]
committed
fix a bug in fit as n_screen_grid=1; update version
1 parent a26dca3 commit 84d2a8e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1159
-48
lines changed

conda.recipe/meta.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package:
2+
name: simtree
3+
version: "0.1"
4+
5+
source:
6+
- path: ../
7+
8+
build:
9+
noarch: python
10+
number: 0
11+
script: "{{ PYTHON }} -m pip install . -vv"
12+
13+
requirements:
14+
host:
15+
- python
16+
- pip
17+
18+
run:
19+
- python
20+
- matplotlib>=3.1.3
21+
- numpy>=1.15.2
22+
- pandas>=0.19.2
23+
- scikit-learn>=0.23.0
24+
- r-base
25+
- r-quadprog==1.5_5
26+
- r-bigsplines==1.1_1
27+
- rpy2>=3.3.6
28+
29+
tests:
30+
imports:
31+
- simtree
32+
33+
about:
34+
home: https://github.com/ZebinYang/simtree
35+
license: GPL
36+
summary: Single-Index Model Tree

dist/channeldata.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"channeldata_version": 1,
3+
"packages": {
4+
"simtree": {
5+
"activate.d": false,
6+
"binary_prefix": false,
7+
"deactivate.d": false,
8+
"description": null,
9+
"dev_url": null,
10+
"doc_source_url": null,
11+
"doc_url": null,
12+
"home": "https://github.com/ZebinYang/simtree",
13+
"icon_hash": null,
14+
"icon_url": null,
15+
"identifiers": null,
16+
"keywords": null,
17+
"license": "GPL",
18+
"post_link": false,
19+
"pre_link": false,
20+
"pre_unlink": false,
21+
"recipe_origin": null,
22+
"run_exports": {},
23+
"source_git_url": null,
24+
"source_url": null,
25+
"subdirs": [
26+
"noarch"
27+
],
28+
"summary": "Single-Index Model Tree",
29+
"tags": null,
30+
"text_prefix": false,
31+
"timestamp": 1614514868,
32+
"version": "0.1"
33+
}
34+
},
35+
"subdirs": [
36+
"linux-64",
37+
"noarch"
38+
]
39+
}

dist/index.html

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
<html>
2+
<head>
3+
<title>dist</title>
4+
<style type="text/css">
5+
a, a:active {
6+
text-decoration: none; color: blue;
7+
}
8+
a:visited {
9+
color: #48468F;
10+
}
11+
a:hover, a:focus {
12+
text-decoration: underline; color: red;
13+
}
14+
body {
15+
background-color: #F5F5F5;
16+
}
17+
h2 {
18+
margin-bottom: 12px;
19+
}
20+
th, td {
21+
font: 100% monospace; text-align: left;
22+
}
23+
th {
24+
font-weight: bold; padding-right: 14px; padding-bottom: 3px;
25+
}
26+
th.tight {
27+
padding-right: 6px;
28+
}
29+
td {
30+
padding-right: 14px;
31+
}
32+
td.tight {
33+
padding-right: 8px;
34+
}
35+
td.s, th.s {
36+
text-align: right;
37+
}
38+
td.summary {
39+
white-space: nowrap;
40+
overflow: hidden;
41+
}
42+
td.packagename {
43+
white-space: nowrap;
44+
text-overflow: ellipsis;
45+
overflow: hidden;
46+
max-width: 180px;
47+
padding-right: 8px;
48+
}
49+
td.version {
50+
//white-space: nowrap;
51+
overflow: hidden;
52+
max-width: 90px;
53+
padding-right: 8px;
54+
}
55+
table {
56+
background-color: white;
57+
border-top: 1px solid #646464;
58+
border-bottom: 1px solid #646464;
59+
padding-top: 10px;
60+
padding-bottom: 14px;
61+
}
62+
address {
63+
color: #787878;
64+
padding-top: 10px;
65+
}
66+
</style>
67+
</head>
68+
<body>
69+
<h2>dist</h2>
70+
<h3><a href="rss.xml">RSS Feed</a>&nbsp;&nbsp;&nbsp;<a href="channeldata.json">channeldata.json</a></h3>
71+
<a href="linux-64">linux-64</a>&nbsp;&nbsp;&nbsp;<a href="noarch">noarch</a>&nbsp;&nbsp;&nbsp; <table>
72+
<tr>
73+
<th style="padding-right:18px;">Package</th>
74+
<th>Latest Version</th>
75+
<th>Doc</th>
76+
<th>Dev</th>
77+
<th>License</th>
78+
<th class="tight">linux-64</th><th class="tight">noarch</th> <th>Summary</th>
79+
</tr>
80+
<tr>
81+
<td class="packagename"><a href="https://github.com/ZebinYang/simtree" alt="simtree">simtree</a></td>
82+
<td class="version">0.1</td>
83+
<td></td>
84+
<td></td>
85+
<td class="tight">GPL</td>
86+
<td></td><td>X</td> <td class="summary">Single-Index Model Tree</td>
87+
</tr> </table>
88+
<address>Updated: 2021-03-01 06:06:39 +0000 - Files: 1</address>
89+
</body>
90+
</html>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"info": {
3+
"subdir": "linux-64"
4+
},
5+
"packages": {},
6+
"packages.conda": {},
7+
"removed": [],
8+
"repodata_version": 1
9+
}
129 Bytes
Binary file not shown.

dist/linux-64/index.html

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<html>
2+
<head>
3+
<title>dist/linux-64</title>
4+
<style type="text/css">
5+
a, a:active {
6+
text-decoration: none; color: blue;
7+
}
8+
a:visited {
9+
color: #48468F;
10+
}
11+
a:hover, a:focus {
12+
text-decoration: underline; color: red;
13+
}
14+
body {
15+
background-color: #F5F5F5;
16+
}
17+
h2 {
18+
margin-bottom: 12px;
19+
}
20+
th, td {
21+
font: 100% monospace; text-align: left;
22+
}
23+
th {
24+
font-weight: bold; padding-right: 14px; padding-bottom: 3px;
25+
}
26+
td {
27+
padding-right: 20px;
28+
}
29+
td.s, th.s {
30+
text-align: right;
31+
}
32+
table {
33+
background-color: white;
34+
border-top: 1px solid #646464;
35+
border-bottom: 1px solid #646464;
36+
padding-top: 10px;
37+
padding-bottom: 14px;
38+
}
39+
address {
40+
color: #787878;
41+
padding-top: 10px;
42+
}
43+
</style>
44+
</head>
45+
<body>
46+
<h2>dist/linux-64</h2>
47+
<table>
48+
<tr>
49+
<th>Filename</th>
50+
<th>Size</th>
51+
<th>Last Modified</th>
52+
<th>SHA256</th>
53+
<th>MD5</th>
54+
</tr>
55+
<tr>
56+
<td><a href="repodata.json" alt="repodata.json">repodata.json</a></td>
57+
<td class="s">129 B</td>
58+
<td>2021-02-27 14:37:57 +0000</td>
59+
<td>cada16f9879e5da6a94f7555f14a29240fd0859f0c30c54e198e1549e7e4a75f</td>
60+
<td>93909760e079bfdbb859d2aaa1eb2672</td>
61+
</tr> <tr>
62+
<td><a href="repodata.json.bz2" alt="repodata.json.bz2">repodata.json.bz2</a></td>
63+
<td class="s">129 B</td>
64+
<td>2021-02-27 14:37:57 +0000</td>
65+
<td>56be0331bc34198bc13979c50d4ffb9a1ff97c287af6c769227ee736291b3ab2</td>
66+
<td>bade2f88b3685cbb93aa4b5f34d36659</td>
67+
</tr> <tr>
68+
<td><a href="repodata_from_packages.json" alt="repodata_from_packages.json">repodata_from_packages.json</a></td>
69+
<td class="s">129 B</td>
70+
<td>2021-02-27 14:37:57 +0000</td>
71+
<td>cada16f9879e5da6a94f7555f14a29240fd0859f0c30c54e198e1549e7e4a75f</td>
72+
<td>93909760e079bfdbb859d2aaa1eb2672</td>
73+
</tr> <tr>
74+
<td><a href="repodata_from_packages.json.bz2" alt="repodata_from_packages.json.bz2">repodata_from_packages.json.bz2</a></td>
75+
<td class="s">129 B</td>
76+
<td>2021-02-27 14:37:57 +0000</td>
77+
<td>56be0331bc34198bc13979c50d4ffb9a1ff97c287af6c769227ee736291b3ab2</td>
78+
<td>bade2f88b3685cbb93aa4b5f34d36659</td>
79+
</tr> </table>
80+
<address>Updated: 2021-03-01 06:06:39 +0000 - Files: 0</address>
81+
</body>
82+
</html>

dist/linux-64/repodata.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"info": {
3+
"subdir": "linux-64"
4+
},
5+
"packages": {},
6+
"packages.conda": {},
7+
"removed": [],
8+
"repodata_version": 1
9+
}

dist/linux-64/repodata.json.bz2

129 Bytes
Binary file not shown.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"info": {
3+
"subdir": "linux-64"
4+
},
5+
"packages": {},
6+
"packages.conda": {},
7+
"removed": [],
8+
"repodata_version": 1
9+
}
129 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)