Skip to content

Commit d5a83cc

Browse files
committed
pascal voc and more VGG img yielding pipeline code
1 parent bad9969 commit d5a83cc

75 files changed

Lines changed: 1984 additions & 1148 deletions

Some content is hidden

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

dblib/dblib.pyproj

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Name>dblib</Name>
1313
<RootNamespace>dblib</RootNamespace>
1414
<IsWindowsApplication>False</IsWindowsApplication>
15-
<InterpreterId>{2af0f10d-7135-4994-9156-5d01c9c11b7e}</InterpreterId>
15+
<InterpreterId>{09cee27f-142a-45c4-8575-1838255879f0}</InterpreterId>
1616
<InterpreterVersion>3.5</InterpreterVersion>
1717
</PropertyGroup>
1818
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
@@ -33,10 +33,24 @@
3333
</Compile>
3434
</ItemGroup>
3535
<ItemGroup>
36-
<InterpreterReference Include="{2af0f10d-7135-4994-9156-5d01c9c11b7e}\3.5" />
36+
<Content Include="pylintrc" />
37+
<Content Include="requirements.txt" />
3738
</ItemGroup>
3839
<ItemGroup>
39-
<Content Include="pylintrc" />
40+
<Interpreter Include="env\">
41+
<Id>{09cee27f-142a-45c4-8575-1838255879f0}</Id>
42+
<BaseInterpreter>{9a7a9026-48c1-4688-9d5d-e5699d47d074}</BaseInterpreter>
43+
<Version>3.5</Version>
44+
<Description>env (Python 64-bit 3.5)</Description>
45+
<InterpreterPath>Scripts\python.exe</InterpreterPath>
46+
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
47+
<LibraryPath>Lib\</LibraryPath>
48+
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
49+
<Architecture>Amd64</Architecture>
50+
</Interpreter>
51+
</ItemGroup>
52+
<ItemGroup>
53+
<Folder Include="test\" />
4054
</ItemGroup>
4155
<PropertyGroup>
4256
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>

dblib/dblib.sln

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25420.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "dblib", "dblib.pyproj", "{357F2F6C-B6BF-4BB9-B3A3-E6B0130467A2}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{357F2F6C-B6BF-4BB9-B3A3-E6B0130467A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{357F2F6C-B6BF-4BB9-B3A3-E6B0130467A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

dblib/pylintrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ persistent=yes
1919
load-plugins=
2020

2121
# Use multiple processes to speed up Pylint.
22-
jobs=1
22+
jobs=2
2323

2424
# Allow loading of arbitrary C extensions. Extensions are imported into the
2525
# active Python interpreter and may run arbitrary code.
26-
unsafe-load-any-extension=no
26+
unsafe-load-any-extension=yes
2727

2828
# A comma-separated list of package or module names from where C extensions may
2929
# be loaded. Extensions are loading into the active Python interpreter and may
3030
# run arbitrary code
31-
extension-pkg-whitelist=
31+
extension-pkg-whitelist=numpy,cv2,skimage,pandas
3232

3333
# Allow optimization of some AST trees. This will activate a peephole AST
3434
# optimizer, which will apply various small optimizations. For instance, it can

dblib/sqlitelib.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import fuckit
1111
import pickle
1212

13-
1413
import funclib.baselib as baselib
1514

1615
# endregion

funclib/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@
1010
'iolib',
1111
'numericslib',
1212
'pandaslib',
13-
'pyqtlib',
1413
'shell_lib',
1514
'statslib',
1615
'stringslib']
16+
17+
18+
from funclib.baselib import get_platform
19+
from funclib.baselib import isPython2
20+
from funclib.baselib import isPython3
21+
from funclib.baselib import isIterable

0 commit comments

Comments
 (0)