Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
H
Hydra Node Http
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Hydra Node Http
Commits
e23f6880
Commit
e23f6880
authored
Oct 04, 2022
by
kurumuz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s3 maybe works
parent
be2c3628
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
6 deletions
+17
-6
hydra_node/config.py
hydra_node/config.py
+11
-3
hydra_node/models.py
hydra_node/models.py
+6
-1
hydra_node/web.py
hydra_node/web.py
+0
-2
No files found.
hydra_node/config.py
View file @
e23f6880
...
...
@@ -140,9 +140,17 @@ def init_config_model():
logger
.
info
(
f
"MODEL: {config.model_name}"
)
#S3 auth stuff
config
.
s3_access_key
=
os
.
environ
[
'S3_ACCESS_KEY'
]
config
.
s3_secret_key
=
os
.
environ
[
'S3_SECRET_KEY'
]
config
.
s3_bucket
=
os
.
environ
[
'S3_BUCKET'
]
config
.
s3_access_key
=
os
.
environ
(
'S3_ACCESS_KEY'
,
None
)
config
.
s3_secret_key
=
os
.
environ
(
'S3_SECRET_KEY'
,
None
)
config
.
s3_bucket
=
os
.
environ
(
'S3_BUCKET'
,
None
)
config
.
s3_file
=
os
.
environ
(
'S3_FILE'
,
None
)
config
.
s3_endpoint
=
os
.
environ
(
'S3_ENDPOINT'
,
None
)
try
:
config
.
model_path
=
f
"https://{config.s3_endpoint}/{config.s3_bucket}/{config.s3_file}"
logger
.
info
(
f
"Path is set to S3 {config.model_path}"
)
except
:
pass
# Resolve where we get our model and data from.
config
.
model_path
=
os
.
getenv
(
'MODEL_PATH'
,
None
)
...
...
hydra_node/models.py
View file @
e23f6880
...
...
@@ -342,7 +342,12 @@ class StableDiffusionModel(nn.Module):
model_config
=
requests
.
get
(
default_config
,
stream
=
'True'
)
.
raw
model_config
=
OmegaConf
.
load
(
model_config
)
print
(
f
"Downloading model from {url}"
)
tensor_loader
=
web
.
CURLStreamFile
(
url
)
headers
=
web
.
get_s3_secret_headers
(
endpoint
=
self
.
config
.
s3_endpoint
,
access_key
=
self
.
config
.
s3_access_key
,
secret_key
=
self
.
config
.
s3_secret_key
,
s3_file
=
self
.
config
.
s3_file
)
tensor_loader
=
web
.
CURLStreamFile
(
url
,
headers
=
headers
)
if
not
default_config
.
is_file
():
raise
Exception
(
"Default config to load not found! Either give a folder on MODEL_PATH or specify a config to use with this checkpoint on DEFAULT_CONFIG"
)
model_config
=
OmegaConf
.
load
(
default_config
)
...
...
hydra_node/web.py
View file @
e23f6880
...
...
@@ -92,8 +92,6 @@ class CURLS3StreamFile(object):
subprocess_list
.
append
(
url
)
subprocess_list
.
extend
([
'-H'
,
'Accept-Encoding: identity'
])
subprocess_list
.
append
(
'-s'
)
#subprocess_list.append('-o test124.yaml')
print
(
subprocess_list
)
self
.
_curl
=
subprocess
.
Popen
(
subprocess_list
,
stdout
=
subprocess
.
PIPE
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment