Skip to content

Commit

Permalink
ffe
Browse files Browse the repository at this point in the history
  • Loading branch information
QIN2DIM committed Oct 26, 2023
1 parent 7c79793 commit c402644
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion automation/assets_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def merge(self, fd: Path, td: Path):


def run():
sources = "https://github.com/QIN2DIM/hcaptcha-challenger/issues/860"
sources = "https://github.com/QIN2DIM/hcaptcha-challenger/issues/872"
am = AssetsManager.from_sources(sources)
am.execute()

Expand Down
2 changes: 1 addition & 1 deletion automation/auto_labeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def run():

for card in flow_card:
# Filter out the task cards we care about
if "furniture" not in card["joined_dirs"]:
if "sedan_car" not in card["joined_dirs"]:
continue
# Generating a dataclass from serialized data
dl = DataLake(
Expand Down
5 changes: 5 additions & 0 deletions automation/flow_card.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@
"negative_labels": ["guitar", "keyboard", "game tool", "headphones"],
"joined_dirs": ["furniture"],
},
{
"positive_labels": ["sedan car"],
"negative_labels": ["bicycle", "off-road vehicle"],
"joined_dirs": ["sedan_car"],
},
]
11 changes: 1 addition & 10 deletions automation/mini_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,7 @@ def upgrade_objects(aid_):
# fmt:off
focus_flags = {
# "<diagnosed_label_name>": "<model_name[flag]>"
# "indoor_vertical_farm": "indoor_vertical_farm2309",
# "smartwatch": "smartwatch2309",
# "hat": "hat2310",
# "vineyard": "vineyard2309",
# "pair_of_roller_skates": "pair_of_roller_skates2310",
# "nested_plant": "nested_plant2311",
"off_road_vehicle": "off_road_vehicle2310",
# "nested_largest_turtle": "nested_largest_turtle2309",
# "pair_of_headphones": "pair_of_headphones2309",
# "furniture": "furniture2310",
"sedan_car": "sedan_car2309",
}
# fmt:on

Expand Down

0 comments on commit c402644

Please sign in to comment.